From b5175c77022764e14e7a7a93aad9bcd0acc74254 Mon Sep 17 00:00:00 2001
From: "Aman Kumar [SSW]" <71385247+amankumarrr@users.noreply.github.com>
Date: Mon, 21 Oct 2024 16:08:05 +1100
Subject: [PATCH 1/3] App Routing - Migrating Company Index
Fixed #3238
Affected Route: `/company`
---
app/company/index.tsx | 69 +++++++++++++++++++++++++
app/company/page.tsx | 57 ++++++++++++++++++++
app/consulting/page.tsx | 2 +-
pages/company/index.tsx | 112 ----------------------------------------
tina/tina-lock.json | 2 +-
5 files changed, 128 insertions(+), 114 deletions(-)
create mode 100644 app/company/index.tsx
create mode 100644 app/company/page.tsx
delete mode 100644 pages/company/index.tsx
diff --git a/app/company/index.tsx b/app/company/index.tsx
new file mode 100644
index 000000000..4753ce2eb
--- /dev/null
+++ b/app/company/index.tsx
@@ -0,0 +1,69 @@
+import { BuiltOnAzure } from "@/components/blocks";
+import { componentRenderer } from "@/components/blocks/mdxComponentRenderer";
+import CompanyHeader from "@/components/company/companyHeader";
+import CompanyPages from "@/components/company/companyPages";
+import { Section } from "@/components/util/section";
+import { removeExtension } from "@/services/client/utils.service";
+import { Breadcrumbs } from "app/components/breadcrumb";
+import { tinaField } from "tinacms/dist/react";
+import { TinaMarkdown } from "tinacms/dist/rich-text";
+
+export default function CompanyIndexPage({ props, tinaProps }) {
+ const { data } = tinaProps;
+ const { companyPageProps } = props;
+
+ return (
+ <>
+ {data.companyIndex.headerImage?.heroBackground && (
+
+ )}
+ {data.companyIndex.seo?.showBreadcrumb === null ||
+ (data.companyIndex.seo?.showBreadcrumb && (
+
+ ))}
+
+
+ {data.companyIndex.title}
+
+
+ {data.companyIndex._body.children.length > 0 && (
+
+ )}
+ {data.companyIndex.companyPages?.length > 0 ? (
+
+ ) : (
+ <>>
+ )}
+
+ >
+ );
+}
diff --git a/app/company/page.tsx b/app/company/page.tsx
new file mode 100644
index 000000000..fa3fc8071
--- /dev/null
+++ b/app/company/page.tsx
@@ -0,0 +1,57 @@
+import client from "@/tina/client";
+import { TinaClient } from "app/tina-client";
+
+import { CompanyIndexProps } from "@/components/company/companyPageCard";
+import { TODAY } from "hooks/useFetchEvents";
+import { useSEO } from "hooks/useSeo";
+import { Metadata } from "next";
+import CompanyIndex from "./index";
+
+export async function generateMetadata(): Promise {
+ const tinaProps = await getData();
+
+ const seo = tinaProps.props.seo;
+ if (seo && !seo.canonical) {
+ seo.canonical = `${tinaProps.props.header.url}/company`;
+ }
+
+ // eslint-disable-next-line react-hooks/rules-of-hooks
+ const { seoProps } = useSEO(seo);
+
+ return { ...seoProps };
+}
+
+const getData = async () => {
+ const tinaProps = await client.queries.companyIndexContentQuery({
+ relativePath: "index.mdx",
+ date: TODAY.toISOString(),
+ });
+
+ const seo = tinaProps.data.companyIndex.seo;
+
+ const companyPageProps =
+ tinaProps.data.companyIndex?.companyPages?.map((m) => ({
+ title: m.title,
+ body: m.body,
+ pageURL: m.pageURL,
+ isExternal: m.isExternal,
+ })) || [];
+
+ return {
+ props: {
+ data: tinaProps.data,
+ query: tinaProps.query,
+ header: {
+ url: tinaProps.data.global.header.url,
+ },
+ variables: tinaProps.variables,
+ seo,
+ companyPageProps,
+ },
+ };
+};
+
+export default async function Index() {
+ const { props } = await getData();
+ return ;
+}
diff --git a/app/consulting/page.tsx b/app/consulting/page.tsx
index fee229007..5addb5089 100644
--- a/app/consulting/page.tsx
+++ b/app/consulting/page.tsx
@@ -11,7 +11,7 @@ export async function generateMetadata(): Promise {
const seo = tinaProps.props.seo;
if (seo && !seo.canonical) {
- seo.canonical = `${tinaProps.props.header.url}/consulting`;
+ seo.canonical = `${tinaProps.props.header.url}consulting`;
}
// eslint-disable-next-line react-hooks/rules-of-hooks
diff --git a/pages/company/index.tsx b/pages/company/index.tsx
deleted file mode 100644
index 258b6edb7..000000000
--- a/pages/company/index.tsx
+++ /dev/null
@@ -1,112 +0,0 @@
-import client from "@/tina/client";
-import { TODAY } from "hooks/useFetchEvents";
-import { InferGetStaticPropsType } from "next";
-import { tinaField, useTina } from "tinacms/dist/react";
-import { TinaMarkdown } from "tinacms/dist/rich-text";
-import { BuiltOnAzure } from "../../components/blocks";
-import { Breadcrumbs } from "../../components/blocks/breadcrumbs";
-import { componentRenderer } from "../../components/blocks/mdxComponentRenderer";
-import CompanyHeader from "../../components/company/companyHeader";
-import { CompanyIndexProps } from "../../components/company/companyPageCard";
-import CompanyPages from "../../components/company/companyPages";
-import { Layout } from "../../components/layout";
-import { Section } from "../../components/util/section";
-import { SEO } from "../../components/util/seo";
-import { removeExtension } from "../../services/client/utils.service";
-
-export default function CompanyIndexPage(
- props: InferGetStaticPropsType
-) {
- const { data } = useTina({
- data: props.data,
- query: props.query,
- variables: props.variables,
- });
-
- const companyPageProps =
- data.companyIndex?.companyPages?.map((m) => ({
- title: m.title,
- body: m.body,
- pageURL: m.pageURL,
- isExternal: m.isExternal,
- })) || [];
-
- return (
-
-
-
- {data.companyIndex.headerImage?.heroBackground && (
-
- )}
- {data.companyIndex.seo?.showBreadcrumb === null ||
- (data.companyIndex.seo?.showBreadcrumb && (
-
- ))}
-
-
- {data.companyIndex.title}
-
-
- {data.companyIndex._body.children.length > 0 && (
-
- )}
- {data.companyIndex.companyPages?.length > 0 ? (
-
- ) : (
- <>>
- )}
-
-
-
- );
-}
-
-export const getStaticProps = async () => {
- const tinaProps = await client.queries.companyIndexContentQuery({
- relativePath: "index.mdx",
- date: TODAY.toISOString(),
- });
-
- const seo = tinaProps.data.companyIndex.seo;
- if (seo && (seo?.canonical === null || seo?.canonical === "")) {
- seo.canonical = `${tinaProps.data.global.header.url}company`;
- }
-
- return {
- props: {
- data: tinaProps.data,
- query: tinaProps.query,
- variables: tinaProps.variables,
- seo,
- },
- };
-};
diff --git a/tina/tina-lock.json b/tina/tina-lock.json
index adaa42bcb..59565728a 100644
--- a/tina/tina-lock.json
+++ b/tina/tina-lock.json
@@ -1 +1 @@
-{"schema":{"version":{"fullVersion":"1.5.4","major":"1","minor":"5","patch":"4"},"meta":{"flags":["experimentalData"]},"collections":[{"label":"Base - Pages","name":"page","format":"mdx","path":"content/pages","ui":{},"fields":[{"type":"string","name":"tip","label":"Tip","ui":{},"namespace":["page","tip"],"searchable":true,"uid":false},{"type":"object","label":"SEO Values","name":"seo","fields":[{"type":"string","label":"Title (70 characters)","name":"title","ui":{},"namespace":["page","seo","title"],"searchable":true,"uid":false},{"type":"string","label":"Description (150 characters)","name":"description","component":"textarea","ui":{},"namespace":["page","seo","description"],"searchable":true,"uid":false},{"type":"string","label":"Canonical URL","name":"canonical","namespace":["page","seo","canonical"],"searchable":true,"uid":false},{"type":"boolean","name":"showBreadcrumb","label":"Show Breadcrumb","namespace":["page","seo","showBreadcrumb"],"searchable":true,"uid":false},{"label":"Images","name":"images","list":true,"type":"object","ui":{"defaultItem":{"url":"/images/ssw-default-og.jpg","width":1200,"height":630,"alt":"SSW Consulting - Enterprise Software Development"}},"fields":[{"type":"image","label":"Image Url","name":"url","require":true,"namespace":["articlesIndex","seo","images","url"],"searchable":false,"uid":false},{"type":"number","label":"Width (px)","name":"width","namespace":["articlesIndex","seo","images","width"],"searchable":true,"uid":false},{"type":"number","label":"Height (px)","name":"height","namespace":["articlesIndex","seo","images","height"],"searchable":true,"uid":false},{"type":"string","label":"Image Alt Text","name":"alt","namespace":["articlesIndex","seo","images","alt"],"searchable":true,"uid":false}],"namespace":["page","seo","images"],"searchable":true,"uid":false}],"namespace":["page","seo"],"searchable":true,"uid":false},{"type":"boolean","name":"breadcrumbs","label":"Breadcrumbs enabled","namespace":["page","breadcrumbs"],"searchable":true,"uid":false},{"type":"string","name":"title","label":"Title","namespace":["page","title"],"searchable":true,"uid":false},{"type":"rich-text","name":"subTitle","label":"Sub Title","namespace":["page","subTitle"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"object","list":true,"name":"beforeBody","label":"Before body","ui":{"visualSelector":true},"templates":[{"name":"AboutUs","label":"About Us","ui":{"previewSrc":"/images/thumbs/tina/about-us.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["page","beforeBody","AboutUs","backgroundColor"],"searchable":true,"uid":false},{"type":"boolean","label":"Show Map","name":"showMap","required":false,"namespace":["page","beforeBody","AboutUs","showMap"],"searchable":true,"uid":false}],"namespace":["page","beforeBody","AboutUs"]},{"label":"Agenda","name":"Agenda","ui":{"previewSrc":"/images/thumbs/tina/agenda.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["page","beforeBody","Agenda","header"],"searchable":true,"uid":false},{"type":"string","label":"Header Color","name":"textColor","options":[{"label":"Red","value":"red"},{"label":"Gray","value":"gray"},{"label":"Default","value":"default"}],"namespace":["page","beforeBody","Agenda","textColor"],"searchable":true,"uid":false},{"type":"object","label":"Agenda Items","name":"agendaItemList","ui":{},"list":true,"fields":[{"type":"string","label":"Placeholder Text","name":"placeholder","namespace":["page","_body","Agenda","agendaItemList","placeholder"]},{"type":"rich-text","label":"Body","name":"body","templates":[{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["page","afterBody","Agenda","agendaItemList","body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["page","afterBody","Agenda","agendaItemList","body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["page","afterBody","Agenda","agendaItemList","body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["page","afterBody","Agenda","agendaItemList","body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["page","afterBody","Agenda","agendaItemList","body","VerticalListItem","afterBody"]}],"namespace":["page","sideBar","Agenda","agendaItemList","body","VerticalListItem"]}],"namespace":["page","_body","Agenda","agendaItemList","body"]}],"namespace":["page","beforeBody","Agenda","agendaItemList"],"searchable":true,"uid":false}],"namespace":["page","beforeBody","Agenda"]},{"label":"Agreement Form","name":"AgreementForm","ui":{"previewSrc":"/images/thumbs/tina/agreement-form.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["page","beforeBody","AgreementForm","backgroundColor"],"searchable":true,"uid":false},{"type":"object","label":"Form fields","name":"fields","list":true,"fields":[{"type":"string","label":"ID","name":"id","required":true,"namespace":["page","_body","AgreementForm","fields","id"]},{"type":"string","label":"Label","name":"label","required":true,"namespace":["page","_body","AgreementForm","fields","label"]},{"type":"string","label":"Placeholder","name":"placeholder","namespace":["page","_body","AgreementForm","fields","placeholder"]},{"type":"boolean","label":"Resizeable","name":"resizeable","required":true,"namespace":["page","_body","AgreementForm","fields","resizeable"]}],"namespace":["page","beforeBody","AgreementForm","fields"],"searchable":true,"uid":false}],"namespace":["page","beforeBody","AgreementForm"]},{"label":"Interest Form","name":"InterestForm","ui":{"previewSrc":"/images/thumbs/tina/interest-form.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["page","beforeBody","InterestForm","buttonText"],"searchable":true,"uid":false}],"namespace":["page","beforeBody","InterestForm"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["page","beforeBody","BookingButton","buttonText"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","namespace":["page","beforeBody","BookingButton","animated"],"searchable":true,"uid":false},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["page","beforeBody","BookingButton","buttonSubtitle"],"searchable":true,"uid":false}],"namespace":["page","beforeBody","BookingButton"]},{"name":"BuiltOnAzure","label":"Built on Azure","ui":{"previewSrc":"/images/thumbs/tina/built-on-azure.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["page","beforeBody","BuiltOnAzure","backgroundColor"],"searchable":true,"uid":false}],"namespace":["page","beforeBody","BuiltOnAzure"]},{"name":"Carousel","label":"Carousel","ui":{"previewSrc":"/images/thumbs/tina/carousel.jpg"},"fields":[{"label":"Items","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Item description","link":"/","openIn":"sameWindow"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["page","_body","Carousel","items","label"]},{"type":"string","label":"URL","name":"link","description":"If link contains ssw.com.au, you can skip the full URL and just use the path. e.g. /services","namespace":["page","_body","Carousel","items","link"]},{"type":"string","label":"Open in","name":"openIn","description":"If it is external link, please select 'New window' option.","options":[{"label":"Same window","value":"sameWindow"},{"label":"Modal","value":"modal"},{"label":"New window","value":"newWindow"}],"namespace":["page","_body","Carousel","items","openIn"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","Carousel","items","imgSrc","uploadDir"]},"namespace":["page","_body","Carousel","items","imgSrc"]}],"namespace":["page","beforeBody","Carousel","items"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["page","beforeBody","Carousel","backgroundColor"],"searchable":true,"uid":false},{"type":"number","label":"Delay (Seconds)","name":"delay","required":true,"namespace":["page","beforeBody","Carousel","delay"],"searchable":true,"uid":false},{"type":"boolean","label":"Show on mobile devices","name":"showOnMobileDevices","namespace":["page","beforeBody","Carousel","showOnMobileDevices"],"searchable":true,"uid":false}],"namespace":["page","beforeBody","Carousel"]},{"name":"Citation","label":"Citation","fields":[{"type":"string","label":"author","name":"author","namespace":["page","beforeBody","Citation","author"],"searchable":true,"uid":false},{"type":"string","label":"article","name":"article","required":true,"namespace":["page","beforeBody","Citation","article"],"searchable":true,"uid":false}],"namespace":["page","beforeBody","Citation"]},{"label":"Client List","name":"ClientList","ui":{"previewSrc":"/images/thumbs/tina/clients-list.jpg"},"fields":[{"type":"object","name":"categories","label":"Categories","list":true,"fields":[{"type":"reference","name":"category","label":"Category","collections":["clientCategories"],"namespace":["page","_body","ClientList","categories","category"]}],"ui":{},"namespace":["page","beforeBody","ClientList","categories"],"searchable":true,"uid":false},{"type":"object","name":"clients","label":"Clients list","list":true,"ui":{"previewSrc":"/images/thumbs/tina/clients-list.jpg"},"fields":[{"type":"string","name":"name","label":"Name","namespace":["page","_body","ClientList","clients","name"]},{"type":"image","name":"logo","label":"Logo","namespace":["page","_body","ClientList","clients","logo"]},{"type":"string","name":"logoUrl","label":"Logo URL","namespace":["page","_body","ClientList","clients","logoUrl"]},{"type":"rich-text","name":"content","label":"Content","templates":[{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["page","afterBody","ClientList","clients","content","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["page","afterBody","ClientList","clients","content","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["page","afterBody","ClientList","clients","content","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["page","afterBody","ClientList","clients","content","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["page","afterBody","ClientList","clients","content","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["page","afterBody","ClientList","clients","content","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["page","afterBody","ClientList","clients","content","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["page","afterBody","ClientList","clients","content","UtilityButton","openInNewTab"]}],"namespace":["page","sideBar","ClientList","clients","content","UtilityButton"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["page","afterBody","ClientList","clients","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["page","afterBody","ClientList","clients","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["page","afterBody","ClientList","clients","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["page","afterBody","ClientList","clients","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["page","afterBody","ClientList","clients","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["page","afterBody","ClientList","clients","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["page","afterBody","ClientList","clients","content","VideoEmbed","duration"]}],"namespace":["page","sideBar","ClientList","clients","content","VideoEmbed"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["page","afterBody","ClientList","clients","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["page","afterBody","ClientList","clients","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["page","afterBody","ClientList","clients","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["page","afterBody","ClientList","clients","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["page","afterBody","ClientList","clients","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["page","afterBody","ClientList","clients","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["page","afterBody","ClientList","clients","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["page","afterBody","ClientList","clients","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["page","afterBody","ClientList","clients","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["page","afterBody","ClientList","clients","content","CustomImage","sizes"]}],"namespace":["page","sideBar","ClientList","clients","content","CustomImage"]},{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["page","afterBody","ClientList","clients","content","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["page","afterBody","ClientList","clients","content","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["companyIndex","_body","ClientList","clients","content","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["companyIndex","_body","ClientList","clients","content","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["companyIndex","_body","ClientList","clients","content","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["companyIndex","_body","ClientList","clients","content","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["companyIndex","_body","ClientList","clients","content","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["companyIndex","_body","ClientList","clients","content","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["companyIndex","_body","ClientList","clients","content","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["companyIndex","_body","ClientList","clients","content","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["companyIndex","_body","ClientList","clients","content","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["companyIndex","_body","ClientList","clients","content","ContentCard","content","CustomImage","sizes"]}],"namespace":["articlesIndex","_body","ClientList","clients","content","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["companyIndex","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["companyIndex","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["companyIndex","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["companyIndex","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["companyIndex","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["articlesIndex","_body","ClientList","clients","content","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["companyIndex","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["companyIndex","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["companyIndex","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["companyIndex","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["companyIndex","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["companyIndex","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["companyIndex","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","duration"]}],"namespace":["articlesIndex","_body","ClientList","clients","content","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["companyIndex","_body","ClientList","clients","content","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["companyIndex","_body","ClientList","clients","content","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["company","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["company","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["company","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["company","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["company","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["companyIndex","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["articlesIndex","_body","ClientList","clients","content","ContentCard","content","ColorBlock"]}],"namespace":["page","afterBody","ClientList","clients","content","ContentCard","content"]}],"namespace":["page","sideBar","ClientList","clients","content","ContentCard"]}],"namespace":["page","_body","ClientList","clients","content"]},{"type":"string","name":"caseStudyUrl","label":"Case study URL","namespace":["page","_body","ClientList","clients","caseStudyUrl"]},{"type":"object","name":"categories","label":"Categories","list":true,"ui":{},"fields":[{"type":"reference","name":"category","label":"Category","collections":["clientCategories"],"namespace":["page","sideBar","ClientList","clients","categories","category"]}],"namespace":["page","_body","ClientList","clients","categories"]}],"namespace":["page","beforeBody","ClientList","clients"],"searchable":true,"uid":false}],"namespace":["page","beforeBody","ClientList"]},{"name":"ClientLogos","label":"Client Logos","ui":{"previewSrc":"/images/thumbs/tina/client-logos.jpg"},"fields":[{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["page","beforeBody","ClientLogos","altText"],"searchable":true,"uid":false}],"namespace":["page","beforeBody","ClientLogos"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["page","beforeBody","ColorBlock","title"],"searchable":true,"uid":false},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["page","beforeBody","ColorBlock","subTitle"],"searchable":true,"uid":false},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["page","beforeBody","Content","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["page","beforeBody","Content","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["page","beforeBody","Content","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["page","beforeBody","Content","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["page","beforeBody","Content","content","ColorBlock","colorRow","caption"]}],"namespace":["page","beforeBody","ColorBlock","colorRow"],"searchable":true,"uid":false}],"namespace":["page","beforeBody","ColorBlock"]},{"name":"ColorPalette","label":"Color Palette","ui":{"previewSrc":"/images/thumbs/tina/color-palette.jpg"},"fields":[{"type":"string","label":"Name","name":"name","namespace":["page","beforeBody","ColorPalette","name"],"searchable":true,"uid":false}],"namespace":["page","beforeBody","ColorPalette"]},{"name":"Content","label":"Content","ui":{"previewSrc":"/images/thumbs/tina/content.jpg","defaultItem":{"body":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["page","beforeBody","Content","title"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["page","sideBar","Content","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["page","sideBar","Content","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["page","sideBar","Content","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["page","sideBar","Content","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["page","sideBar","Content","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["page","sideBar","Content","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["page","sideBar","Content","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["page","sideBar","Content","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["page","sideBar","Content","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["page","sideBar","Content","content","CustomImage","sizes"]}],"namespace":["page","_body","Content","content","CustomImage"]},{"name":"ClientLogos","label":"Client Logos","ui":{"previewSrc":"/images/thumbs/tina/client-logos.jpg"},"fields":[{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["page","sideBar","Content","content","ClientLogos","altText"]}],"namespace":["page","_body","Content","content","ClientLogos"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["page","sideBar","Content","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["page","sideBar","Content","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["page","sideBar","Content","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["page","sideBar","Content","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["page","sideBar","Content","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["page","sideBar","Content","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["page","sideBar","Content","content","VideoEmbed","duration"]}],"namespace":["page","_body","Content","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["page","sideBar","Content","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["page","sideBar","Content","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["page","afterBody","Content","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["page","afterBody","Content","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["page","afterBody","Content","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["page","afterBody","Content","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["page","afterBody","Content","content","ColorBlock","colorRow","caption"]}],"namespace":["page","sideBar","Content","content","ColorBlock","colorRow"]}],"namespace":["page","_body","Content","content","ColorBlock"]}],"namespace":["page","beforeBody","Content","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Container Padding","name":"paddingClass","options":["Mobile: No Padding","Mobile: No Top and Horizontal Padding"],"namespace":["page","beforeBody","Content","paddingClass"],"searchable":true,"uid":false},{"type":"string","label":"Text size","name":"size","options":[{"label":"small","value":"sm"},{"label":"normal","value":"base"},{"label":"large","value":"lg"},{"label":"extra large","value":"xl"},{"label":"2x large","value":"2xl"}],"namespace":["page","beforeBody","Content","size"],"searchable":true,"uid":false},{"type":"string","label":"Align","name":"align","options":[{"label":"Left","value":"left"},{"label":"Center","value":"center"},{"label":"Right","value":"right"}],"namespace":["page","beforeBody","Content","align"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["page","beforeBody","Content","backgroundColor"],"searchable":true,"uid":false}],"namespace":["page","beforeBody","Content"]},{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["page","beforeBody","ContentCard","prose"],"searchable":true,"uid":false},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["page","beforeBody","ContentCard","centerAlignedText"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["page","beforeBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["page","beforeBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["page","beforeBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["page","beforeBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["page","beforeBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["page","beforeBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["page","beforeBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["page","beforeBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["page","beforeBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["page","beforeBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["page","beforeBody","FixedColumns","firstColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["page","beforeBody","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["page","beforeBody","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["page","beforeBody","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["page","beforeBody","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["page","beforeBody","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["page","beforeBody","FixedColumns","firstColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["page","beforeBody","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["page","beforeBody","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["page","beforeBody","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["page","beforeBody","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["page","beforeBody","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["page","beforeBody","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["page","beforeBody","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["page","beforeBody","FixedColumns","firstColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["page","beforeBody","FixedColumns","secondColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["page","beforeBody","FixedColumns","secondColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["page","_body","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["page","_body","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["page","_body","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["page","_body","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["page","_body","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["page","beforeBody","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["page","beforeBody","FixedColumns","firstColBody","ContentCard","content","ColorBlock"]}],"namespace":["page","beforeBody","ContentCard","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["page","beforeBody","ContentCard"]},{"name":"CustomDownloadButton","label":"Custom Download Button","ui":{"previewSrc":"/images/thumbs/tina/custom-download-button.jpg"},"fields":[{"type":"string","label":"Text","name":"btnText","namespace":["page","beforeBody","CustomDownloadButton","btnText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"btnLink","namespace":["page","beforeBody","CustomDownloadButton","btnLink"],"searchable":true,"uid":false}],"namespace":["page","beforeBody","CustomDownloadButton"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["page","beforeBody","CustomImage","src"],"searchable":false,"uid":false},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["page","beforeBody","CustomImage","altText"],"searchable":true,"uid":false},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["page","beforeBody","CustomImage","alignment"],"searchable":true,"uid":false},{"type":"number","label":"Height","name":"height","required":true,"namespace":["page","beforeBody","CustomImage","height"],"searchable":true,"uid":false},{"type":"number","label":"Width","name":"width","required":true,"namespace":["page","beforeBody","CustomImage","width"],"searchable":true,"uid":false},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["page","beforeBody","CustomImage","link"],"searchable":true,"uid":false},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["page","beforeBody","CustomImage","customClass"],"searchable":true,"uid":false},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["page","beforeBody","CustomImage","caption"],"searchable":true,"uid":false},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["page","beforeBody","CustomImage","captionColor"],"searchable":true,"uid":false},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["page","beforeBody","CustomImage","sizes"],"searchable":true,"uid":false}],"namespace":["page","beforeBody","CustomImage"]},{"name":"DomainFromQuery","label":"Domain from query","ui":{"previewSrc":"/images/thumbs/tina/domain-from-query.jpg"},"fields":[{"name":"title","label":"Title","type":"string","description":"This is a H1 heading","namespace":["page","beforeBody","DomainFromQuery","title"],"searchable":true,"uid":false},{"name":"showDomain","label":"Show domain name","type":"boolean","description":"Query param in URL must have key of 'domain'","namespace":["page","beforeBody","DomainFromQuery","showDomain"],"searchable":true,"uid":false}],"namespace":["page","beforeBody","DomainFromQuery"]},{"name":"DownloadBlock","label":"Download Block","ui":{"previewSrc":"/images/thumbs/tina/download-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["page","beforeBody","DownloadBlock","title"],"searchable":true,"uid":false},{"type":"object","label":"Downloads","name":"downloads","ui":{},"list":true,"fields":[{"type":"string","label":"Header","name":"header","namespace":["page","_body","DownloadBlock","downloads","header"]},{"type":"image","label":"Image","name":"img","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","img","uploadDir"]},"namespace":["page","_body","DownloadBlock","downloads","img"]},{"type":"string","label":"Image Background","name":"imgBackground","options":["black","grey","white","darkgrey","darkgreen"],"namespace":["page","_body","DownloadBlock","downloads","imgBackground"]},{"type":"string","label":"First Link Text","name":"firstLinkText","description":"Defaults to PNG","namespace":["page","_body","DownloadBlock","downloads","firstLinkText"]},{"type":"image","label":"First Link","name":"firstLink","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","firstLink","uploadDir"]},"namespace":["page","_body","DownloadBlock","downloads","firstLink"]},{"type":"string","label":"Second Link Text","name":"secondLinkText","description":"Defaults to PDF","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","secondLinkText","uploadDir"]},"namespace":["page","_body","DownloadBlock","downloads","secondLinkText"]},{"type":"image","label":"Second Link","name":"secondLink","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","secondLink","uploadDir"]},"namespace":["page","_body","DownloadBlock","downloads","secondLink"]}],"namespace":["page","beforeBody","DownloadBlock","downloads"],"searchable":true,"uid":false},{"type":"boolean","label":"Bottom border","name":"bottomBorder","namespace":["page","beforeBody","DownloadBlock","bottomBorder"],"searchable":true,"uid":false}],"namespace":["page","beforeBody","DownloadBlock"]},{"name":"DynamicColumns","label":"Dynamic Column Layout","fields":[{"type":"rich-text","label":"Column text body","name":"colBody","required":true,"namespace":["page","beforeBody","DynamicColumns","colBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"number","label":"Number of columns","name":"colCount","required":true,"ui":{},"namespace":["page","beforeBody","DynamicColumns","colCount"],"searchable":true,"uid":false}],"namespace":["page","beforeBody","DynamicColumns"]},{"name":"EventBooking","label":"Events Booking","ui":{"previewSrc":"/images/thumbs/tina/events-booking.jpg"},"fields":[{"type":"number","label":"Duration (In Days)","name":"eventDurationInDays","required":true,"namespace":["page","beforeBody","EventBooking","eventDurationInDays"],"searchable":true,"uid":false},{"type":"number","label":"Price","name":"price","required":true,"namespace":["page","beforeBody","EventBooking","price"],"searchable":true,"uid":false},{"type":"number","label":"Discount Price","name":"discountPrice","namespace":["page","beforeBody","EventBooking","discountPrice"],"searchable":true,"uid":false},{"type":"string","name":"gstText","label":"Select GST Option","options":["inc GST","+ GST"],"required":true,"namespace":["page","beforeBody","EventBooking","gstText"],"searchable":true,"uid":false},{"type":"string","label":"Discount Note","name":"discountNote","namespace":["page","beforeBody","EventBooking","discountNote"],"searchable":true,"uid":false},{"type":"object","label":"Event","name":"eventList","ui":{},"list":true,"fields":[{"type":"string","label":"City","name":"city","namespace":["page","_body","EventBooking","eventList","city"]},{"type":"datetime","label":"Start Date","name":"date","ui":{},"namespace":["page","_body","EventBooking","eventList","date"]},{"type":"string","label":"Booking URL","name":"bookingURL","namespace":["page","_body","EventBooking","eventList","bookingURL"]},{"type":"reference","label":"Location","name":"location","collections":["locations"],"namespace":["page","_body","EventBooking","eventList","location"]}],"namespace":["page","beforeBody","EventBooking","eventList"],"searchable":true,"uid":false}],"namespace":["page","beforeBody","EventBooking"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["page","beforeBody","FixedColumns","secondColBody","EventLink","content","Flag","country"]}],"namespace":["page","beforeBody","FixedColumns","firstColBody","EventLink","content","Flag"]}],"namespace":["page","beforeBody","EventLink","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Link","name":"link","namespace":["page","beforeBody","EventLink","link"],"searchable":true,"uid":false},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["page","beforeBody","EventLink","eventThumbnail"],"searchable":false,"uid":false},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["page","beforeBody","EventLink","thumbnailAlt"],"searchable":true,"uid":false}],"namespace":["page","beforeBody","EventLink"]},{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["page","beforeBody","Flag","country"],"searchable":true,"uid":false}],"namespace":["page","beforeBody","Flag"]},{"name":"FixedColumns","label":"Fixed Column Layout (2 columns)","ui":{"previewSrc":"/images/thumbs/tina/fixed-columns.jpg"},"fields":[{"type":"rich-text","label":"Header Section (Optional)","name":"headerSection","namespace":["page","beforeBody","FixedColumns","headerSection"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"First column text","name":"firstColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["page","sideBar","FixedColumns","firstColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["page","sideBar","FixedColumns","firstColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["articlesIndex","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["articlesIndex","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["articlesIndex","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["articlesIndex","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["articlesIndex","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["articlesIndex","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["articlesIndex","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["articlesIndex","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["articlesIndex","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["articlesIndex","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["page","afterBody","FixedColumns","firstColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["articlesIndex","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["articlesIndex","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["articlesIndex","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["articlesIndex","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["articlesIndex","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["page","afterBody","FixedColumns","firstColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["articlesIndex","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["articlesIndex","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["articlesIndex","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["articlesIndex","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["articlesIndex","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["articlesIndex","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["articlesIndex","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["page","afterBody","FixedColumns","firstColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["articlesIndex","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["articlesIndex","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["articles","subTitle","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["articles","subTitle","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["articles","subTitle","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["articles","subTitle","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["articles","subTitle","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["articlesIndex","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["page","afterBody","FixedColumns","firstColBody","ContentCard","content","ColorBlock"]}],"namespace":["page","sideBar","FixedColumns","firstColBody","ContentCard","content"]}],"namespace":["page","_body","FixedColumns","firstColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["page","sideBar","FixedColumns","firstColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["page","sideBar","FixedColumns","firstColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["page","sideBar","FixedColumns","firstColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["page","sideBar","FixedColumns","firstColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["page","sideBar","FixedColumns","firstColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["page","sideBar","FixedColumns","firstColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["page","sideBar","FixedColumns","firstColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["page","sideBar","FixedColumns","firstColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["page","sideBar","FixedColumns","firstColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["page","sideBar","FixedColumns","firstColBody","CustomImage","sizes"]}],"namespace":["page","_body","FixedColumns","firstColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["articlesIndex","_body","FixedColumns","firstColBody","EventLink","content","Flag","country"]}],"namespace":["page","afterBody","FixedColumns","firstColBody","EventLink","content","Flag"]}],"namespace":["page","sideBar","FixedColumns","firstColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["page","sideBar","FixedColumns","firstColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["page","sideBar","FixedColumns","firstColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["page","sideBar","FixedColumns","firstColBody","EventLink","thumbnailAlt"]}],"namespace":["page","_body","FixedColumns","firstColBody","EventLink"]}],"namespace":["page","beforeBody","FixedColumns","firstColBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"Second column text","name":"secondColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["page","sideBar","FixedColumns","secondColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["page","sideBar","FixedColumns","secondColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["articlesIndex","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["articlesIndex","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["articlesIndex","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["articlesIndex","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["articlesIndex","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["articlesIndex","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["articlesIndex","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["articlesIndex","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["articlesIndex","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["articlesIndex","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["page","afterBody","FixedColumns","secondColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["articlesIndex","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["articlesIndex","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["articlesIndex","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["articlesIndex","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["articlesIndex","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["page","afterBody","FixedColumns","secondColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["articlesIndex","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["articlesIndex","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["articlesIndex","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["articlesIndex","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["articlesIndex","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["articlesIndex","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["articlesIndex","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["page","afterBody","FixedColumns","secondColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["articlesIndex","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["articlesIndex","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["articles","subTitle","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["articles","subTitle","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["articles","subTitle","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["articles","subTitle","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["articles","subTitle","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["articlesIndex","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["page","afterBody","FixedColumns","secondColBody","ContentCard","content","ColorBlock"]}],"namespace":["page","sideBar","FixedColumns","secondColBody","ContentCard","content"]}],"namespace":["page","_body","FixedColumns","secondColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["page","sideBar","FixedColumns","secondColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["page","sideBar","FixedColumns","secondColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["page","sideBar","FixedColumns","secondColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["page","sideBar","FixedColumns","secondColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["page","sideBar","FixedColumns","secondColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["page","sideBar","FixedColumns","secondColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["page","sideBar","FixedColumns","secondColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["page","sideBar","FixedColumns","secondColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["page","sideBar","FixedColumns","secondColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["page","sideBar","FixedColumns","secondColBody","CustomImage","sizes"]}],"namespace":["page","_body","FixedColumns","secondColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["articlesIndex","_body","FixedColumns","secondColBody","EventLink","content","Flag","country"]}],"namespace":["page","afterBody","FixedColumns","secondColBody","EventLink","content","Flag"]}],"namespace":["page","sideBar","FixedColumns","secondColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["page","sideBar","FixedColumns","secondColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["page","sideBar","FixedColumns","secondColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["page","sideBar","FixedColumns","secondColBody","EventLink","thumbnailAlt"]}],"namespace":["page","_body","FixedColumns","secondColBody","EventLink"]}],"namespace":["page","beforeBody","FixedColumns","secondColBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["page","beforeBody","FixedColumns"]},{"name":"FixedTabsLayout","label":"Fixed Tabs Layout","ui":{"previewSrc":"/images/thumbs/tina/fixed-tabs-layout.jpg"},"fields":[{"type":"string","name":"firstTab","label":"First Tab","namespace":["page","beforeBody","FixedTabsLayout","firstTab"],"searchable":true,"uid":false},{"type":"rich-text","name":"firstHeading","label":"First Heading","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["page","sideBar","FixedTabsLayout","firstHeading","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["page","sideBar","FixedTabsLayout","firstHeading","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["page","sideBar","FixedTabsLayout","firstHeading","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["page","sideBar","FixedTabsLayout","firstHeading","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["page","sideBar","FixedTabsLayout","firstHeading","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["page","sideBar","FixedTabsLayout","firstHeading","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["page","sideBar","FixedTabsLayout","firstHeading","VideoEmbed","duration"]}],"namespace":["page","_body","FixedTabsLayout","firstHeading","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["page","sideBar","FixedTabsLayout","firstHeading","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["page","sideBar","FixedTabsLayout","firstHeading","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["page","sideBar","FixedTabsLayout","firstHeading","BookingButton","buttonSubtitle"]}],"namespace":["page","_body","FixedTabsLayout","firstHeading","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["page","sideBar","FixedTabsLayout","firstHeading","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["page","afterBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["page","afterBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["page","afterBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["page","afterBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","skills"]}],"namespace":["page","sideBar","FixedTabsLayout","firstHeading","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["page","afterBody","FixedTabsLayout","firstHeading","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["page","afterBody","FixedTabsLayout","firstHeading","ExpertBlock","link","url"]}],"namespace":["page","sideBar","FixedTabsLayout","firstHeading","ExpertBlock","link"]}],"namespace":["page","_body","FixedTabsLayout","firstHeading","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["page","afterBody","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["page","afterBody","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["page","afterBody","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["articlesIndex","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["articlesIndex","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["articlesIndex","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["page","afterBody","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["page","sideBar","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["page","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["page","sideBar","FixedTabsLayout","firstHeading","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["page","sideBar","FixedTabsLayout","firstHeading","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["page","sideBar","FixedTabsLayout","firstHeading","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["page","sideBar","FixedTabsLayout","firstHeading","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["page","sideBar","FixedTabsLayout","firstHeading","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["page","sideBar","FixedTabsLayout","firstHeading","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["page","sideBar","FixedTabsLayout","firstHeading","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["page","sideBar","FixedTabsLayout","firstHeading","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["page","sideBar","FixedTabsLayout","firstHeading","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["page","sideBar","FixedTabsLayout","firstHeading","CustomImage","sizes"]}],"namespace":["page","_body","FixedTabsLayout","firstHeading","CustomImage"]}],"namespace":["page","beforeBody","FixedTabsLayout","firstHeading"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","name":"firstBody","label":"First Body","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["page","sideBar","FixedTabsLayout","firstBody","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["page","sideBar","FixedTabsLayout","firstBody","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["page","sideBar","FixedTabsLayout","firstBody","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["page","sideBar","FixedTabsLayout","firstBody","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["page","sideBar","FixedTabsLayout","firstBody","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["page","sideBar","FixedTabsLayout","firstBody","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["page","sideBar","FixedTabsLayout","firstBody","VideoEmbed","duration"]}],"namespace":["page","_body","FixedTabsLayout","firstBody","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["page","sideBar","FixedTabsLayout","firstBody","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["page","sideBar","FixedTabsLayout","firstBody","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["page","sideBar","FixedTabsLayout","firstBody","BookingButton","buttonSubtitle"]}],"namespace":["page","_body","FixedTabsLayout","firstBody","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["page","sideBar","FixedTabsLayout","firstBody","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["page","afterBody","FixedTabsLayout","firstBody","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["page","afterBody","FixedTabsLayout","firstBody","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["page","afterBody","FixedTabsLayout","firstBody","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["page","afterBody","FixedTabsLayout","firstBody","ExpertBlock","expertList","skills"]}],"namespace":["page","sideBar","FixedTabsLayout","firstBody","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["page","afterBody","FixedTabsLayout","firstBody","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["page","afterBody","FixedTabsLayout","firstBody","ExpertBlock","link","url"]}],"namespace":["page","sideBar","FixedTabsLayout","firstBody","ExpertBlock","link"]}],"namespace":["page","_body","FixedTabsLayout","firstBody","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["page","afterBody","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["page","afterBody","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["page","afterBody","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["articlesIndex","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["articlesIndex","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["articlesIndex","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["page","afterBody","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["page","sideBar","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["page","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["page","sideBar","FixedTabsLayout","firstBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["page","sideBar","FixedTabsLayout","firstBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["page","sideBar","FixedTabsLayout","firstBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["page","sideBar","FixedTabsLayout","firstBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["page","sideBar","FixedTabsLayout","firstBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["page","sideBar","FixedTabsLayout","firstBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["page","sideBar","FixedTabsLayout","firstBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["page","sideBar","FixedTabsLayout","firstBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["page","sideBar","FixedTabsLayout","firstBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["page","sideBar","FixedTabsLayout","firstBody","CustomImage","sizes"]}],"namespace":["page","_body","FixedTabsLayout","firstBody","CustomImage"]}],"namespace":["page","beforeBody","FixedTabsLayout","firstBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","name":"secondTab","label":"Second Tab","namespace":["page","beforeBody","FixedTabsLayout","secondTab"],"searchable":true,"uid":false},{"type":"rich-text","name":"secondHeading","label":"Second Heading","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["page","sideBar","FixedTabsLayout","secondHeading","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["page","sideBar","FixedTabsLayout","secondHeading","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["page","sideBar","FixedTabsLayout","secondHeading","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["page","sideBar","FixedTabsLayout","secondHeading","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["page","sideBar","FixedTabsLayout","secondHeading","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["page","sideBar","FixedTabsLayout","secondHeading","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["page","sideBar","FixedTabsLayout","secondHeading","VideoEmbed","duration"]}],"namespace":["page","_body","FixedTabsLayout","secondHeading","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["page","sideBar","FixedTabsLayout","secondHeading","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["page","sideBar","FixedTabsLayout","secondHeading","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["page","sideBar","FixedTabsLayout","secondHeading","BookingButton","buttonSubtitle"]}],"namespace":["page","_body","FixedTabsLayout","secondHeading","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["page","sideBar","FixedTabsLayout","secondHeading","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["page","afterBody","FixedTabsLayout","secondHeading","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["page","afterBody","FixedTabsLayout","secondHeading","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["page","afterBody","FixedTabsLayout","secondHeading","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["page","afterBody","FixedTabsLayout","secondHeading","ExpertBlock","expertList","skills"]}],"namespace":["page","sideBar","FixedTabsLayout","secondHeading","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["page","afterBody","FixedTabsLayout","secondHeading","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["page","afterBody","FixedTabsLayout","secondHeading","ExpertBlock","link","url"]}],"namespace":["page","sideBar","FixedTabsLayout","secondHeading","ExpertBlock","link"]}],"namespace":["page","_body","FixedTabsLayout","secondHeading","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["page","afterBody","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["page","afterBody","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["page","afterBody","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["articlesIndex","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["articlesIndex","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["articlesIndex","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["page","afterBody","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["page","sideBar","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["page","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["page","sideBar","FixedTabsLayout","secondHeading","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["page","sideBar","FixedTabsLayout","secondHeading","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["page","sideBar","FixedTabsLayout","secondHeading","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["page","sideBar","FixedTabsLayout","secondHeading","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["page","sideBar","FixedTabsLayout","secondHeading","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["page","sideBar","FixedTabsLayout","secondHeading","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["page","sideBar","FixedTabsLayout","secondHeading","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["page","sideBar","FixedTabsLayout","secondHeading","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["page","sideBar","FixedTabsLayout","secondHeading","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["page","sideBar","FixedTabsLayout","secondHeading","CustomImage","sizes"]}],"namespace":["page","_body","FixedTabsLayout","secondHeading","CustomImage"]}],"namespace":["page","beforeBody","FixedTabsLayout","secondHeading"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","name":"secondBody","label":"Second Body","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["page","sideBar","FixedTabsLayout","secondBody","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["page","sideBar","FixedTabsLayout","secondBody","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["page","sideBar","FixedTabsLayout","secondBody","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["page","sideBar","FixedTabsLayout","secondBody","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["page","sideBar","FixedTabsLayout","secondBody","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["page","sideBar","FixedTabsLayout","secondBody","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["page","sideBar","FixedTabsLayout","secondBody","VideoEmbed","duration"]}],"namespace":["page","_body","FixedTabsLayout","secondBody","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["page","sideBar","FixedTabsLayout","secondBody","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["page","sideBar","FixedTabsLayout","secondBody","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["page","sideBar","FixedTabsLayout","secondBody","BookingButton","buttonSubtitle"]}],"namespace":["page","_body","FixedTabsLayout","secondBody","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["page","sideBar","FixedTabsLayout","secondBody","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["page","afterBody","FixedTabsLayout","secondBody","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["page","afterBody","FixedTabsLayout","secondBody","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["page","afterBody","FixedTabsLayout","secondBody","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["page","afterBody","FixedTabsLayout","secondBody","ExpertBlock","expertList","skills"]}],"namespace":["page","sideBar","FixedTabsLayout","secondBody","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["page","afterBody","FixedTabsLayout","secondBody","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["page","afterBody","FixedTabsLayout","secondBody","ExpertBlock","link","url"]}],"namespace":["page","sideBar","FixedTabsLayout","secondBody","ExpertBlock","link"]}],"namespace":["page","_body","FixedTabsLayout","secondBody","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["page","afterBody","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["page","afterBody","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["page","afterBody","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["articlesIndex","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["articlesIndex","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["articlesIndex","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["page","afterBody","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["page","sideBar","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["page","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["page","sideBar","FixedTabsLayout","secondBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["page","sideBar","FixedTabsLayout","secondBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["page","sideBar","FixedTabsLayout","secondBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["page","sideBar","FixedTabsLayout","secondBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["page","sideBar","FixedTabsLayout","secondBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["page","sideBar","FixedTabsLayout","secondBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["page","sideBar","FixedTabsLayout","secondBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["page","sideBar","FixedTabsLayout","secondBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["page","sideBar","FixedTabsLayout","secondBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["page","sideBar","FixedTabsLayout","secondBody","CustomImage","sizes"]}],"namespace":["page","_body","FixedTabsLayout","secondBody","CustomImage"]}],"namespace":["page","beforeBody","FixedTabsLayout","secondBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["page","beforeBody","FixedTabsLayout"]},{"label":"Google Maps","name":"GoogleMaps","ui":{"previewSrc":"/images/thumbs/tina/google-maps.jpg"},"fields":[{"type":"string","label":"URL","name":"embedUrl","required":true,"namespace":["page","beforeBody","GoogleMaps","embedUrl"],"searchable":true,"uid":false},{"type":"string","label":"Width","name":"embedWidth","namespace":["page","beforeBody","GoogleMaps","embedWidth"],"searchable":true,"uid":false},{"type":"string","label":"Height","name":"embedHeight","namespace":["page","beforeBody","GoogleMaps","embedHeight"],"searchable":true,"uid":false}],"namespace":["page","beforeBody","GoogleMaps"]},{"label":"Grid Layout","name":"GridLayout","ui":{"previewSrc":"/images/thumbs/tina/grid-layout.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["page","beforeBody","GridLayout","title"],"searchable":true,"uid":false},{"type":"object","list":true,"label":"Grid Items","name":"grids","ui":{},"fields":[{"type":"string","label":"Grid Title","name":"gridTitle","namespace":["page","_body","GridLayout","grids","gridTitle"]},{"type":"boolean","label":"Show Grid Title","name":"showGridTitle","namespace":["page","_body","GridLayout","grids","showGridTitle"]},{"type":"boolean","label":"Centered Grid Title","name":"centeredGridTitle","namespace":["page","_body","GridLayout","grids","centeredGridTitle"]},{"type":"boolean","label":"Show Header Divider","name":"showHeaderDivider","namespace":["page","_body","GridLayout","grids","showHeaderDivider"]},{"type":"boolean","label":"Offset Grid Start","name":"offsetGridStart","namespace":["page","_body","GridLayout","grids","offsetGridStart"]},{"type":"object","label":"Blocks","name":"blocks","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["page","sideBar","GridLayout","grids","blocks","title"]},{"type":"boolean","label":"Show Title","name":"showTitle","namespace":["page","sideBar","GridLayout","grids","blocks","showTitle"]},{"type":"image","label":"Image","name":"image","uploadDir":{"namespace":["page","beforeBody","GridLayout","grids","blocks","image","uploadDir"]},"namespace":["page","sideBar","GridLayout","grids","blocks","image"]},{"type":"image","label":"Related Image","name":"relatedImage","uploadDir":{"namespace":["page","beforeBody","GridLayout","grids","blocks","relatedImage","uploadDir"]},"namespace":["page","sideBar","GridLayout","grids","blocks","relatedImage"]},{"type":"rich-text","name":"linkContent","label":"Link Content","templates":[{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["articlesIndex","_body","GridLayout","grids","blocks","linkContent","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["articlesIndex","_body","GridLayout","grids","blocks","linkContent","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["articlesIndex","_body","GridLayout","grids","blocks","linkContent","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["articlesIndex","_body","GridLayout","grids","blocks","linkContent","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["articlesIndex","_body","GridLayout","grids","blocks","linkContent","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["articlesIndex","_body","GridLayout","grids","blocks","linkContent","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["articlesIndex","_body","GridLayout","grids","blocks","linkContent","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["articlesIndex","_body","GridLayout","grids","blocks","linkContent","UtilityButton","openInNewTab"]}],"namespace":["page","afterBody","GridLayout","grids","blocks","linkContent","UtilityButton"]}],"namespace":["page","sideBar","GridLayout","grids","blocks","linkContent"]}],"namespace":["page","_body","GridLayout","grids","blocks"]}],"namespace":["page","beforeBody","GridLayout","grids"],"searchable":true,"uid":false}],"namespace":["page","beforeBody","GridLayout"]},{"name":"Hero","label":"Hero","ui":{"previewSrc":"/blocks/hero.png","defaultItem":{"tagline":"Here's some text above the other text","headline":"This Big Text is Totally Awesome","text":"Phasellus scelerisque, libero eu finibus rutrum, risus risus accumsan libero, nec molestie urna dui a leo."}},"fields":[{"type":"string","label":"Tagline","name":"tagline","namespace":["page","beforeBody","Hero","tagline"],"searchable":true,"uid":false},{"type":"string","label":"Headline","name":"headline","namespace":["page","beforeBody","Hero","headline"],"searchable":true,"uid":false},{"label":"Text","name":"text","type":"rich-text","namespace":["page","beforeBody","Hero","text"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"label":"Actions","name":"actions","type":"object","list":true,"ui":{"defaultItem":{"label":"Action Label","type":"button","icon":true,"link":"/"}},"fields":[{"label":"Label","name":"label","type":"string","namespace":["page","_body","Hero","actions","label"]},{"label":"Type","name":"type","type":"string","options":[{"label":"Button","value":"button"},{"label":"Link","value":"link"}],"namespace":["page","_body","Hero","actions","type"]},{"label":"Icon","name":"icon","type":"boolean","namespace":["page","_body","Hero","actions","icon"]},{"label":"Link","name":"link","type":"string","namespace":["page","_body","Hero","actions","link"]}],"namespace":["page","beforeBody","Hero","actions"],"searchable":true,"uid":false},{"type":"object","label":"Image","name":"image","fields":[{"name":"src","label":"Image Source","type":"image","namespace":["page","_body","Hero","image","src"]},{"name":"alt","label":"Alt Text","type":"string","namespace":["page","_body","Hero","image","alt"]}],"namespace":["page","beforeBody","Hero","image"],"searchable":true,"uid":false},{"type":"string","label":"Color","name":"color","options":[{"label":"Default","value":"default"},{"label":"Tint","value":"tint"},{"label":"Primary","value":"primary"}],"namespace":["page","beforeBody","Hero","color"],"searchable":true,"uid":false}],"namespace":["page","beforeBody","Hero"]},{"name":"HorizontalCard","label":"Horizontal Card","ui":{"previewSrc":"/images/thumbs/tina/horizontal-card.jpg"},"fields":[{"type":"object","label":"Cards","name":"cardList","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["page","_body","HorizontalCard","cardList","title"]},{"type":"rich-text","label":"Content","name":"content","namespace":["page","_body","HorizontalCard","cardList","content"]},{"type":"image","label":"Thumbnail","name":"thumbnail","uploadDir":{"namespace":["page","beforeBody","HorizontalCard","cardList","thumbnail","uploadDir"]},"namespace":["page","_body","HorizontalCard","cardList","thumbnail"]},{"type":"string","label":"Link","name":"link","namespace":["page","_body","HorizontalCard","cardList","link"]}],"namespace":["page","beforeBody","HorizontalCard","cardList"],"searchable":true,"uid":false},{"type":"object","label":"Button","name":"button","fields":[{"type":"string","label":"Text","name":"text","namespace":["page","_body","HorizontalCard","button","text"]},{"type":"string","label":"Link","name":"link","namespace":["page","_body","HorizontalCard","button","link"]}],"namespace":["page","beforeBody","HorizontalCard","button"],"searchable":true,"uid":false}],"namespace":["page","beforeBody","HorizontalCard"]},{"name":"InternalCarousel","label":"Internal Carousel","ui":{"previewSrc":"/images/thumbs/tina/internal-carousel.jpg"},"fields":[{"label":"Images","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Image description"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["page","_body","InternalCarousel","items","label"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","InternalCarousel","items","imgSrc","uploadDir"]},"namespace":["page","_body","InternalCarousel","items","imgSrc"]}],"namespace":["page","beforeBody","InternalCarousel","items"],"searchable":true,"uid":false},{"type":"string","label":"Header","name":"header","namespace":["page","beforeBody","InternalCarousel","header"],"searchable":true,"uid":false},{"type":"rich-text","label":"Text","name":"paragraph","isBody":false,"namespace":["page","beforeBody","InternalCarousel","paragraph"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Website","name":"website","namespace":["page","beforeBody","InternalCarousel","website"],"searchable":true,"uid":false},{"type":"object","label":"Technologies","name":"technologies","list":true,"ui":{},"fields":[{"type":"string","label":"Name","name":"name","namespace":["page","_body","InternalCarousel","technologies","name"]}],"namespace":["page","beforeBody","InternalCarousel","technologies"],"searchable":true,"uid":false},{"type":"string","label":"Case Study","name":"caseStudyUrl","namespace":["page","beforeBody","InternalCarousel","caseStudyUrl"],"searchable":true,"uid":false},{"type":"string","label":"Video URL","name":"videoUrl","namespace":["page","beforeBody","InternalCarousel","videoUrl"],"searchable":true,"uid":false}],"namespace":["page","beforeBody","InternalCarousel"]},{"label":"Join As Presenter","name":"joinAsPresenter","fields":[{"label":"Learn More Link","name":"link","type":"string","namespace":["page","beforeBody","joinAsPresenter","link"],"searchable":true,"uid":false},{"label":"Image","name":"img","type":"image","namespace":["page","beforeBody","joinAsPresenter","img"],"searchable":false,"uid":false}],"namespace":["page","beforeBody","joinAsPresenter"]},{"label":"Join Github","name":"joinGithub","ui":{"previewSrc":"/images/thumbs/tina/join-github.jpg"},"fields":[{"label":"Title","name":"title","type":"string","namespace":["page","beforeBody","joinGithub","title"],"searchable":true,"uid":false},{"label":"Join Github Link","name":"link","type":"string","namespace":["page","beforeBody","joinGithub","link"],"searchable":true,"uid":false}],"namespace":["page","beforeBody","joinGithub"]},{"name":"JotFormEmbed","label":"JotForm Embed","ui":{"previewSrc":"/images/thumbs/tina/jotform-embed.jpg"},"fields":[{"type":"string","name":"jotFormId","label":"JotForm Id","required":true,"namespace":["page","beforeBody","JotFormEmbed","jotFormId"],"searchable":true,"uid":false},{"type":"string","label":"Button Text","name":"buttonText","namespace":["page","beforeBody","JotFormEmbed","buttonText"],"searchable":true,"uid":false},{"type":"string","name":"containerClass","label":"Container Class","namespace":["page","beforeBody","JotFormEmbed","containerClass"],"searchable":true,"uid":false},{"type":"string","label":"Button Class","name":"buttonClass","namespace":["page","beforeBody","JotFormEmbed","buttonClass"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","namespace":["page","beforeBody","JotFormEmbed","animated"],"searchable":true,"uid":false}],"namespace":["page","beforeBody","JotFormEmbed"]},{"name":"LatestTech","label":"Latest Tech","ui":{"previewSrc":"/images/thumbs/tina/latest-tech.jpg"},"fields":[{"type":"reference","description":"Select a config file including a set of badges","collections":["userGroupGlobal"],"label":"Badges","name":"badges","namespace":["page","beforeBody","LatestTech","badges"],"searchable":true,"uid":false}],"namespace":["page","beforeBody","LatestTech"]},{"name":"LocationBlock","label":"Locations","ui":{"previewSrc":"/images/thumbs/tina/locations.jpg"},"fields":[{"type":"string","name":"title","label":"Title","namespace":["page","beforeBody","LocationBlock","title"],"searchable":true,"uid":false},{"type":"object","label":"Location List","name":"locationList","list":true,"ui":{},"fields":[{"type":"reference","collections":["locations"],"label":"Location","name":"location","namespace":["page","_body","LocationBlock","locationList","location"]}],"namespace":["page","beforeBody","LocationBlock","locationList"],"searchable":true,"uid":false},{"type":"object","name":"chapelWebsite","label":"Chapel Website","fields":[{"type":"string","name":"title","label":"Text","namespace":["page","_body","LocationBlock","chapelWebsite","title"]},{"type":"string","name":"URL","label":"URL","namespace":["page","_body","LocationBlock","chapelWebsite","URL"]}],"namespace":["page","beforeBody","LocationBlock","chapelWebsite"],"searchable":true,"uid":false}],"namespace":["page","beforeBody","LocationBlock"]},{"name":"NewslettersTable","label":"Newsletters Table","ui":{"previewSrc":"/images/thumbs/tina/newsletters-table.jpg"},"fields":[{"type":"string","label":"Header text","name":"headerText","namespace":["page","beforeBody","NewslettersTable","headerText"],"searchable":true,"uid":false}],"namespace":["page","beforeBody","NewslettersTable"]},{"label":"Organizer","name":"organizer","fields":[{"type":"image","label":"Profile Image","name":"profileImg","namespace":["page","beforeBody","organizer","profileImg"],"searchable":false,"uid":false},{"type":"string","label":"Profile Link","name":"profileLink","namespace":["page","beforeBody","organizer","profileLink"],"searchable":true,"uid":false},{"type":"string","label":"Name","name":"name","namespace":["page","beforeBody","organizer","name"],"searchable":true,"uid":false},{"type":"string","label":"Position","name":"position","namespace":["page","beforeBody","organizer","position"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","namespace":["page","beforeBody","organizer","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["page","beforeBody","organizer"]},{"label":"Payment Block","name":"paymentBlock","ui":{"previewSrc":"/images/thumbs/tina/payment-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["page","beforeBody","paymentBlock","title"],"searchable":true,"uid":false},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["page","beforeBody","paymentBlock","subTitle"],"searchable":true,"uid":false},{"type":"reference","label":"Payment Links","name":"payments","collections":["paymentDetails"],"namespace":["page","beforeBody","paymentBlock","payments"],"searchable":true,"uid":false},{"type":"rich-text","label":"Footer","name":"footer","namespace":["page","beforeBody","paymentBlock","footer"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"image","label":"Credit Cards Image","name":"creditImgSrc","namespace":["page","beforeBody","paymentBlock","creditImgSrc"],"searchable":false,"uid":false},{"type":"string","label":"Alt Text","name":"altTxt","namespace":["page","beforeBody","paymentBlock","altTxt"],"searchable":true,"uid":false}],"namespace":["page","beforeBody","paymentBlock"]},{"name":"PresenterBlock","label":"Presenters","ui":{"previewSrc":"/images/thumbs/tina/presenters.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["page","beforeBody","PresenterBlock","header"],"searchable":true,"uid":false},{"type":"object","name":"presenterList","label":"Presenters","list":true,"ui":{},"fields":[{"type":"reference","name":"presenter","label":"Presenters","collections":["presenter"],"namespace":["page","_body","PresenterBlock","presenterList","presenter"]}],"namespace":["page","beforeBody","PresenterBlock","presenterList"],"searchable":true,"uid":false},{"type":"object","label":"Other Events","name":"otherEvent","fields":[{"type":"string","label":"Title","name":"title","namespace":["page","_body","PresenterBlock","otherEvent","title"]},{"type":"string","label":"URL","name":"eventURL","namespace":["page","_body","PresenterBlock","otherEvent","eventURL"]}],"namespace":["page","beforeBody","PresenterBlock","otherEvent"],"searchable":true,"uid":false}],"namespace":["page","beforeBody","PresenterBlock"]},{"label":"Recurring Event","name":"RecurringEvent","ui":{"previewSrc":"/images/thumbs/tina/recurring-event.jpg"},"fields":[{"type":"string","label":"Apply Link Redirect","name":"applyLinkRedirect","namespace":["page","beforeBody","RecurringEvent","applyLinkRedirect"],"searchable":true,"uid":false},{"type":"string","label":"Day","name":"day","options":[{"label":"Monday","value":"monday"},{"label":"Tuesday","value":"tuesday"},{"label":"Wednesday","value":"wednesday"},{"label":"Thursday","value":"thursday"},{"label":"Friday","value":"friday"},{"label":"Saturday","value":"saturday"},{"label":"Sunday","value":"sunday"}],"required":true,"namespace":["page","beforeBody","RecurringEvent","day"],"searchable":true,"uid":false}],"namespace":["page","beforeBody","RecurringEvent"]},{"name":"SectionHeader","label":"Section Header","ui":{"previewSrc":"/images/thumbs/tina/section-header.jpg"},"fields":[{"type":"string","label":"Header Text","name":"headerText","namespace":["page","beforeBody","SectionHeader","headerText"],"searchable":true,"uid":false}],"namespace":["page","beforeBody","SectionHeader"]},{"name":"ServiceCards","label":"Service Cards","ui":{"previewSrc":"/images/thumbs/tina/services-cards.jpg"},"fields":[{"type":"string","label":"Big Cards Label","name":"bigCardsLabel","namespace":["page","beforeBody","ServiceCards","bigCardsLabel"],"searchable":true,"uid":false},{"label":"Big Cards","name":"bigCards","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["page","_body","ServiceCards","bigCards","title"]},{"type":"string","label":"Description","component":"textarea","name":"description","namespace":["page","_body","ServiceCards","bigCards","description"]},{"type":"string","label":"URL","name":"link","namespace":["page","_body","ServiceCards","bigCards","link"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Red","value":"red"},{"label":"Light Gray","value":"lightgray"},{"label":"Medium Gray","value":"mediumgray"},{"label":"Dark Gray","value":"darkgray"}],"namespace":["page","_body","ServiceCards","bigCards","color"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","ServiceCards","bigCards","imgSrc","uploadDir"]},"namespace":["page","_body","ServiceCards","bigCards","imgSrc"]}],"namespace":["page","beforeBody","ServiceCards","bigCards"],"searchable":true,"uid":false},{"type":"string","label":"Small Cards Label","name":"smallCardsLabel","namespace":["page","beforeBody","ServiceCards","smallCardsLabel"],"searchable":true,"uid":false},{"label":"Small Cards","name":"smallCards","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["page","_body","ServiceCards","smallCards","title"]},{"type":"string","label":"URL","name":"link","namespace":["page","_body","ServiceCards","smallCards","link"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Red","value":"red"},{"label":"Light Gray","value":"lightgray"},{"label":"Medium Gray","value":"mediumgray"},{"label":"Dark Gray","value":"darkgray"}],"namespace":["page","_body","ServiceCards","smallCards","color"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","ServiceCards","smallCards","imgSrc","uploadDir"]},"namespace":["page","_body","ServiceCards","smallCards","imgSrc"]},{"type":"boolean","label":"External Page","description":"Select this if the link is not part of the website. This includes SSW.Rules, and SSW.People links","name":"isExternal","namespace":["page","_body","ServiceCards","smallCards","isExternal"]}],"namespace":["page","beforeBody","ServiceCards","smallCards"],"searchable":true,"uid":false},{"label":"Links","name":"links","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["page","_body","ServiceCards","links","label"]},{"type":"string","label":"URL","name":"link","namespace":["page","_body","ServiceCards","links","link"]}],"namespace":["page","beforeBody","ServiceCards","links"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["page","beforeBody","ServiceCards","backgroundColor"],"searchable":true,"uid":false}],"namespace":["page","beforeBody","ServiceCards"]},{"label":"Table Layout","name":"TableLayout","ui":{"previewSrc":"/images/thumbs/tina/table-layout.jpg"},"fields":[{"label":"Table Style","name":"tableStyle","type":"string","options":["none","basicBorder","styled","benefits"],"namespace":["page","beforeBody","TableLayout","tableStyle"],"searchable":true,"uid":false},{"label":"First column bolded + left aligned","name":"firstColBold","type":"boolean","required":false,"namespace":["page","beforeBody","TableLayout","firstColBold"],"searchable":true,"uid":false},{"type":"string","label":"Table Headers","name":"headers","list":true,"namespace":["page","beforeBody","TableLayout","headers"],"searchable":true,"uid":false},{"type":"object","label":"Rows","name":"rows","list":true,"fields":[{"type":"object","label":"Cells","name":"cells","list":true,"fields":[{"type":"string","label":"Value","name":"cellValue","required":true,"component":{"namespace":["page","beforeBody","TableLayout","rows","cells","cellValue",""]},"namespace":["page","sideBar","TableLayout","rows","cells","cellValue"]}],"ui":{},"namespace":["page","_body","TableLayout","rows","cells"]},{"type":"boolean","label":"Is Heading","name":"isHeader","required":false,"namespace":["page","_body","TableLayout","rows","isHeader"]}],"ui":{},"namespace":["page","beforeBody","TableLayout","rows"],"searchable":true,"uid":false}],"namespace":["page","beforeBody","TableLayout"]},{"name":"TestimonialsList","label":"Testimonials List","ui":{"previewSrc":"/images/thumbs/tina/testimonials.jpg"},"fields":[{"type":"object","label":"Exclude Categories","name":"excludedCategories","ui":{},"list":true,"fields":[{"type":"reference","label":"Category Name","name":"categoryName","collections":["testimonialCategories"],"namespace":["page","_body","TestimonialsList","excludedCategories","categoryName"]}],"namespace":["page","beforeBody","TestimonialsList","excludedCategories"],"searchable":true,"uid":false}],"namespace":["page","beforeBody","TestimonialsList"]},{"label":"Training Information","name":"TrainingInformation","ui":{"previewSrc":"/images/thumbs/tina/training-information.jpg"},"fields":[{"type":"object","label":"Training Information Items","name":"trainingInformationItems","list":true,"fields":[{"type":"string","label":"Header","name":"header","namespace":["page","_body","TrainingInformation","trainingInformationItems","header"]},{"type":"rich-text","label":"Body","name":"body","templates":[{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["page","afterBody","TrainingInformation","trainingInformationItems","body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["page","afterBody","TrainingInformation","trainingInformationItems","body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["page","afterBody","TrainingInformation","trainingInformationItems","body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["page","afterBody","TrainingInformation","trainingInformationItems","body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["page","afterBody","TrainingInformation","trainingInformationItems","body","VerticalListItem","afterBody"]}],"namespace":["page","sideBar","TrainingInformation","trainingInformationItems","body","VerticalListItem"]},{"label":"Recurring Event","name":"RecurringEvent","ui":{"previewSrc":"/images/thumbs/tina/recurring-event.jpg"},"fields":[{"type":"string","label":"Apply Link Redirect","name":"applyLinkRedirect","namespace":["page","afterBody","TrainingInformation","trainingInformationItems","body","RecurringEvent","applyLinkRedirect"]},{"type":"string","label":"Day","name":"day","options":[{"label":"Monday","value":"monday"},{"label":"Tuesday","value":"tuesday"},{"label":"Wednesday","value":"wednesday"},{"label":"Thursday","value":"thursday"},{"label":"Friday","value":"friday"},{"label":"Saturday","value":"saturday"},{"label":"Sunday","value":"sunday"}],"required":true,"namespace":["page","afterBody","TrainingInformation","trainingInformationItems","body","RecurringEvent","day"]}],"namespace":["page","sideBar","TrainingInformation","trainingInformationItems","body","RecurringEvent"]}],"namespace":["page","_body","TrainingInformation","trainingInformationItems","body"]}],"namespace":["page","beforeBody","TrainingInformation","trainingInformationItems"],"searchable":true,"uid":false}],"namespace":["page","beforeBody","TrainingInformation"]},{"label":"Training Learning Outcomes","name":"TrainingLearningOutcome","ui":{"previewSrc":"/images/thumbs/tina/training-learning-outcomes.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["page","beforeBody","TrainingLearningOutcome","header"],"searchable":true,"uid":false},{"type":"object","label":"List Items","name":"listItems","list":true,"fields":[{"type":"string","label":"Title","name":"title","namespace":["page","_body","TrainingLearningOutcome","listItems","title"]},{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["page","_body","TrainingLearningOutcome","listItems","content"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","TrainingLearningOutcome","listItems","icon","uploadDir"]},"namespace":["page","_body","TrainingLearningOutcome","listItems","icon"]}],"namespace":["page","beforeBody","TrainingLearningOutcome","listItems"],"searchable":true,"uid":false}],"namespace":["page","beforeBody","TrainingLearningOutcome"]},{"label":"Tweet Embed","name":"TweetEmbed","ui":{"previewSrc":"/images/thumbs/tina/tweet-embed.jpg"},"fields":[{"type":"string","name":"url","label":"Tweet URL","required":true,"namespace":["page","beforeBody","TweetEmbed","url"],"searchable":true,"uid":false}],"namespace":["page","beforeBody","TweetEmbed"]},{"name":"UpcomingEvents","label":"Upcoming Events","ui":{"previewSrc":"/images/thumbs/tina/upcoming-events.jpg","defaultItem":{"title":"Upcoming Events","numberOfEvents":30}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["page","beforeBody","UpcomingEvents","title"],"searchable":true,"uid":false},{"type":"number","label":"Number of Events","name":"numberOfEvents","namespace":["page","beforeBody","UpcomingEvents","numberOfEvents"],"searchable":true,"uid":false}],"namespace":["page","beforeBody","UpcomingEvents"]},{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["page","beforeBody","UtilityButton","buttonText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"link","required":false,"namespace":["page","beforeBody","UtilityButton","link"],"searchable":true,"uid":false},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["page","beforeBody","UtilityButton","size"],"searchable":true,"uid":false},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["page","beforeBody","UtilityButton","btnIcon"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["page","beforeBody","UtilityButton","animated"],"searchable":true,"uid":false},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["page","beforeBody","UtilityButton","uncentered"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["page","beforeBody","UtilityButton","removeTopMargin"],"searchable":true,"uid":false},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["page","beforeBody","UtilityButton","openInNewTab"],"searchable":true,"uid":false}],"namespace":["page","beforeBody","UtilityButton"]},{"name":"VerticalImageLayout","label":"Vertical Image Layout","fields":[{"type":"image","label":"Image","name":"imageSrc","uploadDir":{"namespace":["page","beforeBody","VerticalImageLayout","imageSrc","uploadDir"]},"namespace":["page","beforeBody","VerticalImageLayout","imageSrc"],"searchable":false,"uid":false},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["page","beforeBody","VerticalImageLayout","altText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"imageLink","namespace":["page","beforeBody","VerticalImageLayout","imageLink"],"searchable":true,"uid":false},{"type":"number","label":"Height","name":"height","required":true,"namespace":["page","beforeBody","VerticalImageLayout","height"],"searchable":true,"uid":false},{"type":"number","label":"Width","name":"width","required":true,"namespace":["page","beforeBody","VerticalImageLayout","width"],"searchable":true,"uid":false},{"type":"rich-text","label":"Message","name":"message","required":true,"namespace":["page","beforeBody","VerticalImageLayout","message"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["page","beforeBody","VerticalImageLayout","sizes"],"searchable":true,"uid":false}],"namespace":["page","beforeBody","VerticalImageLayout"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["page","beforeBody","VerticalListItem","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"number","label":"Index number","name":"index","namespace":["page","beforeBody","VerticalListItem","index"],"searchable":true,"uid":false},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["page","beforeBody","VerticalListItem","icon"],"searchable":false,"uid":false},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["page","beforeBody","VerticalListItem","iconScale"],"searchable":true,"uid":false},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["page","beforeBody","VerticalListItem","afterBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["page","beforeBody","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["page","beforeBody","VideoEmbed","url"],"searchable":true,"uid":false},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["page","beforeBody","VideoEmbed","videoWidth"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["page","beforeBody","VideoEmbed","removeMargin"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["page","beforeBody","VideoEmbed","uncentre"],"searchable":true,"uid":false},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["page","beforeBody","VideoEmbed","overflow"],"searchable":true,"uid":false},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["page","beforeBody","VideoEmbed","caption"],"searchable":true,"uid":false},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["page","beforeBody","VideoEmbed","duration"],"searchable":true,"uid":false}],"namespace":["page","beforeBody","VideoEmbed"]},{"name":"InlineJotForm","label":"In-line JotForm","ui":{"previewSrc":"/images/thumbs/tina/inline-jot-form.jpg"},"fields":[{"type":"string","name":"title","label":"Title","description":"Optional title for JotForm","namespace":["page","beforeBody","InlineJotForm","title"],"searchable":true,"uid":false},{"type":"string","name":"jotFormId","label":"JotForm ID","required":true,"namespace":["page","beforeBody","InlineJotForm","jotFormId"],"searchable":true,"uid":false},{"type":"string","name":"additionalClasses","label":"Additional classnames","description":"Optional styling for iframe element only","namespace":["page","beforeBody","InlineJotForm","additionalClasses"],"searchable":true,"uid":false}],"namespace":["page","beforeBody","InlineJotForm"]}],"namespace":["page","beforeBody"],"searchable":true,"uid":false},{"type":"rich-text","label":"Body","name":"_body","templates":[{"name":"AboutUs","label":"About Us","ui":{"previewSrc":"/images/thumbs/tina/about-us.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["page","_body","AboutUs","backgroundColor"],"searchable":true,"uid":false},{"type":"boolean","label":"Show Map","name":"showMap","required":false,"namespace":["page","_body","AboutUs","showMap"],"searchable":true,"uid":false}],"namespace":["page","_body","AboutUs"]},{"label":"Agenda","name":"Agenda","ui":{"previewSrc":"/images/thumbs/tina/agenda.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["page","_body","Agenda","header"],"searchable":true,"uid":false},{"type":"string","label":"Header Color","name":"textColor","options":[{"label":"Red","value":"red"},{"label":"Gray","value":"gray"},{"label":"Default","value":"default"}],"namespace":["page","_body","Agenda","textColor"],"searchable":true,"uid":false},{"type":"object","label":"Agenda Items","name":"agendaItemList","ui":{},"list":true,"fields":[{"type":"string","label":"Placeholder Text","name":"placeholder","namespace":["page","sideBar","Agenda","agendaItemList","placeholder"]},{"type":"rich-text","label":"Body","name":"body","templates":[{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["articlesIndex","_body","Agenda","agendaItemList","body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["articlesIndex","_body","Agenda","agendaItemList","body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["articlesIndex","_body","Agenda","agendaItemList","body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["articlesIndex","_body","Agenda","agendaItemList","body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["articlesIndex","_body","Agenda","agendaItemList","body","VerticalListItem","afterBody"]}],"namespace":["page","afterBody","Agenda","agendaItemList","body","VerticalListItem"]}],"namespace":["page","sideBar","Agenda","agendaItemList","body"]}],"namespace":["page","_body","Agenda","agendaItemList"],"searchable":true,"uid":false}],"namespace":["page","_body","Agenda"]},{"label":"Agreement Form","name":"AgreementForm","ui":{"previewSrc":"/images/thumbs/tina/agreement-form.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["page","_body","AgreementForm","backgroundColor"],"searchable":true,"uid":false},{"type":"object","label":"Form fields","name":"fields","list":true,"fields":[{"type":"string","label":"ID","name":"id","required":true,"namespace":["page","sideBar","AgreementForm","fields","id"]},{"type":"string","label":"Label","name":"label","required":true,"namespace":["page","sideBar","AgreementForm","fields","label"]},{"type":"string","label":"Placeholder","name":"placeholder","namespace":["page","sideBar","AgreementForm","fields","placeholder"]},{"type":"boolean","label":"Resizeable","name":"resizeable","required":true,"namespace":["page","sideBar","AgreementForm","fields","resizeable"]}],"namespace":["page","_body","AgreementForm","fields"],"searchable":true,"uid":false}],"namespace":["page","_body","AgreementForm"]},{"label":"Interest Form","name":"InterestForm","ui":{"previewSrc":"/images/thumbs/tina/interest-form.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["page","_body","InterestForm","buttonText"],"searchable":true,"uid":false}],"namespace":["page","_body","InterestForm"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["page","_body","BookingButton","buttonText"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","namespace":["page","_body","BookingButton","animated"],"searchable":true,"uid":false},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["page","_body","BookingButton","buttonSubtitle"],"searchable":true,"uid":false}],"namespace":["page","_body","BookingButton"]},{"name":"BuiltOnAzure","label":"Built on Azure","ui":{"previewSrc":"/images/thumbs/tina/built-on-azure.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["page","_body","BuiltOnAzure","backgroundColor"],"searchable":true,"uid":false}],"namespace":["page","_body","BuiltOnAzure"]},{"name":"Carousel","label":"Carousel","ui":{"previewSrc":"/images/thumbs/tina/carousel.jpg"},"fields":[{"label":"Items","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Item description","link":"/","openIn":"sameWindow"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["page","sideBar","Carousel","items","label"]},{"type":"string","label":"URL","name":"link","description":"If link contains ssw.com.au, you can skip the full URL and just use the path. e.g. /services","namespace":["page","sideBar","Carousel","items","link"]},{"type":"string","label":"Open in","name":"openIn","description":"If it is external link, please select 'New window' option.","options":[{"label":"Same window","value":"sameWindow"},{"label":"Modal","value":"modal"},{"label":"New window","value":"newWindow"}],"namespace":["page","sideBar","Carousel","items","openIn"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","Carousel","items","imgSrc","uploadDir"]},"namespace":["page","sideBar","Carousel","items","imgSrc"]}],"namespace":["page","_body","Carousel","items"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["page","_body","Carousel","backgroundColor"],"searchable":true,"uid":false},{"type":"number","label":"Delay (Seconds)","name":"delay","required":true,"namespace":["page","_body","Carousel","delay"],"searchable":true,"uid":false},{"type":"boolean","label":"Show on mobile devices","name":"showOnMobileDevices","namespace":["page","_body","Carousel","showOnMobileDevices"],"searchable":true,"uid":false}],"namespace":["page","_body","Carousel"]},{"name":"Citation","label":"Citation","fields":[{"type":"string","label":"author","name":"author","namespace":["page","_body","Citation","author"],"searchable":true,"uid":false},{"type":"string","label":"article","name":"article","required":true,"namespace":["page","_body","Citation","article"],"searchable":true,"uid":false}],"namespace":["page","_body","Citation"]},{"label":"Client List","name":"ClientList","ui":{"previewSrc":"/images/thumbs/tina/clients-list.jpg"},"fields":[{"type":"object","name":"categories","label":"Categories","list":true,"fields":[{"type":"reference","name":"category","label":"Category","collections":["clientCategories"],"namespace":["page","sideBar","ClientList","categories","category"]}],"ui":{},"namespace":["page","_body","ClientList","categories"],"searchable":true,"uid":false},{"type":"object","name":"clients","label":"Clients list","list":true,"ui":{"previewSrc":"/images/thumbs/tina/clients-list.jpg"},"fields":[{"type":"string","name":"name","label":"Name","namespace":["page","sideBar","ClientList","clients","name"]},{"type":"image","name":"logo","label":"Logo","namespace":["page","sideBar","ClientList","clients","logo"]},{"type":"string","name":"logoUrl","label":"Logo URL","namespace":["page","sideBar","ClientList","clients","logoUrl"]},{"type":"rich-text","name":"content","label":"Content","templates":[{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["articlesIndex","_body","ClientList","clients","content","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["articlesIndex","_body","ClientList","clients","content","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["articlesIndex","_body","ClientList","clients","content","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["articlesIndex","_body","ClientList","clients","content","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["articlesIndex","_body","ClientList","clients","content","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["articlesIndex","_body","ClientList","clients","content","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["articlesIndex","_body","ClientList","clients","content","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["articlesIndex","_body","ClientList","clients","content","UtilityButton","openInNewTab"]}],"namespace":["page","afterBody","ClientList","clients","content","UtilityButton"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["articlesIndex","_body","ClientList","clients","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["articlesIndex","_body","ClientList","clients","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["articlesIndex","_body","ClientList","clients","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["articlesIndex","_body","ClientList","clients","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["articlesIndex","_body","ClientList","clients","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["articlesIndex","_body","ClientList","clients","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["articlesIndex","_body","ClientList","clients","content","VideoEmbed","duration"]}],"namespace":["page","afterBody","ClientList","clients","content","VideoEmbed"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["articlesIndex","_body","ClientList","clients","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["articlesIndex","_body","ClientList","clients","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["articlesIndex","_body","ClientList","clients","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["articlesIndex","_body","ClientList","clients","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["articlesIndex","_body","ClientList","clients","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["articlesIndex","_body","ClientList","clients","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["articlesIndex","_body","ClientList","clients","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["articlesIndex","_body","ClientList","clients","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["articlesIndex","_body","ClientList","clients","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["articlesIndex","_body","ClientList","clients","content","CustomImage","sizes"]}],"namespace":["page","afterBody","ClientList","clients","content","CustomImage"]},{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["articlesIndex","_body","ClientList","clients","content","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["articlesIndex","_body","ClientList","clients","content","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["company","_body","ClientList","clients","content","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["company","_body","ClientList","clients","content","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["company","_body","ClientList","clients","content","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["company","_body","ClientList","clients","content","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["company","_body","ClientList","clients","content","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["company","_body","ClientList","clients","content","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["company","_body","ClientList","clients","content","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["company","_body","ClientList","clients","content","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["company","_body","ClientList","clients","content","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["company","_body","ClientList","clients","content","ContentCard","content","CustomImage","sizes"]}],"namespace":["companyIndex","_body","ClientList","clients","content","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["company","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["company","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["company","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["company","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["company","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["companyIndex","_body","ClientList","clients","content","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["company","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["company","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["company","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["company","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["company","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["company","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["company","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","duration"]}],"namespace":["companyIndex","_body","ClientList","clients","content","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["company","_body","ClientList","clients","content","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["company","_body","ClientList","clients","content","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["caseStudy","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["caseStudy","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["caseStudy","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["caseStudy","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["caseStudy","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["company","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["companyIndex","_body","ClientList","clients","content","ContentCard","content","ColorBlock"]}],"namespace":["articlesIndex","_body","ClientList","clients","content","ContentCard","content"]}],"namespace":["page","afterBody","ClientList","clients","content","ContentCard"]}],"namespace":["page","sideBar","ClientList","clients","content"]},{"type":"string","name":"caseStudyUrl","label":"Case study URL","namespace":["page","sideBar","ClientList","clients","caseStudyUrl"]},{"type":"object","name":"categories","label":"Categories","list":true,"ui":{},"fields":[{"type":"reference","name":"category","label":"Category","collections":["clientCategories"],"namespace":["page","afterBody","ClientList","clients","categories","category"]}],"namespace":["page","sideBar","ClientList","clients","categories"]}],"namespace":["page","_body","ClientList","clients"],"searchable":true,"uid":false}],"namespace":["page","_body","ClientList"]},{"name":"ClientLogos","label":"Client Logos","ui":{"previewSrc":"/images/thumbs/tina/client-logos.jpg"},"fields":[{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["page","_body","ClientLogos","altText"],"searchable":true,"uid":false}],"namespace":["page","_body","ClientLogos"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["page","_body","ColorBlock","title"],"searchable":true,"uid":false},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["page","_body","ColorBlock","subTitle"],"searchable":true,"uid":false},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["page","sideBar","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["page","sideBar","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["page","sideBar","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["page","sideBar","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["page","sideBar","ColorBlock","colorRow","caption"]}],"namespace":["page","_body","ColorBlock","colorRow"],"searchable":true,"uid":false}],"namespace":["page","_body","ColorBlock"]},{"name":"ColorPalette","label":"Color Palette","ui":{"previewSrc":"/images/thumbs/tina/color-palette.jpg"},"fields":[{"type":"string","label":"Name","name":"name","namespace":["page","_body","ColorPalette","name"],"searchable":true,"uid":false}],"namespace":["page","_body","ColorPalette"]},{"name":"Content","label":"Content","ui":{"previewSrc":"/images/thumbs/tina/content.jpg","defaultItem":{"body":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["page","_body","Content","title"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["page","afterBody","Content","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["page","afterBody","Content","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["page","afterBody","Content","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["page","afterBody","Content","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["page","afterBody","Content","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["page","afterBody","Content","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["page","afterBody","Content","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["page","afterBody","Content","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["page","afterBody","Content","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["page","afterBody","Content","content","CustomImage","sizes"]}],"namespace":["page","sideBar","Content","content","CustomImage"]},{"name":"ClientLogos","label":"Client Logos","ui":{"previewSrc":"/images/thumbs/tina/client-logos.jpg"},"fields":[{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["page","afterBody","Content","content","ClientLogos","altText"]}],"namespace":["page","sideBar","Content","content","ClientLogos"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["page","afterBody","Content","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["page","afterBody","Content","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["page","afterBody","Content","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["page","afterBody","Content","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["page","afterBody","Content","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["page","afterBody","Content","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["page","afterBody","Content","content","VideoEmbed","duration"]}],"namespace":["page","sideBar","Content","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["page","afterBody","Content","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["page","afterBody","Content","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["articlesIndex","_body","Content","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["articlesIndex","_body","Content","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["articlesIndex","_body","Content","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["articlesIndex","_body","Content","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["articlesIndex","_body","Content","content","ColorBlock","colorRow","caption"]}],"namespace":["page","afterBody","Content","content","ColorBlock","colorRow"]}],"namespace":["page","sideBar","Content","content","ColorBlock"]}],"namespace":["page","_body","Content","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Container Padding","name":"paddingClass","options":["Mobile: No Padding","Mobile: No Top and Horizontal Padding"],"namespace":["page","_body","Content","paddingClass"],"searchable":true,"uid":false},{"type":"string","label":"Text size","name":"size","options":[{"label":"small","value":"sm"},{"label":"normal","value":"base"},{"label":"large","value":"lg"},{"label":"extra large","value":"xl"},{"label":"2x large","value":"2xl"}],"namespace":["page","_body","Content","size"],"searchable":true,"uid":false},{"type":"string","label":"Align","name":"align","options":[{"label":"Left","value":"left"},{"label":"Center","value":"center"},{"label":"Right","value":"right"}],"namespace":["page","_body","Content","align"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["page","_body","Content","backgroundColor"],"searchable":true,"uid":false}],"namespace":["page","_body","Content"]},{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["page","_body","ContentCard","prose"],"searchable":true,"uid":false},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["page","_body","ContentCard","centerAlignedText"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["page","afterBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["page","afterBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["page","afterBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["page","afterBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["page","afterBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["page","afterBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["page","afterBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["page","afterBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["page","afterBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["page","afterBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["page","sideBar","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["page","afterBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["page","afterBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["page","afterBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["page","afterBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["page","afterBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["page","sideBar","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["page","afterBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["page","afterBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["page","afterBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["page","afterBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["page","afterBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["page","afterBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["page","afterBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["page","sideBar","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["page","afterBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["page","afterBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["articlesIndex","_body","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["articlesIndex","_body","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["articlesIndex","_body","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["articlesIndex","_body","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["articlesIndex","_body","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["page","afterBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["page","sideBar","ContentCard","content","ColorBlock"]}],"namespace":["page","_body","ContentCard","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["page","_body","ContentCard"]},{"name":"CustomDownloadButton","label":"Custom Download Button","ui":{"previewSrc":"/images/thumbs/tina/custom-download-button.jpg"},"fields":[{"type":"string","label":"Text","name":"btnText","namespace":["page","_body","CustomDownloadButton","btnText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"btnLink","namespace":["page","_body","CustomDownloadButton","btnLink"],"searchable":true,"uid":false}],"namespace":["page","_body","CustomDownloadButton"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["page","_body","CustomImage","src"],"searchable":false,"uid":false},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["page","_body","CustomImage","altText"],"searchable":true,"uid":false},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["page","_body","CustomImage","alignment"],"searchable":true,"uid":false},{"type":"number","label":"Height","name":"height","required":true,"namespace":["page","_body","CustomImage","height"],"searchable":true,"uid":false},{"type":"number","label":"Width","name":"width","required":true,"namespace":["page","_body","CustomImage","width"],"searchable":true,"uid":false},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["page","_body","CustomImage","link"],"searchable":true,"uid":false},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["page","_body","CustomImage","customClass"],"searchable":true,"uid":false},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["page","_body","CustomImage","caption"],"searchable":true,"uid":false},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["page","_body","CustomImage","captionColor"],"searchable":true,"uid":false},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["page","_body","CustomImage","sizes"],"searchable":true,"uid":false}],"namespace":["page","_body","CustomImage"]},{"name":"DomainFromQuery","label":"Domain from query","ui":{"previewSrc":"/images/thumbs/tina/domain-from-query.jpg"},"fields":[{"name":"title","label":"Title","type":"string","description":"This is a H1 heading","namespace":["page","_body","DomainFromQuery","title"],"searchable":true,"uid":false},{"name":"showDomain","label":"Show domain name","type":"boolean","description":"Query param in URL must have key of 'domain'","namespace":["page","_body","DomainFromQuery","showDomain"],"searchable":true,"uid":false}],"namespace":["page","_body","DomainFromQuery"]},{"name":"DownloadBlock","label":"Download Block","ui":{"previewSrc":"/images/thumbs/tina/download-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["page","_body","DownloadBlock","title"],"searchable":true,"uid":false},{"type":"object","label":"Downloads","name":"downloads","ui":{},"list":true,"fields":[{"type":"string","label":"Header","name":"header","namespace":["page","sideBar","DownloadBlock","downloads","header"]},{"type":"image","label":"Image","name":"img","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","img","uploadDir"]},"namespace":["page","sideBar","DownloadBlock","downloads","img"]},{"type":"string","label":"Image Background","name":"imgBackground","options":["black","grey","white","darkgrey","darkgreen"],"namespace":["page","sideBar","DownloadBlock","downloads","imgBackground"]},{"type":"string","label":"First Link Text","name":"firstLinkText","description":"Defaults to PNG","namespace":["page","sideBar","DownloadBlock","downloads","firstLinkText"]},{"type":"image","label":"First Link","name":"firstLink","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","firstLink","uploadDir"]},"namespace":["page","sideBar","DownloadBlock","downloads","firstLink"]},{"type":"string","label":"Second Link Text","name":"secondLinkText","description":"Defaults to PDF","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","secondLinkText","uploadDir"]},"namespace":["page","sideBar","DownloadBlock","downloads","secondLinkText"]},{"type":"image","label":"Second Link","name":"secondLink","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","secondLink","uploadDir"]},"namespace":["page","sideBar","DownloadBlock","downloads","secondLink"]}],"namespace":["page","_body","DownloadBlock","downloads"],"searchable":true,"uid":false},{"type":"boolean","label":"Bottom border","name":"bottomBorder","namespace":["page","_body","DownloadBlock","bottomBorder"],"searchable":true,"uid":false}],"namespace":["page","_body","DownloadBlock"]},{"name":"DynamicColumns","label":"Dynamic Column Layout","fields":[{"type":"rich-text","label":"Column text body","name":"colBody","required":true,"namespace":["page","_body","DynamicColumns","colBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"number","label":"Number of columns","name":"colCount","required":true,"ui":{},"namespace":["page","_body","DynamicColumns","colCount"],"searchable":true,"uid":false}],"namespace":["page","_body","DynamicColumns"]},{"name":"EventBooking","label":"Events Booking","ui":{"previewSrc":"/images/thumbs/tina/events-booking.jpg"},"fields":[{"type":"number","label":"Duration (In Days)","name":"eventDurationInDays","required":true,"namespace":["page","_body","EventBooking","eventDurationInDays"],"searchable":true,"uid":false},{"type":"number","label":"Price","name":"price","required":true,"namespace":["page","_body","EventBooking","price"],"searchable":true,"uid":false},{"type":"number","label":"Discount Price","name":"discountPrice","namespace":["page","_body","EventBooking","discountPrice"],"searchable":true,"uid":false},{"type":"string","name":"gstText","label":"Select GST Option","options":["inc GST","+ GST"],"required":true,"namespace":["page","_body","EventBooking","gstText"],"searchable":true,"uid":false},{"type":"string","label":"Discount Note","name":"discountNote","namespace":["page","_body","EventBooking","discountNote"],"searchable":true,"uid":false},{"type":"object","label":"Event","name":"eventList","ui":{},"list":true,"fields":[{"type":"string","label":"City","name":"city","namespace":["page","sideBar","EventBooking","eventList","city"]},{"type":"datetime","label":"Start Date","name":"date","ui":{},"namespace":["page","sideBar","EventBooking","eventList","date"]},{"type":"string","label":"Booking URL","name":"bookingURL","namespace":["page","sideBar","EventBooking","eventList","bookingURL"]},{"type":"reference","label":"Location","name":"location","collections":["locations"],"namespace":["page","sideBar","EventBooking","eventList","location"]}],"namespace":["page","_body","EventBooking","eventList"],"searchable":true,"uid":false}],"namespace":["page","_body","EventBooking"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["page","afterBody","EventLink","content","Flag","country"]}],"namespace":["page","sideBar","EventLink","content","Flag"]}],"namespace":["page","_body","EventLink","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Link","name":"link","namespace":["page","_body","EventLink","link"],"searchable":true,"uid":false},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["page","_body","EventLink","eventThumbnail"],"searchable":false,"uid":false},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["page","_body","EventLink","thumbnailAlt"],"searchable":true,"uid":false}],"namespace":["page","_body","EventLink"]},{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["page","_body","Flag","country"],"searchable":true,"uid":false}],"namespace":["page","_body","Flag"]},{"name":"FixedColumns","label":"Fixed Column Layout (2 columns)","ui":{"previewSrc":"/images/thumbs/tina/fixed-columns.jpg"},"fields":[{"type":"rich-text","label":"Header Section (Optional)","name":"headerSection","namespace":["page","_body","FixedColumns","headerSection"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"First column text","name":"firstColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["page","afterBody","FixedColumns","firstColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["page","afterBody","FixedColumns","firstColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["articles","subTitle","FixedColumns","firstColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["articles","subTitle","FixedColumns","firstColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["articles","subTitle","FixedColumns","firstColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["articles","subTitle","FixedColumns","firstColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["articles","subTitle","FixedColumns","firstColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["articles","subTitle","FixedColumns","firstColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["articles","subTitle","FixedColumns","firstColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["articles","subTitle","FixedColumns","firstColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["articles","subTitle","FixedColumns","firstColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["articles","subTitle","FixedColumns","firstColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["articlesIndex","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["articles","subTitle","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["articles","subTitle","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["articles","subTitle","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["articles","subTitle","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["articles","subTitle","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["articlesIndex","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["articles","subTitle","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["articles","subTitle","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["articles","subTitle","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["articles","subTitle","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["articles","subTitle","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["articles","subTitle","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["articles","subTitle","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["articlesIndex","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["articles","subTitle","FixedColumns","firstColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["articles","subTitle","FixedColumns","firstColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["companyIndex","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["companyIndex","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["companyIndex","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["companyIndex","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["companyIndex","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["articles","subTitle","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["articlesIndex","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock"]}],"namespace":["page","afterBody","FixedColumns","firstColBody","ContentCard","content"]}],"namespace":["page","sideBar","FixedColumns","firstColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["page","afterBody","FixedColumns","firstColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["page","afterBody","FixedColumns","firstColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["page","afterBody","FixedColumns","firstColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["page","afterBody","FixedColumns","firstColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["page","afterBody","FixedColumns","firstColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["page","afterBody","FixedColumns","firstColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["page","afterBody","FixedColumns","firstColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["page","afterBody","FixedColumns","firstColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["page","afterBody","FixedColumns","firstColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["page","afterBody","FixedColumns","firstColBody","CustomImage","sizes"]}],"namespace":["page","sideBar","FixedColumns","firstColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["articles","subTitle","FixedColumns","firstColBody","EventLink","content","Flag","country"]}],"namespace":["articlesIndex","_body","FixedColumns","firstColBody","EventLink","content","Flag"]}],"namespace":["page","afterBody","FixedColumns","firstColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["page","afterBody","FixedColumns","firstColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["page","afterBody","FixedColumns","firstColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["page","afterBody","FixedColumns","firstColBody","EventLink","thumbnailAlt"]}],"namespace":["page","sideBar","FixedColumns","firstColBody","EventLink"]}],"namespace":["page","_body","FixedColumns","firstColBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"Second column text","name":"secondColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["page","afterBody","FixedColumns","secondColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["page","afterBody","FixedColumns","secondColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["articles","subTitle","FixedColumns","secondColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["articles","subTitle","FixedColumns","secondColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["articles","subTitle","FixedColumns","secondColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["articles","subTitle","FixedColumns","secondColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["articles","subTitle","FixedColumns","secondColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["articles","subTitle","FixedColumns","secondColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["articles","subTitle","FixedColumns","secondColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["articles","subTitle","FixedColumns","secondColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["articles","subTitle","FixedColumns","secondColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["articles","subTitle","FixedColumns","secondColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["articlesIndex","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["articles","subTitle","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["articles","subTitle","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["articles","subTitle","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["articles","subTitle","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["articles","subTitle","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["articlesIndex","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["articles","subTitle","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["articles","subTitle","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["articles","subTitle","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["articles","subTitle","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["articles","subTitle","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["articles","subTitle","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["articles","subTitle","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["articlesIndex","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["articles","subTitle","FixedColumns","secondColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["articles","subTitle","FixedColumns","secondColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["companyIndex","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["companyIndex","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["companyIndex","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["companyIndex","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["companyIndex","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["articles","subTitle","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["articlesIndex","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock"]}],"namespace":["page","afterBody","FixedColumns","secondColBody","ContentCard","content"]}],"namespace":["page","sideBar","FixedColumns","secondColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["page","afterBody","FixedColumns","secondColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["page","afterBody","FixedColumns","secondColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["page","afterBody","FixedColumns","secondColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["page","afterBody","FixedColumns","secondColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["page","afterBody","FixedColumns","secondColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["page","afterBody","FixedColumns","secondColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["page","afterBody","FixedColumns","secondColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["page","afterBody","FixedColumns","secondColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["page","afterBody","FixedColumns","secondColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["page","afterBody","FixedColumns","secondColBody","CustomImage","sizes"]}],"namespace":["page","sideBar","FixedColumns","secondColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["articles","subTitle","FixedColumns","secondColBody","EventLink","content","Flag","country"]}],"namespace":["articlesIndex","_body","FixedColumns","secondColBody","EventLink","content","Flag"]}],"namespace":["page","afterBody","FixedColumns","secondColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["page","afterBody","FixedColumns","secondColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["page","afterBody","FixedColumns","secondColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["page","afterBody","FixedColumns","secondColBody","EventLink","thumbnailAlt"]}],"namespace":["page","sideBar","FixedColumns","secondColBody","EventLink"]}],"namespace":["page","_body","FixedColumns","secondColBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["page","_body","FixedColumns"]},{"name":"FixedTabsLayout","label":"Fixed Tabs Layout","ui":{"previewSrc":"/images/thumbs/tina/fixed-tabs-layout.jpg"},"fields":[{"type":"string","name":"firstTab","label":"First Tab","namespace":["page","_body","FixedTabsLayout","firstTab"],"searchable":true,"uid":false},{"type":"rich-text","name":"firstHeading","label":"First Heading","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["page","afterBody","FixedTabsLayout","firstHeading","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["page","afterBody","FixedTabsLayout","firstHeading","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["page","afterBody","FixedTabsLayout","firstHeading","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["page","afterBody","FixedTabsLayout","firstHeading","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["page","afterBody","FixedTabsLayout","firstHeading","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["page","afterBody","FixedTabsLayout","firstHeading","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["page","afterBody","FixedTabsLayout","firstHeading","VideoEmbed","duration"]}],"namespace":["page","sideBar","FixedTabsLayout","firstHeading","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["page","afterBody","FixedTabsLayout","firstHeading","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["page","afterBody","FixedTabsLayout","firstHeading","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["page","afterBody","FixedTabsLayout","firstHeading","BookingButton","buttonSubtitle"]}],"namespace":["page","sideBar","FixedTabsLayout","firstHeading","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["page","afterBody","FixedTabsLayout","firstHeading","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["articlesIndex","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["articlesIndex","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["articlesIndex","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["articlesIndex","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList","skills"]}],"namespace":["page","afterBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["articlesIndex","_body","FixedTabsLayout","firstHeading","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["articlesIndex","_body","FixedTabsLayout","firstHeading","ExpertBlock","link","url"]}],"namespace":["page","afterBody","FixedTabsLayout","firstHeading","ExpertBlock","link"]}],"namespace":["page","sideBar","FixedTabsLayout","firstHeading","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["articlesIndex","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["articlesIndex","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["articlesIndex","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["companyIndex","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["companyIndex","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["companyIndex","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["articlesIndex","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["page","afterBody","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["page","sideBar","FixedTabsLayout","firstHeading","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["page","afterBody","FixedTabsLayout","firstHeading","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["page","afterBody","FixedTabsLayout","firstHeading","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["page","afterBody","FixedTabsLayout","firstHeading","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["page","afterBody","FixedTabsLayout","firstHeading","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["page","afterBody","FixedTabsLayout","firstHeading","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["page","afterBody","FixedTabsLayout","firstHeading","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["page","afterBody","FixedTabsLayout","firstHeading","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["page","afterBody","FixedTabsLayout","firstHeading","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["page","afterBody","FixedTabsLayout","firstHeading","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["page","afterBody","FixedTabsLayout","firstHeading","CustomImage","sizes"]}],"namespace":["page","sideBar","FixedTabsLayout","firstHeading","CustomImage"]}],"namespace":["page","_body","FixedTabsLayout","firstHeading"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","name":"firstBody","label":"First Body","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["page","afterBody","FixedTabsLayout","firstBody","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["page","afterBody","FixedTabsLayout","firstBody","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["page","afterBody","FixedTabsLayout","firstBody","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["page","afterBody","FixedTabsLayout","firstBody","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["page","afterBody","FixedTabsLayout","firstBody","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["page","afterBody","FixedTabsLayout","firstBody","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["page","afterBody","FixedTabsLayout","firstBody","VideoEmbed","duration"]}],"namespace":["page","sideBar","FixedTabsLayout","firstBody","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["page","afterBody","FixedTabsLayout","firstBody","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["page","afterBody","FixedTabsLayout","firstBody","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["page","afterBody","FixedTabsLayout","firstBody","BookingButton","buttonSubtitle"]}],"namespace":["page","sideBar","FixedTabsLayout","firstBody","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["page","afterBody","FixedTabsLayout","firstBody","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["articlesIndex","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["articlesIndex","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["articlesIndex","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["articlesIndex","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList","skills"]}],"namespace":["page","afterBody","FixedTabsLayout","firstBody","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["articlesIndex","_body","FixedTabsLayout","firstBody","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["articlesIndex","_body","FixedTabsLayout","firstBody","ExpertBlock","link","url"]}],"namespace":["page","afterBody","FixedTabsLayout","firstBody","ExpertBlock","link"]}],"namespace":["page","sideBar","FixedTabsLayout","firstBody","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["articlesIndex","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["articlesIndex","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["articlesIndex","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["companyIndex","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["companyIndex","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["companyIndex","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["articlesIndex","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["page","afterBody","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["page","sideBar","FixedTabsLayout","firstBody","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["page","afterBody","FixedTabsLayout","firstBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["page","afterBody","FixedTabsLayout","firstBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["page","afterBody","FixedTabsLayout","firstBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["page","afterBody","FixedTabsLayout","firstBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["page","afterBody","FixedTabsLayout","firstBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["page","afterBody","FixedTabsLayout","firstBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["page","afterBody","FixedTabsLayout","firstBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["page","afterBody","FixedTabsLayout","firstBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["page","afterBody","FixedTabsLayout","firstBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["page","afterBody","FixedTabsLayout","firstBody","CustomImage","sizes"]}],"namespace":["page","sideBar","FixedTabsLayout","firstBody","CustomImage"]}],"namespace":["page","_body","FixedTabsLayout","firstBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","name":"secondTab","label":"Second Tab","namespace":["page","_body","FixedTabsLayout","secondTab"],"searchable":true,"uid":false},{"type":"rich-text","name":"secondHeading","label":"Second Heading","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["page","afterBody","FixedTabsLayout","secondHeading","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["page","afterBody","FixedTabsLayout","secondHeading","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["page","afterBody","FixedTabsLayout","secondHeading","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["page","afterBody","FixedTabsLayout","secondHeading","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["page","afterBody","FixedTabsLayout","secondHeading","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["page","afterBody","FixedTabsLayout","secondHeading","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["page","afterBody","FixedTabsLayout","secondHeading","VideoEmbed","duration"]}],"namespace":["page","sideBar","FixedTabsLayout","secondHeading","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["page","afterBody","FixedTabsLayout","secondHeading","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["page","afterBody","FixedTabsLayout","secondHeading","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["page","afterBody","FixedTabsLayout","secondHeading","BookingButton","buttonSubtitle"]}],"namespace":["page","sideBar","FixedTabsLayout","secondHeading","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["page","afterBody","FixedTabsLayout","secondHeading","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["articlesIndex","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["articlesIndex","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["articlesIndex","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["articlesIndex","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList","skills"]}],"namespace":["page","afterBody","FixedTabsLayout","secondHeading","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["articlesIndex","_body","FixedTabsLayout","secondHeading","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["articlesIndex","_body","FixedTabsLayout","secondHeading","ExpertBlock","link","url"]}],"namespace":["page","afterBody","FixedTabsLayout","secondHeading","ExpertBlock","link"]}],"namespace":["page","sideBar","FixedTabsLayout","secondHeading","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["articlesIndex","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["articlesIndex","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["articlesIndex","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["companyIndex","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["companyIndex","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["companyIndex","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["articlesIndex","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["page","afterBody","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["page","sideBar","FixedTabsLayout","secondHeading","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["page","afterBody","FixedTabsLayout","secondHeading","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["page","afterBody","FixedTabsLayout","secondHeading","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["page","afterBody","FixedTabsLayout","secondHeading","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["page","afterBody","FixedTabsLayout","secondHeading","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["page","afterBody","FixedTabsLayout","secondHeading","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["page","afterBody","FixedTabsLayout","secondHeading","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["page","afterBody","FixedTabsLayout","secondHeading","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["page","afterBody","FixedTabsLayout","secondHeading","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["page","afterBody","FixedTabsLayout","secondHeading","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["page","afterBody","FixedTabsLayout","secondHeading","CustomImage","sizes"]}],"namespace":["page","sideBar","FixedTabsLayout","secondHeading","CustomImage"]}],"namespace":["page","_body","FixedTabsLayout","secondHeading"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","name":"secondBody","label":"Second Body","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["page","afterBody","FixedTabsLayout","secondBody","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["page","afterBody","FixedTabsLayout","secondBody","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["page","afterBody","FixedTabsLayout","secondBody","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["page","afterBody","FixedTabsLayout","secondBody","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["page","afterBody","FixedTabsLayout","secondBody","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["page","afterBody","FixedTabsLayout","secondBody","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["page","afterBody","FixedTabsLayout","secondBody","VideoEmbed","duration"]}],"namespace":["page","sideBar","FixedTabsLayout","secondBody","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["page","afterBody","FixedTabsLayout","secondBody","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["page","afterBody","FixedTabsLayout","secondBody","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["page","afterBody","FixedTabsLayout","secondBody","BookingButton","buttonSubtitle"]}],"namespace":["page","sideBar","FixedTabsLayout","secondBody","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["page","afterBody","FixedTabsLayout","secondBody","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["articlesIndex","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["articlesIndex","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["articlesIndex","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["articlesIndex","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList","skills"]}],"namespace":["page","afterBody","FixedTabsLayout","secondBody","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["articlesIndex","_body","FixedTabsLayout","secondBody","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["articlesIndex","_body","FixedTabsLayout","secondBody","ExpertBlock","link","url"]}],"namespace":["page","afterBody","FixedTabsLayout","secondBody","ExpertBlock","link"]}],"namespace":["page","sideBar","FixedTabsLayout","secondBody","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["articlesIndex","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["articlesIndex","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["articlesIndex","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["companyIndex","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["companyIndex","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["companyIndex","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["articlesIndex","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["page","afterBody","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["page","sideBar","FixedTabsLayout","secondBody","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["page","afterBody","FixedTabsLayout","secondBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["page","afterBody","FixedTabsLayout","secondBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["page","afterBody","FixedTabsLayout","secondBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["page","afterBody","FixedTabsLayout","secondBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["page","afterBody","FixedTabsLayout","secondBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["page","afterBody","FixedTabsLayout","secondBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["page","afterBody","FixedTabsLayout","secondBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["page","afterBody","FixedTabsLayout","secondBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["page","afterBody","FixedTabsLayout","secondBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["page","afterBody","FixedTabsLayout","secondBody","CustomImage","sizes"]}],"namespace":["page","sideBar","FixedTabsLayout","secondBody","CustomImage"]}],"namespace":["page","_body","FixedTabsLayout","secondBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["page","_body","FixedTabsLayout"]},{"label":"Google Maps","name":"GoogleMaps","ui":{"previewSrc":"/images/thumbs/tina/google-maps.jpg"},"fields":[{"type":"string","label":"URL","name":"embedUrl","required":true,"namespace":["page","_body","GoogleMaps","embedUrl"],"searchable":true,"uid":false},{"type":"string","label":"Width","name":"embedWidth","namespace":["page","_body","GoogleMaps","embedWidth"],"searchable":true,"uid":false},{"type":"string","label":"Height","name":"embedHeight","namespace":["page","_body","GoogleMaps","embedHeight"],"searchable":true,"uid":false}],"namespace":["page","_body","GoogleMaps"]},{"label":"Grid Layout","name":"GridLayout","ui":{"previewSrc":"/images/thumbs/tina/grid-layout.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["page","_body","GridLayout","title"],"searchable":true,"uid":false},{"type":"object","list":true,"label":"Grid Items","name":"grids","ui":{},"fields":[{"type":"string","label":"Grid Title","name":"gridTitle","namespace":["page","sideBar","GridLayout","grids","gridTitle"]},{"type":"boolean","label":"Show Grid Title","name":"showGridTitle","namespace":["page","sideBar","GridLayout","grids","showGridTitle"]},{"type":"boolean","label":"Centered Grid Title","name":"centeredGridTitle","namespace":["page","sideBar","GridLayout","grids","centeredGridTitle"]},{"type":"boolean","label":"Show Header Divider","name":"showHeaderDivider","namespace":["page","sideBar","GridLayout","grids","showHeaderDivider"]},{"type":"boolean","label":"Offset Grid Start","name":"offsetGridStart","namespace":["page","sideBar","GridLayout","grids","offsetGridStart"]},{"type":"object","label":"Blocks","name":"blocks","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["page","afterBody","GridLayout","grids","blocks","title"]},{"type":"boolean","label":"Show Title","name":"showTitle","namespace":["page","afterBody","GridLayout","grids","blocks","showTitle"]},{"type":"image","label":"Image","name":"image","uploadDir":{"namespace":["page","beforeBody","GridLayout","grids","blocks","image","uploadDir"]},"namespace":["page","afterBody","GridLayout","grids","blocks","image"]},{"type":"image","label":"Related Image","name":"relatedImage","uploadDir":{"namespace":["page","beforeBody","GridLayout","grids","blocks","relatedImage","uploadDir"]},"namespace":["page","afterBody","GridLayout","grids","blocks","relatedImage"]},{"type":"rich-text","name":"linkContent","label":"Link Content","templates":[{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["companyIndex","_body","GridLayout","grids","blocks","linkContent","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["companyIndex","_body","GridLayout","grids","blocks","linkContent","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["companyIndex","_body","GridLayout","grids","blocks","linkContent","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["companyIndex","_body","GridLayout","grids","blocks","linkContent","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["companyIndex","_body","GridLayout","grids","blocks","linkContent","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["companyIndex","_body","GridLayout","grids","blocks","linkContent","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["companyIndex","_body","GridLayout","grids","blocks","linkContent","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["companyIndex","_body","GridLayout","grids","blocks","linkContent","UtilityButton","openInNewTab"]}],"namespace":["articlesIndex","_body","GridLayout","grids","blocks","linkContent","UtilityButton"]}],"namespace":["page","afterBody","GridLayout","grids","blocks","linkContent"]}],"namespace":["page","sideBar","GridLayout","grids","blocks"]}],"namespace":["page","_body","GridLayout","grids"],"searchable":true,"uid":false}],"namespace":["page","_body","GridLayout"]},{"name":"Hero","label":"Hero","ui":{"previewSrc":"/blocks/hero.png","defaultItem":{"tagline":"Here's some text above the other text","headline":"This Big Text is Totally Awesome","text":"Phasellus scelerisque, libero eu finibus rutrum, risus risus accumsan libero, nec molestie urna dui a leo."}},"fields":[{"type":"string","label":"Tagline","name":"tagline","namespace":["page","_body","Hero","tagline"],"searchable":true,"uid":false},{"type":"string","label":"Headline","name":"headline","namespace":["page","_body","Hero","headline"],"searchable":true,"uid":false},{"label":"Text","name":"text","type":"rich-text","namespace":["page","_body","Hero","text"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"label":"Actions","name":"actions","type":"object","list":true,"ui":{"defaultItem":{"label":"Action Label","type":"button","icon":true,"link":"/"}},"fields":[{"label":"Label","name":"label","type":"string","namespace":["page","sideBar","Hero","actions","label"]},{"label":"Type","name":"type","type":"string","options":[{"label":"Button","value":"button"},{"label":"Link","value":"link"}],"namespace":["page","sideBar","Hero","actions","type"]},{"label":"Icon","name":"icon","type":"boolean","namespace":["page","sideBar","Hero","actions","icon"]},{"label":"Link","name":"link","type":"string","namespace":["page","sideBar","Hero","actions","link"]}],"namespace":["page","_body","Hero","actions"],"searchable":true,"uid":false},{"type":"object","label":"Image","name":"image","fields":[{"name":"src","label":"Image Source","type":"image","namespace":["page","sideBar","Hero","image","src"]},{"name":"alt","label":"Alt Text","type":"string","namespace":["page","sideBar","Hero","image","alt"]}],"namespace":["page","_body","Hero","image"],"searchable":true,"uid":false},{"type":"string","label":"Color","name":"color","options":[{"label":"Default","value":"default"},{"label":"Tint","value":"tint"},{"label":"Primary","value":"primary"}],"namespace":["page","_body","Hero","color"],"searchable":true,"uid":false}],"namespace":["page","_body","Hero"]},{"name":"HorizontalCard","label":"Horizontal Card","ui":{"previewSrc":"/images/thumbs/tina/horizontal-card.jpg"},"fields":[{"type":"object","label":"Cards","name":"cardList","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["page","sideBar","HorizontalCard","cardList","title"]},{"type":"rich-text","label":"Content","name":"content","namespace":["page","sideBar","HorizontalCard","cardList","content"]},{"type":"image","label":"Thumbnail","name":"thumbnail","uploadDir":{"namespace":["page","beforeBody","HorizontalCard","cardList","thumbnail","uploadDir"]},"namespace":["page","sideBar","HorizontalCard","cardList","thumbnail"]},{"type":"string","label":"Link","name":"link","namespace":["page","sideBar","HorizontalCard","cardList","link"]}],"namespace":["page","_body","HorizontalCard","cardList"],"searchable":true,"uid":false},{"type":"object","label":"Button","name":"button","fields":[{"type":"string","label":"Text","name":"text","namespace":["page","sideBar","HorizontalCard","button","text"]},{"type":"string","label":"Link","name":"link","namespace":["page","sideBar","HorizontalCard","button","link"]}],"namespace":["page","_body","HorizontalCard","button"],"searchable":true,"uid":false}],"namespace":["page","_body","HorizontalCard"]},{"name":"InternalCarousel","label":"Internal Carousel","ui":{"previewSrc":"/images/thumbs/tina/internal-carousel.jpg"},"fields":[{"label":"Images","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Image description"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["page","sideBar","InternalCarousel","items","label"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","InternalCarousel","items","imgSrc","uploadDir"]},"namespace":["page","sideBar","InternalCarousel","items","imgSrc"]}],"namespace":["page","_body","InternalCarousel","items"],"searchable":true,"uid":false},{"type":"string","label":"Header","name":"header","namespace":["page","_body","InternalCarousel","header"],"searchable":true,"uid":false},{"type":"rich-text","label":"Text","name":"paragraph","isBody":false,"namespace":["page","_body","InternalCarousel","paragraph"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Website","name":"website","namespace":["page","_body","InternalCarousel","website"],"searchable":true,"uid":false},{"type":"object","label":"Technologies","name":"technologies","list":true,"ui":{},"fields":[{"type":"string","label":"Name","name":"name","namespace":["page","sideBar","InternalCarousel","technologies","name"]}],"namespace":["page","_body","InternalCarousel","technologies"],"searchable":true,"uid":false},{"type":"string","label":"Case Study","name":"caseStudyUrl","namespace":["page","_body","InternalCarousel","caseStudyUrl"],"searchable":true,"uid":false},{"type":"string","label":"Video URL","name":"videoUrl","namespace":["page","_body","InternalCarousel","videoUrl"],"searchable":true,"uid":false}],"namespace":["page","_body","InternalCarousel"]},{"label":"Join As Presenter","name":"joinAsPresenter","fields":[{"label":"Learn More Link","name":"link","type":"string","namespace":["page","_body","joinAsPresenter","link"],"searchable":true,"uid":false},{"label":"Image","name":"img","type":"image","namespace":["page","_body","joinAsPresenter","img"],"searchable":false,"uid":false}],"namespace":["page","_body","joinAsPresenter"]},{"label":"Join Github","name":"joinGithub","ui":{"previewSrc":"/images/thumbs/tina/join-github.jpg"},"fields":[{"label":"Title","name":"title","type":"string","namespace":["page","_body","joinGithub","title"],"searchable":true,"uid":false},{"label":"Join Github Link","name":"link","type":"string","namespace":["page","_body","joinGithub","link"],"searchable":true,"uid":false}],"namespace":["page","_body","joinGithub"]},{"name":"JotFormEmbed","label":"JotForm Embed","ui":{"previewSrc":"/images/thumbs/tina/jotform-embed.jpg"},"fields":[{"type":"string","name":"jotFormId","label":"JotForm Id","required":true,"namespace":["page","_body","JotFormEmbed","jotFormId"],"searchable":true,"uid":false},{"type":"string","label":"Button Text","name":"buttonText","namespace":["page","_body","JotFormEmbed","buttonText"],"searchable":true,"uid":false},{"type":"string","name":"containerClass","label":"Container Class","namespace":["page","_body","JotFormEmbed","containerClass"],"searchable":true,"uid":false},{"type":"string","label":"Button Class","name":"buttonClass","namespace":["page","_body","JotFormEmbed","buttonClass"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","namespace":["page","_body","JotFormEmbed","animated"],"searchable":true,"uid":false}],"namespace":["page","_body","JotFormEmbed"]},{"name":"LatestTech","label":"Latest Tech","ui":{"previewSrc":"/images/thumbs/tina/latest-tech.jpg"},"fields":[{"type":"reference","description":"Select a config file including a set of badges","collections":["userGroupGlobal"],"label":"Badges","name":"badges","namespace":["page","_body","LatestTech","badges"],"searchable":true,"uid":false}],"namespace":["page","_body","LatestTech"]},{"name":"LocationBlock","label":"Locations","ui":{"previewSrc":"/images/thumbs/tina/locations.jpg"},"fields":[{"type":"string","name":"title","label":"Title","namespace":["page","_body","LocationBlock","title"],"searchable":true,"uid":false},{"type":"object","label":"Location List","name":"locationList","list":true,"ui":{},"fields":[{"type":"reference","collections":["locations"],"label":"Location","name":"location","namespace":["page","sideBar","LocationBlock","locationList","location"]}],"namespace":["page","_body","LocationBlock","locationList"],"searchable":true,"uid":false},{"type":"object","name":"chapelWebsite","label":"Chapel Website","fields":[{"type":"string","name":"title","label":"Text","namespace":["page","sideBar","LocationBlock","chapelWebsite","title"]},{"type":"string","name":"URL","label":"URL","namespace":["page","sideBar","LocationBlock","chapelWebsite","URL"]}],"namespace":["page","_body","LocationBlock","chapelWebsite"],"searchable":true,"uid":false}],"namespace":["page","_body","LocationBlock"]},{"name":"NewslettersTable","label":"Newsletters Table","ui":{"previewSrc":"/images/thumbs/tina/newsletters-table.jpg"},"fields":[{"type":"string","label":"Header text","name":"headerText","namespace":["page","_body","NewslettersTable","headerText"],"searchable":true,"uid":false}],"namespace":["page","_body","NewslettersTable"]},{"label":"Organizer","name":"organizer","fields":[{"type":"image","label":"Profile Image","name":"profileImg","namespace":["page","_body","organizer","profileImg"],"searchable":false,"uid":false},{"type":"string","label":"Profile Link","name":"profileLink","namespace":["page","_body","organizer","profileLink"],"searchable":true,"uid":false},{"type":"string","label":"Name","name":"name","namespace":["page","_body","organizer","name"],"searchable":true,"uid":false},{"type":"string","label":"Position","name":"position","namespace":["page","_body","organizer","position"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","namespace":["page","_body","organizer","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["page","_body","organizer"]},{"label":"Payment Block","name":"paymentBlock","ui":{"previewSrc":"/images/thumbs/tina/payment-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["page","_body","paymentBlock","title"],"searchable":true,"uid":false},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["page","_body","paymentBlock","subTitle"],"searchable":true,"uid":false},{"type":"reference","label":"Payment Links","name":"payments","collections":["paymentDetails"],"namespace":["page","_body","paymentBlock","payments"],"searchable":true,"uid":false},{"type":"rich-text","label":"Footer","name":"footer","namespace":["page","_body","paymentBlock","footer"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"image","label":"Credit Cards Image","name":"creditImgSrc","namespace":["page","_body","paymentBlock","creditImgSrc"],"searchable":false,"uid":false},{"type":"string","label":"Alt Text","name":"altTxt","namespace":["page","_body","paymentBlock","altTxt"],"searchable":true,"uid":false}],"namespace":["page","_body","paymentBlock"]},{"name":"PresenterBlock","label":"Presenters","ui":{"previewSrc":"/images/thumbs/tina/presenters.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["page","_body","PresenterBlock","header"],"searchable":true,"uid":false},{"type":"object","name":"presenterList","label":"Presenters","list":true,"ui":{},"fields":[{"type":"reference","name":"presenter","label":"Presenters","collections":["presenter"],"namespace":["page","sideBar","PresenterBlock","presenterList","presenter"]}],"namespace":["page","_body","PresenterBlock","presenterList"],"searchable":true,"uid":false},{"type":"object","label":"Other Events","name":"otherEvent","fields":[{"type":"string","label":"Title","name":"title","namespace":["page","sideBar","PresenterBlock","otherEvent","title"]},{"type":"string","label":"URL","name":"eventURL","namespace":["page","sideBar","PresenterBlock","otherEvent","eventURL"]}],"namespace":["page","_body","PresenterBlock","otherEvent"],"searchable":true,"uid":false}],"namespace":["page","_body","PresenterBlock"]},{"label":"Recurring Event","name":"RecurringEvent","ui":{"previewSrc":"/images/thumbs/tina/recurring-event.jpg"},"fields":[{"type":"string","label":"Apply Link Redirect","name":"applyLinkRedirect","namespace":["page","_body","RecurringEvent","applyLinkRedirect"],"searchable":true,"uid":false},{"type":"string","label":"Day","name":"day","options":[{"label":"Monday","value":"monday"},{"label":"Tuesday","value":"tuesday"},{"label":"Wednesday","value":"wednesday"},{"label":"Thursday","value":"thursday"},{"label":"Friday","value":"friday"},{"label":"Saturday","value":"saturday"},{"label":"Sunday","value":"sunday"}],"required":true,"namespace":["page","_body","RecurringEvent","day"],"searchable":true,"uid":false}],"namespace":["page","_body","RecurringEvent"]},{"name":"SectionHeader","label":"Section Header","ui":{"previewSrc":"/images/thumbs/tina/section-header.jpg"},"fields":[{"type":"string","label":"Header Text","name":"headerText","namespace":["page","_body","SectionHeader","headerText"],"searchable":true,"uid":false}],"namespace":["page","_body","SectionHeader"]},{"name":"ServiceCards","label":"Service Cards","ui":{"previewSrc":"/images/thumbs/tina/services-cards.jpg"},"fields":[{"type":"string","label":"Big Cards Label","name":"bigCardsLabel","namespace":["page","_body","ServiceCards","bigCardsLabel"],"searchable":true,"uid":false},{"label":"Big Cards","name":"bigCards","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["page","sideBar","ServiceCards","bigCards","title"]},{"type":"string","label":"Description","component":"textarea","name":"description","namespace":["page","sideBar","ServiceCards","bigCards","description"]},{"type":"string","label":"URL","name":"link","namespace":["page","sideBar","ServiceCards","bigCards","link"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Red","value":"red"},{"label":"Light Gray","value":"lightgray"},{"label":"Medium Gray","value":"mediumgray"},{"label":"Dark Gray","value":"darkgray"}],"namespace":["page","sideBar","ServiceCards","bigCards","color"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","ServiceCards","bigCards","imgSrc","uploadDir"]},"namespace":["page","sideBar","ServiceCards","bigCards","imgSrc"]}],"namespace":["page","_body","ServiceCards","bigCards"],"searchable":true,"uid":false},{"type":"string","label":"Small Cards Label","name":"smallCardsLabel","namespace":["page","_body","ServiceCards","smallCardsLabel"],"searchable":true,"uid":false},{"label":"Small Cards","name":"smallCards","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["page","sideBar","ServiceCards","smallCards","title"]},{"type":"string","label":"URL","name":"link","namespace":["page","sideBar","ServiceCards","smallCards","link"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Red","value":"red"},{"label":"Light Gray","value":"lightgray"},{"label":"Medium Gray","value":"mediumgray"},{"label":"Dark Gray","value":"darkgray"}],"namespace":["page","sideBar","ServiceCards","smallCards","color"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","ServiceCards","smallCards","imgSrc","uploadDir"]},"namespace":["page","sideBar","ServiceCards","smallCards","imgSrc"]},{"type":"boolean","label":"External Page","description":"Select this if the link is not part of the website. This includes SSW.Rules, and SSW.People links","name":"isExternal","namespace":["page","sideBar","ServiceCards","smallCards","isExternal"]}],"namespace":["page","_body","ServiceCards","smallCards"],"searchable":true,"uid":false},{"label":"Links","name":"links","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["page","sideBar","ServiceCards","links","label"]},{"type":"string","label":"URL","name":"link","namespace":["page","sideBar","ServiceCards","links","link"]}],"namespace":["page","_body","ServiceCards","links"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["page","_body","ServiceCards","backgroundColor"],"searchable":true,"uid":false}],"namespace":["page","_body","ServiceCards"]},{"label":"Table Layout","name":"TableLayout","ui":{"previewSrc":"/images/thumbs/tina/table-layout.jpg"},"fields":[{"label":"Table Style","name":"tableStyle","type":"string","options":["none","basicBorder","styled","benefits"],"namespace":["page","_body","TableLayout","tableStyle"],"searchable":true,"uid":false},{"label":"First column bolded + left aligned","name":"firstColBold","type":"boolean","required":false,"namespace":["page","_body","TableLayout","firstColBold"],"searchable":true,"uid":false},{"type":"string","label":"Table Headers","name":"headers","list":true,"namespace":["page","_body","TableLayout","headers"],"searchable":true,"uid":false},{"type":"object","label":"Rows","name":"rows","list":true,"fields":[{"type":"object","label":"Cells","name":"cells","list":true,"fields":[{"type":"string","label":"Value","name":"cellValue","required":true,"component":{"namespace":["page","beforeBody","TableLayout","rows","cells","cellValue",""]},"namespace":["page","afterBody","TableLayout","rows","cells","cellValue"]}],"ui":{},"namespace":["page","sideBar","TableLayout","rows","cells"]},{"type":"boolean","label":"Is Heading","name":"isHeader","required":false,"namespace":["page","sideBar","TableLayout","rows","isHeader"]}],"ui":{},"namespace":["page","_body","TableLayout","rows"],"searchable":true,"uid":false}],"namespace":["page","_body","TableLayout"]},{"name":"TestimonialsList","label":"Testimonials List","ui":{"previewSrc":"/images/thumbs/tina/testimonials.jpg"},"fields":[{"type":"object","label":"Exclude Categories","name":"excludedCategories","ui":{},"list":true,"fields":[{"type":"reference","label":"Category Name","name":"categoryName","collections":["testimonialCategories"],"namespace":["page","sideBar","TestimonialsList","excludedCategories","categoryName"]}],"namespace":["page","_body","TestimonialsList","excludedCategories"],"searchable":true,"uid":false}],"namespace":["page","_body","TestimonialsList"]},{"label":"Training Information","name":"TrainingInformation","ui":{"previewSrc":"/images/thumbs/tina/training-information.jpg"},"fields":[{"type":"object","label":"Training Information Items","name":"trainingInformationItems","list":true,"fields":[{"type":"string","label":"Header","name":"header","namespace":["page","sideBar","TrainingInformation","trainingInformationItems","header"]},{"type":"rich-text","label":"Body","name":"body","templates":[{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["articlesIndex","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["articlesIndex","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["articlesIndex","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["articlesIndex","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["articlesIndex","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","afterBody"]}],"namespace":["page","afterBody","TrainingInformation","trainingInformationItems","body","VerticalListItem"]},{"label":"Recurring Event","name":"RecurringEvent","ui":{"previewSrc":"/images/thumbs/tina/recurring-event.jpg"},"fields":[{"type":"string","label":"Apply Link Redirect","name":"applyLinkRedirect","namespace":["articlesIndex","_body","TrainingInformation","trainingInformationItems","body","RecurringEvent","applyLinkRedirect"]},{"type":"string","label":"Day","name":"day","options":[{"label":"Monday","value":"monday"},{"label":"Tuesday","value":"tuesday"},{"label":"Wednesday","value":"wednesday"},{"label":"Thursday","value":"thursday"},{"label":"Friday","value":"friday"},{"label":"Saturday","value":"saturday"},{"label":"Sunday","value":"sunday"}],"required":true,"namespace":["articlesIndex","_body","TrainingInformation","trainingInformationItems","body","RecurringEvent","day"]}],"namespace":["page","afterBody","TrainingInformation","trainingInformationItems","body","RecurringEvent"]}],"namespace":["page","sideBar","TrainingInformation","trainingInformationItems","body"]}],"namespace":["page","_body","TrainingInformation","trainingInformationItems"],"searchable":true,"uid":false}],"namespace":["page","_body","TrainingInformation"]},{"label":"Training Learning Outcomes","name":"TrainingLearningOutcome","ui":{"previewSrc":"/images/thumbs/tina/training-learning-outcomes.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["page","_body","TrainingLearningOutcome","header"],"searchable":true,"uid":false},{"type":"object","label":"List Items","name":"listItems","list":true,"fields":[{"type":"string","label":"Title","name":"title","namespace":["page","sideBar","TrainingLearningOutcome","listItems","title"]},{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["page","sideBar","TrainingLearningOutcome","listItems","content"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","TrainingLearningOutcome","listItems","icon","uploadDir"]},"namespace":["page","sideBar","TrainingLearningOutcome","listItems","icon"]}],"namespace":["page","_body","TrainingLearningOutcome","listItems"],"searchable":true,"uid":false}],"namespace":["page","_body","TrainingLearningOutcome"]},{"label":"Tweet Embed","name":"TweetEmbed","ui":{"previewSrc":"/images/thumbs/tina/tweet-embed.jpg"},"fields":[{"type":"string","name":"url","label":"Tweet URL","required":true,"namespace":["page","_body","TweetEmbed","url"],"searchable":true,"uid":false}],"namespace":["page","_body","TweetEmbed"]},{"name":"UpcomingEvents","label":"Upcoming Events","ui":{"previewSrc":"/images/thumbs/tina/upcoming-events.jpg","defaultItem":{"title":"Upcoming Events","numberOfEvents":30}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["page","_body","UpcomingEvents","title"],"searchable":true,"uid":false},{"type":"number","label":"Number of Events","name":"numberOfEvents","namespace":["page","_body","UpcomingEvents","numberOfEvents"],"searchable":true,"uid":false}],"namespace":["page","_body","UpcomingEvents"]},{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["page","_body","UtilityButton","buttonText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"link","required":false,"namespace":["page","_body","UtilityButton","link"],"searchable":true,"uid":false},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["page","_body","UtilityButton","size"],"searchable":true,"uid":false},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["page","_body","UtilityButton","btnIcon"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["page","_body","UtilityButton","animated"],"searchable":true,"uid":false},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["page","_body","UtilityButton","uncentered"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["page","_body","UtilityButton","removeTopMargin"],"searchable":true,"uid":false},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["page","_body","UtilityButton","openInNewTab"],"searchable":true,"uid":false}],"namespace":["page","_body","UtilityButton"]},{"name":"VerticalImageLayout","label":"Vertical Image Layout","fields":[{"type":"image","label":"Image","name":"imageSrc","uploadDir":{"namespace":["page","beforeBody","VerticalImageLayout","imageSrc","uploadDir"]},"namespace":["page","_body","VerticalImageLayout","imageSrc"],"searchable":false,"uid":false},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["page","_body","VerticalImageLayout","altText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"imageLink","namespace":["page","_body","VerticalImageLayout","imageLink"],"searchable":true,"uid":false},{"type":"number","label":"Height","name":"height","required":true,"namespace":["page","_body","VerticalImageLayout","height"],"searchable":true,"uid":false},{"type":"number","label":"Width","name":"width","required":true,"namespace":["page","_body","VerticalImageLayout","width"],"searchable":true,"uid":false},{"type":"rich-text","label":"Message","name":"message","required":true,"namespace":["page","_body","VerticalImageLayout","message"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["page","_body","VerticalImageLayout","sizes"],"searchable":true,"uid":false}],"namespace":["page","_body","VerticalImageLayout"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["page","_body","VerticalListItem","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"number","label":"Index number","name":"index","namespace":["page","_body","VerticalListItem","index"],"searchable":true,"uid":false},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["page","_body","VerticalListItem","icon"],"searchable":false,"uid":false},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["page","_body","VerticalListItem","iconScale"],"searchable":true,"uid":false},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["page","_body","VerticalListItem","afterBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["page","_body","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["page","_body","VideoEmbed","url"],"searchable":true,"uid":false},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["page","_body","VideoEmbed","videoWidth"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["page","_body","VideoEmbed","removeMargin"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["page","_body","VideoEmbed","uncentre"],"searchable":true,"uid":false},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["page","_body","VideoEmbed","overflow"],"searchable":true,"uid":false},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["page","_body","VideoEmbed","caption"],"searchable":true,"uid":false},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["page","_body","VideoEmbed","duration"],"searchable":true,"uid":false}],"namespace":["page","_body","VideoEmbed"]},{"name":"InlineJotForm","label":"In-line JotForm","ui":{"previewSrc":"/images/thumbs/tina/inline-jot-form.jpg"},"fields":[{"type":"string","name":"title","label":"Title","description":"Optional title for JotForm","namespace":["page","_body","InlineJotForm","title"],"searchable":true,"uid":false},{"type":"string","name":"jotFormId","label":"JotForm ID","required":true,"namespace":["page","_body","InlineJotForm","jotFormId"],"searchable":true,"uid":false},{"type":"string","name":"additionalClasses","label":"Additional classnames","description":"Optional styling for iframe element only","namespace":["page","_body","InlineJotForm","additionalClasses"],"searchable":true,"uid":false}],"namespace":["page","_body","InlineJotForm"]}],"isBody":true,"namespace":["page","_body"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"boolean","label":"Remove body top margin","name":"removeBodyTopMargin","namespace":["page","removeBodyTopMargin"],"searchable":true,"uid":false},{"type":"object","list":true,"name":"sideBar","label":"Side Bar","ui":{"visualSelector":true},"templates":[{"name":"AboutUs","label":"About Us","ui":{"previewSrc":"/images/thumbs/tina/about-us.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["page","sideBar","AboutUs","backgroundColor"],"searchable":true,"uid":false},{"type":"boolean","label":"Show Map","name":"showMap","required":false,"namespace":["page","sideBar","AboutUs","showMap"],"searchable":true,"uid":false}],"namespace":["page","sideBar","AboutUs"]},{"label":"Agenda","name":"Agenda","ui":{"previewSrc":"/images/thumbs/tina/agenda.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["page","sideBar","Agenda","header"],"searchable":true,"uid":false},{"type":"string","label":"Header Color","name":"textColor","options":[{"label":"Red","value":"red"},{"label":"Gray","value":"gray"},{"label":"Default","value":"default"}],"namespace":["page","sideBar","Agenda","textColor"],"searchable":true,"uid":false},{"type":"object","label":"Agenda Items","name":"agendaItemList","ui":{},"list":true,"fields":[{"type":"string","label":"Placeholder Text","name":"placeholder","namespace":["page","afterBody","Agenda","agendaItemList","placeholder"]},{"type":"rich-text","label":"Body","name":"body","templates":[{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["companyIndex","_body","Agenda","agendaItemList","body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["companyIndex","_body","Agenda","agendaItemList","body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["companyIndex","_body","Agenda","agendaItemList","body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["companyIndex","_body","Agenda","agendaItemList","body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["companyIndex","_body","Agenda","agendaItemList","body","VerticalListItem","afterBody"]}],"namespace":["articlesIndex","_body","Agenda","agendaItemList","body","VerticalListItem"]}],"namespace":["page","afterBody","Agenda","agendaItemList","body"]}],"namespace":["page","sideBar","Agenda","agendaItemList"],"searchable":true,"uid":false}],"namespace":["page","sideBar","Agenda"]},{"label":"Agreement Form","name":"AgreementForm","ui":{"previewSrc":"/images/thumbs/tina/agreement-form.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["page","sideBar","AgreementForm","backgroundColor"],"searchable":true,"uid":false},{"type":"object","label":"Form fields","name":"fields","list":true,"fields":[{"type":"string","label":"ID","name":"id","required":true,"namespace":["page","afterBody","AgreementForm","fields","id"]},{"type":"string","label":"Label","name":"label","required":true,"namespace":["page","afterBody","AgreementForm","fields","label"]},{"type":"string","label":"Placeholder","name":"placeholder","namespace":["page","afterBody","AgreementForm","fields","placeholder"]},{"type":"boolean","label":"Resizeable","name":"resizeable","required":true,"namespace":["page","afterBody","AgreementForm","fields","resizeable"]}],"namespace":["page","sideBar","AgreementForm","fields"],"searchable":true,"uid":false}],"namespace":["page","sideBar","AgreementForm"]},{"label":"Interest Form","name":"InterestForm","ui":{"previewSrc":"/images/thumbs/tina/interest-form.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["page","sideBar","InterestForm","buttonText"],"searchable":true,"uid":false}],"namespace":["page","sideBar","InterestForm"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["page","sideBar","BookingButton","buttonText"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","namespace":["page","sideBar","BookingButton","animated"],"searchable":true,"uid":false},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["page","sideBar","BookingButton","buttonSubtitle"],"searchable":true,"uid":false}],"namespace":["page","sideBar","BookingButton"]},{"name":"BuiltOnAzure","label":"Built on Azure","ui":{"previewSrc":"/images/thumbs/tina/built-on-azure.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["page","sideBar","BuiltOnAzure","backgroundColor"],"searchable":true,"uid":false}],"namespace":["page","sideBar","BuiltOnAzure"]},{"name":"Carousel","label":"Carousel","ui":{"previewSrc":"/images/thumbs/tina/carousel.jpg"},"fields":[{"label":"Items","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Item description","link":"/","openIn":"sameWindow"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["page","afterBody","Carousel","items","label"]},{"type":"string","label":"URL","name":"link","description":"If link contains ssw.com.au, you can skip the full URL and just use the path. e.g. /services","namespace":["page","afterBody","Carousel","items","link"]},{"type":"string","label":"Open in","name":"openIn","description":"If it is external link, please select 'New window' option.","options":[{"label":"Same window","value":"sameWindow"},{"label":"Modal","value":"modal"},{"label":"New window","value":"newWindow"}],"namespace":["page","afterBody","Carousel","items","openIn"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","Carousel","items","imgSrc","uploadDir"]},"namespace":["page","afterBody","Carousel","items","imgSrc"]}],"namespace":["page","sideBar","Carousel","items"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["page","sideBar","Carousel","backgroundColor"],"searchable":true,"uid":false},{"type":"number","label":"Delay (Seconds)","name":"delay","required":true,"namespace":["page","sideBar","Carousel","delay"],"searchable":true,"uid":false},{"type":"boolean","label":"Show on mobile devices","name":"showOnMobileDevices","namespace":["page","sideBar","Carousel","showOnMobileDevices"],"searchable":true,"uid":false}],"namespace":["page","sideBar","Carousel"]},{"name":"Citation","label":"Citation","fields":[{"type":"string","label":"author","name":"author","namespace":["page","sideBar","Citation","author"],"searchable":true,"uid":false},{"type":"string","label":"article","name":"article","required":true,"namespace":["page","sideBar","Citation","article"],"searchable":true,"uid":false}],"namespace":["page","sideBar","Citation"]},{"label":"Client List","name":"ClientList","ui":{"previewSrc":"/images/thumbs/tina/clients-list.jpg"},"fields":[{"type":"object","name":"categories","label":"Categories","list":true,"fields":[{"type":"reference","name":"category","label":"Category","collections":["clientCategories"],"namespace":["page","afterBody","ClientList","categories","category"]}],"ui":{},"namespace":["page","sideBar","ClientList","categories"],"searchable":true,"uid":false},{"type":"object","name":"clients","label":"Clients list","list":true,"ui":{"previewSrc":"/images/thumbs/tina/clients-list.jpg"},"fields":[{"type":"string","name":"name","label":"Name","namespace":["page","afterBody","ClientList","clients","name"]},{"type":"image","name":"logo","label":"Logo","namespace":["page","afterBody","ClientList","clients","logo"]},{"type":"string","name":"logoUrl","label":"Logo URL","namespace":["page","afterBody","ClientList","clients","logoUrl"]},{"type":"rich-text","name":"content","label":"Content","templates":[{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["companyIndex","_body","ClientList","clients","content","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["companyIndex","_body","ClientList","clients","content","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["companyIndex","_body","ClientList","clients","content","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["companyIndex","_body","ClientList","clients","content","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["companyIndex","_body","ClientList","clients","content","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["companyIndex","_body","ClientList","clients","content","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["companyIndex","_body","ClientList","clients","content","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["companyIndex","_body","ClientList","clients","content","UtilityButton","openInNewTab"]}],"namespace":["articlesIndex","_body","ClientList","clients","content","UtilityButton"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["companyIndex","_body","ClientList","clients","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["companyIndex","_body","ClientList","clients","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["companyIndex","_body","ClientList","clients","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["companyIndex","_body","ClientList","clients","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["companyIndex","_body","ClientList","clients","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["companyIndex","_body","ClientList","clients","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["companyIndex","_body","ClientList","clients","content","VideoEmbed","duration"]}],"namespace":["articlesIndex","_body","ClientList","clients","content","VideoEmbed"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["companyIndex","_body","ClientList","clients","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["companyIndex","_body","ClientList","clients","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["companyIndex","_body","ClientList","clients","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["companyIndex","_body","ClientList","clients","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["companyIndex","_body","ClientList","clients","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["companyIndex","_body","ClientList","clients","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["companyIndex","_body","ClientList","clients","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["companyIndex","_body","ClientList","clients","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["companyIndex","_body","ClientList","clients","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["companyIndex","_body","ClientList","clients","content","CustomImage","sizes"]}],"namespace":["articlesIndex","_body","ClientList","clients","content","CustomImage"]},{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["companyIndex","_body","ClientList","clients","content","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["companyIndex","_body","ClientList","clients","content","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["caseStudy","_body","ClientList","clients","content","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["caseStudy","_body","ClientList","clients","content","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["caseStudy","_body","ClientList","clients","content","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["caseStudy","_body","ClientList","clients","content","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["caseStudy","_body","ClientList","clients","content","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["caseStudy","_body","ClientList","clients","content","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["caseStudy","_body","ClientList","clients","content","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["caseStudy","_body","ClientList","clients","content","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["caseStudy","_body","ClientList","clients","content","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["caseStudy","_body","ClientList","clients","content","ContentCard","content","CustomImage","sizes"]}],"namespace":["company","_body","ClientList","clients","content","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["caseStudy","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["caseStudy","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["caseStudy","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["caseStudy","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["caseStudy","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["company","_body","ClientList","clients","content","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["caseStudy","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["caseStudy","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["caseStudy","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["caseStudy","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["caseStudy","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["caseStudy","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["caseStudy","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","duration"]}],"namespace":["company","_body","ClientList","clients","content","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["caseStudy","_body","ClientList","clients","content","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["caseStudy","_body","ClientList","clients","content","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["caseStudy","content","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["caseStudy","content","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["caseStudy","content","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["caseStudy","content","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["caseStudy","content","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["caseStudy","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["company","_body","ClientList","clients","content","ContentCard","content","ColorBlock"]}],"namespace":["companyIndex","_body","ClientList","clients","content","ContentCard","content"]}],"namespace":["articlesIndex","_body","ClientList","clients","content","ContentCard"]}],"namespace":["page","afterBody","ClientList","clients","content"]},{"type":"string","name":"caseStudyUrl","label":"Case study URL","namespace":["page","afterBody","ClientList","clients","caseStudyUrl"]},{"type":"object","name":"categories","label":"Categories","list":true,"ui":{},"fields":[{"type":"reference","name":"category","label":"Category","collections":["clientCategories"],"namespace":["articlesIndex","_body","ClientList","clients","categories","category"]}],"namespace":["page","afterBody","ClientList","clients","categories"]}],"namespace":["page","sideBar","ClientList","clients"],"searchable":true,"uid":false}],"namespace":["page","sideBar","ClientList"]},{"name":"ClientLogos","label":"Client Logos","ui":{"previewSrc":"/images/thumbs/tina/client-logos.jpg"},"fields":[{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["page","sideBar","ClientLogos","altText"],"searchable":true,"uid":false}],"namespace":["page","sideBar","ClientLogos"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["page","sideBar","ColorBlock","title"],"searchable":true,"uid":false},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["page","sideBar","ColorBlock","subTitle"],"searchable":true,"uid":false},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["page","afterBody","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["page","afterBody","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["page","afterBody","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["page","afterBody","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["page","afterBody","ColorBlock","colorRow","caption"]}],"namespace":["page","sideBar","ColorBlock","colorRow"],"searchable":true,"uid":false}],"namespace":["page","sideBar","ColorBlock"]},{"name":"ColorPalette","label":"Color Palette","ui":{"previewSrc":"/images/thumbs/tina/color-palette.jpg"},"fields":[{"type":"string","label":"Name","name":"name","namespace":["page","sideBar","ColorPalette","name"],"searchable":true,"uid":false}],"namespace":["page","sideBar","ColorPalette"]},{"name":"Content","label":"Content","ui":{"previewSrc":"/images/thumbs/tina/content.jpg","defaultItem":{"body":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["page","sideBar","Content","title"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["articlesIndex","_body","Content","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["articlesIndex","_body","Content","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["articlesIndex","_body","Content","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["articlesIndex","_body","Content","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["articlesIndex","_body","Content","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["articlesIndex","_body","Content","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["articlesIndex","_body","Content","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["articlesIndex","_body","Content","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["articlesIndex","_body","Content","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["articlesIndex","_body","Content","content","CustomImage","sizes"]}],"namespace":["page","afterBody","Content","content","CustomImage"]},{"name":"ClientLogos","label":"Client Logos","ui":{"previewSrc":"/images/thumbs/tina/client-logos.jpg"},"fields":[{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["articlesIndex","_body","Content","content","ClientLogos","altText"]}],"namespace":["page","afterBody","Content","content","ClientLogos"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["articlesIndex","_body","Content","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["articlesIndex","_body","Content","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["articlesIndex","_body","Content","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["articlesIndex","_body","Content","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["articlesIndex","_body","Content","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["articlesIndex","_body","Content","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["articlesIndex","_body","Content","content","VideoEmbed","duration"]}],"namespace":["page","afterBody","Content","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["articlesIndex","_body","Content","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["articlesIndex","_body","Content","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["companyIndex","_body","Content","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["companyIndex","_body","Content","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["companyIndex","_body","Content","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["companyIndex","_body","Content","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["companyIndex","_body","Content","content","ColorBlock","colorRow","caption"]}],"namespace":["articlesIndex","_body","Content","content","ColorBlock","colorRow"]}],"namespace":["page","afterBody","Content","content","ColorBlock"]}],"namespace":["page","sideBar","Content","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Container Padding","name":"paddingClass","options":["Mobile: No Padding","Mobile: No Top and Horizontal Padding"],"namespace":["page","sideBar","Content","paddingClass"],"searchable":true,"uid":false},{"type":"string","label":"Text size","name":"size","options":[{"label":"small","value":"sm"},{"label":"normal","value":"base"},{"label":"large","value":"lg"},{"label":"extra large","value":"xl"},{"label":"2x large","value":"2xl"}],"namespace":["page","sideBar","Content","size"],"searchable":true,"uid":false},{"type":"string","label":"Align","name":"align","options":[{"label":"Left","value":"left"},{"label":"Center","value":"center"},{"label":"Right","value":"right"}],"namespace":["page","sideBar","Content","align"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["page","sideBar","Content","backgroundColor"],"searchable":true,"uid":false}],"namespace":["page","sideBar","Content"]},{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["page","sideBar","ContentCard","prose"],"searchable":true,"uid":false},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["page","sideBar","ContentCard","centerAlignedText"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["articlesIndex","_body","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["articlesIndex","_body","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["articlesIndex","_body","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["articlesIndex","_body","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["articlesIndex","_body","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["articlesIndex","_body","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["articlesIndex","_body","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["articlesIndex","_body","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["articlesIndex","_body","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["articlesIndex","_body","ContentCard","content","CustomImage","sizes"]}],"namespace":["page","afterBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["articlesIndex","_body","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["articlesIndex","_body","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["articlesIndex","_body","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["articlesIndex","_body","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["articlesIndex","_body","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["page","afterBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["articlesIndex","_body","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["articlesIndex","_body","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["articlesIndex","_body","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["articlesIndex","_body","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["articlesIndex","_body","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["articlesIndex","_body","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["articlesIndex","_body","ContentCard","content","VideoEmbed","duration"]}],"namespace":["page","afterBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["articlesIndex","_body","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["articlesIndex","_body","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["companyIndex","_body","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["companyIndex","_body","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["companyIndex","_body","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["companyIndex","_body","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["companyIndex","_body","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["articlesIndex","_body","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["page","afterBody","ContentCard","content","ColorBlock"]}],"namespace":["page","sideBar","ContentCard","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["page","sideBar","ContentCard"]},{"name":"CustomDownloadButton","label":"Custom Download Button","ui":{"previewSrc":"/images/thumbs/tina/custom-download-button.jpg"},"fields":[{"type":"string","label":"Text","name":"btnText","namespace":["page","sideBar","CustomDownloadButton","btnText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"btnLink","namespace":["page","sideBar","CustomDownloadButton","btnLink"],"searchable":true,"uid":false}],"namespace":["page","sideBar","CustomDownloadButton"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["page","sideBar","CustomImage","src"],"searchable":false,"uid":false},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["page","sideBar","CustomImage","altText"],"searchable":true,"uid":false},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["page","sideBar","CustomImage","alignment"],"searchable":true,"uid":false},{"type":"number","label":"Height","name":"height","required":true,"namespace":["page","sideBar","CustomImage","height"],"searchable":true,"uid":false},{"type":"number","label":"Width","name":"width","required":true,"namespace":["page","sideBar","CustomImage","width"],"searchable":true,"uid":false},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["page","sideBar","CustomImage","link"],"searchable":true,"uid":false},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["page","sideBar","CustomImage","customClass"],"searchable":true,"uid":false},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["page","sideBar","CustomImage","caption"],"searchable":true,"uid":false},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["page","sideBar","CustomImage","captionColor"],"searchable":true,"uid":false},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["page","sideBar","CustomImage","sizes"],"searchable":true,"uid":false}],"namespace":["page","sideBar","CustomImage"]},{"name":"DomainFromQuery","label":"Domain from query","ui":{"previewSrc":"/images/thumbs/tina/domain-from-query.jpg"},"fields":[{"name":"title","label":"Title","type":"string","description":"This is a H1 heading","namespace":["page","sideBar","DomainFromQuery","title"],"searchable":true,"uid":false},{"name":"showDomain","label":"Show domain name","type":"boolean","description":"Query param in URL must have key of 'domain'","namespace":["page","sideBar","DomainFromQuery","showDomain"],"searchable":true,"uid":false}],"namespace":["page","sideBar","DomainFromQuery"]},{"name":"DownloadBlock","label":"Download Block","ui":{"previewSrc":"/images/thumbs/tina/download-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["page","sideBar","DownloadBlock","title"],"searchable":true,"uid":false},{"type":"object","label":"Downloads","name":"downloads","ui":{},"list":true,"fields":[{"type":"string","label":"Header","name":"header","namespace":["page","afterBody","DownloadBlock","downloads","header"]},{"type":"image","label":"Image","name":"img","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","img","uploadDir"]},"namespace":["page","afterBody","DownloadBlock","downloads","img"]},{"type":"string","label":"Image Background","name":"imgBackground","options":["black","grey","white","darkgrey","darkgreen"],"namespace":["page","afterBody","DownloadBlock","downloads","imgBackground"]},{"type":"string","label":"First Link Text","name":"firstLinkText","description":"Defaults to PNG","namespace":["page","afterBody","DownloadBlock","downloads","firstLinkText"]},{"type":"image","label":"First Link","name":"firstLink","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","firstLink","uploadDir"]},"namespace":["page","afterBody","DownloadBlock","downloads","firstLink"]},{"type":"string","label":"Second Link Text","name":"secondLinkText","description":"Defaults to PDF","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","secondLinkText","uploadDir"]},"namespace":["page","afterBody","DownloadBlock","downloads","secondLinkText"]},{"type":"image","label":"Second Link","name":"secondLink","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","secondLink","uploadDir"]},"namespace":["page","afterBody","DownloadBlock","downloads","secondLink"]}],"namespace":["page","sideBar","DownloadBlock","downloads"],"searchable":true,"uid":false},{"type":"boolean","label":"Bottom border","name":"bottomBorder","namespace":["page","sideBar","DownloadBlock","bottomBorder"],"searchable":true,"uid":false}],"namespace":["page","sideBar","DownloadBlock"]},{"name":"DynamicColumns","label":"Dynamic Column Layout","fields":[{"type":"rich-text","label":"Column text body","name":"colBody","required":true,"namespace":["page","sideBar","DynamicColumns","colBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"number","label":"Number of columns","name":"colCount","required":true,"ui":{},"namespace":["page","sideBar","DynamicColumns","colCount"],"searchable":true,"uid":false}],"namespace":["page","sideBar","DynamicColumns"]},{"name":"EventBooking","label":"Events Booking","ui":{"previewSrc":"/images/thumbs/tina/events-booking.jpg"},"fields":[{"type":"number","label":"Duration (In Days)","name":"eventDurationInDays","required":true,"namespace":["page","sideBar","EventBooking","eventDurationInDays"],"searchable":true,"uid":false},{"type":"number","label":"Price","name":"price","required":true,"namespace":["page","sideBar","EventBooking","price"],"searchable":true,"uid":false},{"type":"number","label":"Discount Price","name":"discountPrice","namespace":["page","sideBar","EventBooking","discountPrice"],"searchable":true,"uid":false},{"type":"string","name":"gstText","label":"Select GST Option","options":["inc GST","+ GST"],"required":true,"namespace":["page","sideBar","EventBooking","gstText"],"searchable":true,"uid":false},{"type":"string","label":"Discount Note","name":"discountNote","namespace":["page","sideBar","EventBooking","discountNote"],"searchable":true,"uid":false},{"type":"object","label":"Event","name":"eventList","ui":{},"list":true,"fields":[{"type":"string","label":"City","name":"city","namespace":["page","afterBody","EventBooking","eventList","city"]},{"type":"datetime","label":"Start Date","name":"date","ui":{},"namespace":["page","afterBody","EventBooking","eventList","date"]},{"type":"string","label":"Booking URL","name":"bookingURL","namespace":["page","afterBody","EventBooking","eventList","bookingURL"]},{"type":"reference","label":"Location","name":"location","collections":["locations"],"namespace":["page","afterBody","EventBooking","eventList","location"]}],"namespace":["page","sideBar","EventBooking","eventList"],"searchable":true,"uid":false}],"namespace":["page","sideBar","EventBooking"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["articlesIndex","_body","EventLink","content","Flag","country"]}],"namespace":["page","afterBody","EventLink","content","Flag"]}],"namespace":["page","sideBar","EventLink","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Link","name":"link","namespace":["page","sideBar","EventLink","link"],"searchable":true,"uid":false},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["page","sideBar","EventLink","eventThumbnail"],"searchable":false,"uid":false},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["page","sideBar","EventLink","thumbnailAlt"],"searchable":true,"uid":false}],"namespace":["page","sideBar","EventLink"]},{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["page","sideBar","Flag","country"],"searchable":true,"uid":false}],"namespace":["page","sideBar","Flag"]},{"name":"FixedColumns","label":"Fixed Column Layout (2 columns)","ui":{"previewSrc":"/images/thumbs/tina/fixed-columns.jpg"},"fields":[{"type":"rich-text","label":"Header Section (Optional)","name":"headerSection","namespace":["page","sideBar","FixedColumns","headerSection"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"First column text","name":"firstColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["articlesIndex","_body","FixedColumns","firstColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["articlesIndex","_body","FixedColumns","firstColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["companyIndex","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["companyIndex","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["companyIndex","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["companyIndex","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["companyIndex","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["companyIndex","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["companyIndex","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["companyIndex","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["companyIndex","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["companyIndex","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["articles","subTitle","FixedColumns","firstColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["companyIndex","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["companyIndex","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["companyIndex","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["companyIndex","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["companyIndex","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["articles","subTitle","FixedColumns","firstColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["companyIndex","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["companyIndex","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["companyIndex","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["companyIndex","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["companyIndex","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["companyIndex","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["companyIndex","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["articles","subTitle","FixedColumns","firstColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["companyIndex","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["companyIndex","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["company","subTitle","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["company","subTitle","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["company","subTitle","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["company","subTitle","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["company","subTitle","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["companyIndex","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["articles","subTitle","FixedColumns","firstColBody","ContentCard","content","ColorBlock"]}],"namespace":["articlesIndex","_body","FixedColumns","firstColBody","ContentCard","content"]}],"namespace":["page","afterBody","FixedColumns","firstColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["articlesIndex","_body","FixedColumns","firstColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["articlesIndex","_body","FixedColumns","firstColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["articlesIndex","_body","FixedColumns","firstColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["articlesIndex","_body","FixedColumns","firstColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["articlesIndex","_body","FixedColumns","firstColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["articlesIndex","_body","FixedColumns","firstColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["articlesIndex","_body","FixedColumns","firstColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["articlesIndex","_body","FixedColumns","firstColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["articlesIndex","_body","FixedColumns","firstColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["articlesIndex","_body","FixedColumns","firstColBody","CustomImage","sizes"]}],"namespace":["page","afterBody","FixedColumns","firstColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["companyIndex","_body","FixedColumns","firstColBody","EventLink","content","Flag","country"]}],"namespace":["articles","subTitle","FixedColumns","firstColBody","EventLink","content","Flag"]}],"namespace":["articlesIndex","_body","FixedColumns","firstColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["articlesIndex","_body","FixedColumns","firstColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["articlesIndex","_body","FixedColumns","firstColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["articlesIndex","_body","FixedColumns","firstColBody","EventLink","thumbnailAlt"]}],"namespace":["page","afterBody","FixedColumns","firstColBody","EventLink"]}],"namespace":["page","sideBar","FixedColumns","firstColBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"Second column text","name":"secondColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["articlesIndex","_body","FixedColumns","secondColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["articlesIndex","_body","FixedColumns","secondColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["companyIndex","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["companyIndex","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["companyIndex","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["companyIndex","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["companyIndex","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["companyIndex","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["companyIndex","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["companyIndex","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["companyIndex","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["companyIndex","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["articles","subTitle","FixedColumns","secondColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["companyIndex","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["companyIndex","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["companyIndex","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["companyIndex","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["companyIndex","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["articles","subTitle","FixedColumns","secondColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["companyIndex","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["companyIndex","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["companyIndex","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["companyIndex","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["companyIndex","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["companyIndex","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["companyIndex","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["articles","subTitle","FixedColumns","secondColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["companyIndex","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["companyIndex","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["company","subTitle","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["company","subTitle","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["company","subTitle","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["company","subTitle","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["company","subTitle","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["companyIndex","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["articles","subTitle","FixedColumns","secondColBody","ContentCard","content","ColorBlock"]}],"namespace":["articlesIndex","_body","FixedColumns","secondColBody","ContentCard","content"]}],"namespace":["page","afterBody","FixedColumns","secondColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["articlesIndex","_body","FixedColumns","secondColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["articlesIndex","_body","FixedColumns","secondColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["articlesIndex","_body","FixedColumns","secondColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["articlesIndex","_body","FixedColumns","secondColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["articlesIndex","_body","FixedColumns","secondColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["articlesIndex","_body","FixedColumns","secondColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["articlesIndex","_body","FixedColumns","secondColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["articlesIndex","_body","FixedColumns","secondColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["articlesIndex","_body","FixedColumns","secondColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["articlesIndex","_body","FixedColumns","secondColBody","CustomImage","sizes"]}],"namespace":["page","afterBody","FixedColumns","secondColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["companyIndex","_body","FixedColumns","secondColBody","EventLink","content","Flag","country"]}],"namespace":["articles","subTitle","FixedColumns","secondColBody","EventLink","content","Flag"]}],"namespace":["articlesIndex","_body","FixedColumns","secondColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["articlesIndex","_body","FixedColumns","secondColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["articlesIndex","_body","FixedColumns","secondColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["articlesIndex","_body","FixedColumns","secondColBody","EventLink","thumbnailAlt"]}],"namespace":["page","afterBody","FixedColumns","secondColBody","EventLink"]}],"namespace":["page","sideBar","FixedColumns","secondColBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["page","sideBar","FixedColumns"]},{"name":"FixedTabsLayout","label":"Fixed Tabs Layout","ui":{"previewSrc":"/images/thumbs/tina/fixed-tabs-layout.jpg"},"fields":[{"type":"string","name":"firstTab","label":"First Tab","namespace":["page","sideBar","FixedTabsLayout","firstTab"],"searchable":true,"uid":false},{"type":"rich-text","name":"firstHeading","label":"First Heading","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["articlesIndex","_body","FixedTabsLayout","firstHeading","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["articlesIndex","_body","FixedTabsLayout","firstHeading","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["articlesIndex","_body","FixedTabsLayout","firstHeading","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["articlesIndex","_body","FixedTabsLayout","firstHeading","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["articlesIndex","_body","FixedTabsLayout","firstHeading","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["articlesIndex","_body","FixedTabsLayout","firstHeading","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["articlesIndex","_body","FixedTabsLayout","firstHeading","VideoEmbed","duration"]}],"namespace":["page","afterBody","FixedTabsLayout","firstHeading","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["articlesIndex","_body","FixedTabsLayout","firstHeading","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["articlesIndex","_body","FixedTabsLayout","firstHeading","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["articlesIndex","_body","FixedTabsLayout","firstHeading","BookingButton","buttonSubtitle"]}],"namespace":["page","afterBody","FixedTabsLayout","firstHeading","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["articlesIndex","_body","FixedTabsLayout","firstHeading","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["companyIndex","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["companyIndex","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["companyIndex","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["companyIndex","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList","skills"]}],"namespace":["articlesIndex","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["companyIndex","_body","FixedTabsLayout","firstHeading","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["companyIndex","_body","FixedTabsLayout","firstHeading","ExpertBlock","link","url"]}],"namespace":["articlesIndex","_body","FixedTabsLayout","firstHeading","ExpertBlock","link"]}],"namespace":["page","afterBody","FixedTabsLayout","firstHeading","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["companyIndex","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["companyIndex","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["companyIndex","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["company","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["company","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["company","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["companyIndex","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["articlesIndex","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["page","afterBody","FixedTabsLayout","firstHeading","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["articlesIndex","_body","FixedTabsLayout","firstHeading","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["articlesIndex","_body","FixedTabsLayout","firstHeading","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["articlesIndex","_body","FixedTabsLayout","firstHeading","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["articlesIndex","_body","FixedTabsLayout","firstHeading","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["articlesIndex","_body","FixedTabsLayout","firstHeading","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["articlesIndex","_body","FixedTabsLayout","firstHeading","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["articlesIndex","_body","FixedTabsLayout","firstHeading","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["articlesIndex","_body","FixedTabsLayout","firstHeading","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["articlesIndex","_body","FixedTabsLayout","firstHeading","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["articlesIndex","_body","FixedTabsLayout","firstHeading","CustomImage","sizes"]}],"namespace":["page","afterBody","FixedTabsLayout","firstHeading","CustomImage"]}],"namespace":["page","sideBar","FixedTabsLayout","firstHeading"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","name":"firstBody","label":"First Body","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["articlesIndex","_body","FixedTabsLayout","firstBody","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["articlesIndex","_body","FixedTabsLayout","firstBody","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["articlesIndex","_body","FixedTabsLayout","firstBody","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["articlesIndex","_body","FixedTabsLayout","firstBody","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["articlesIndex","_body","FixedTabsLayout","firstBody","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["articlesIndex","_body","FixedTabsLayout","firstBody","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["articlesIndex","_body","FixedTabsLayout","firstBody","VideoEmbed","duration"]}],"namespace":["page","afterBody","FixedTabsLayout","firstBody","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["articlesIndex","_body","FixedTabsLayout","firstBody","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["articlesIndex","_body","FixedTabsLayout","firstBody","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["articlesIndex","_body","FixedTabsLayout","firstBody","BookingButton","buttonSubtitle"]}],"namespace":["page","afterBody","FixedTabsLayout","firstBody","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["articlesIndex","_body","FixedTabsLayout","firstBody","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["companyIndex","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["companyIndex","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["companyIndex","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["companyIndex","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList","skills"]}],"namespace":["articlesIndex","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["companyIndex","_body","FixedTabsLayout","firstBody","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["companyIndex","_body","FixedTabsLayout","firstBody","ExpertBlock","link","url"]}],"namespace":["articlesIndex","_body","FixedTabsLayout","firstBody","ExpertBlock","link"]}],"namespace":["page","afterBody","FixedTabsLayout","firstBody","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["companyIndex","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["companyIndex","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["companyIndex","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["company","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["company","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["company","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["companyIndex","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["articlesIndex","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["page","afterBody","FixedTabsLayout","firstBody","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["articlesIndex","_body","FixedTabsLayout","firstBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["articlesIndex","_body","FixedTabsLayout","firstBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["articlesIndex","_body","FixedTabsLayout","firstBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["articlesIndex","_body","FixedTabsLayout","firstBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["articlesIndex","_body","FixedTabsLayout","firstBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["articlesIndex","_body","FixedTabsLayout","firstBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["articlesIndex","_body","FixedTabsLayout","firstBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["articlesIndex","_body","FixedTabsLayout","firstBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["articlesIndex","_body","FixedTabsLayout","firstBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["articlesIndex","_body","FixedTabsLayout","firstBody","CustomImage","sizes"]}],"namespace":["page","afterBody","FixedTabsLayout","firstBody","CustomImage"]}],"namespace":["page","sideBar","FixedTabsLayout","firstBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","name":"secondTab","label":"Second Tab","namespace":["page","sideBar","FixedTabsLayout","secondTab"],"searchable":true,"uid":false},{"type":"rich-text","name":"secondHeading","label":"Second Heading","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["articlesIndex","_body","FixedTabsLayout","secondHeading","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["articlesIndex","_body","FixedTabsLayout","secondHeading","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["articlesIndex","_body","FixedTabsLayout","secondHeading","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["articlesIndex","_body","FixedTabsLayout","secondHeading","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["articlesIndex","_body","FixedTabsLayout","secondHeading","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["articlesIndex","_body","FixedTabsLayout","secondHeading","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["articlesIndex","_body","FixedTabsLayout","secondHeading","VideoEmbed","duration"]}],"namespace":["page","afterBody","FixedTabsLayout","secondHeading","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["articlesIndex","_body","FixedTabsLayout","secondHeading","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["articlesIndex","_body","FixedTabsLayout","secondHeading","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["articlesIndex","_body","FixedTabsLayout","secondHeading","BookingButton","buttonSubtitle"]}],"namespace":["page","afterBody","FixedTabsLayout","secondHeading","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["articlesIndex","_body","FixedTabsLayout","secondHeading","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["companyIndex","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["companyIndex","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["companyIndex","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["companyIndex","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList","skills"]}],"namespace":["articlesIndex","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["companyIndex","_body","FixedTabsLayout","secondHeading","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["companyIndex","_body","FixedTabsLayout","secondHeading","ExpertBlock","link","url"]}],"namespace":["articlesIndex","_body","FixedTabsLayout","secondHeading","ExpertBlock","link"]}],"namespace":["page","afterBody","FixedTabsLayout","secondHeading","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["companyIndex","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["companyIndex","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["companyIndex","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["company","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["company","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["company","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["companyIndex","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["articlesIndex","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["page","afterBody","FixedTabsLayout","secondHeading","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["articlesIndex","_body","FixedTabsLayout","secondHeading","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["articlesIndex","_body","FixedTabsLayout","secondHeading","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["articlesIndex","_body","FixedTabsLayout","secondHeading","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["articlesIndex","_body","FixedTabsLayout","secondHeading","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["articlesIndex","_body","FixedTabsLayout","secondHeading","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["articlesIndex","_body","FixedTabsLayout","secondHeading","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["articlesIndex","_body","FixedTabsLayout","secondHeading","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["articlesIndex","_body","FixedTabsLayout","secondHeading","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["articlesIndex","_body","FixedTabsLayout","secondHeading","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["articlesIndex","_body","FixedTabsLayout","secondHeading","CustomImage","sizes"]}],"namespace":["page","afterBody","FixedTabsLayout","secondHeading","CustomImage"]}],"namespace":["page","sideBar","FixedTabsLayout","secondHeading"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","name":"secondBody","label":"Second Body","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["articlesIndex","_body","FixedTabsLayout","secondBody","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["articlesIndex","_body","FixedTabsLayout","secondBody","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["articlesIndex","_body","FixedTabsLayout","secondBody","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["articlesIndex","_body","FixedTabsLayout","secondBody","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["articlesIndex","_body","FixedTabsLayout","secondBody","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["articlesIndex","_body","FixedTabsLayout","secondBody","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["articlesIndex","_body","FixedTabsLayout","secondBody","VideoEmbed","duration"]}],"namespace":["page","afterBody","FixedTabsLayout","secondBody","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["articlesIndex","_body","FixedTabsLayout","secondBody","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["articlesIndex","_body","FixedTabsLayout","secondBody","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["articlesIndex","_body","FixedTabsLayout","secondBody","BookingButton","buttonSubtitle"]}],"namespace":["page","afterBody","FixedTabsLayout","secondBody","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["articlesIndex","_body","FixedTabsLayout","secondBody","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["companyIndex","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["companyIndex","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["companyIndex","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["companyIndex","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList","skills"]}],"namespace":["articlesIndex","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["companyIndex","_body","FixedTabsLayout","secondBody","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["companyIndex","_body","FixedTabsLayout","secondBody","ExpertBlock","link","url"]}],"namespace":["articlesIndex","_body","FixedTabsLayout","secondBody","ExpertBlock","link"]}],"namespace":["page","afterBody","FixedTabsLayout","secondBody","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["companyIndex","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["companyIndex","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["companyIndex","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["company","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["company","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["company","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["companyIndex","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["articlesIndex","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["page","afterBody","FixedTabsLayout","secondBody","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["articlesIndex","_body","FixedTabsLayout","secondBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["articlesIndex","_body","FixedTabsLayout","secondBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["articlesIndex","_body","FixedTabsLayout","secondBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["articlesIndex","_body","FixedTabsLayout","secondBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["articlesIndex","_body","FixedTabsLayout","secondBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["articlesIndex","_body","FixedTabsLayout","secondBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["articlesIndex","_body","FixedTabsLayout","secondBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["articlesIndex","_body","FixedTabsLayout","secondBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["articlesIndex","_body","FixedTabsLayout","secondBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["articlesIndex","_body","FixedTabsLayout","secondBody","CustomImage","sizes"]}],"namespace":["page","afterBody","FixedTabsLayout","secondBody","CustomImage"]}],"namespace":["page","sideBar","FixedTabsLayout","secondBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["page","sideBar","FixedTabsLayout"]},{"label":"Google Maps","name":"GoogleMaps","ui":{"previewSrc":"/images/thumbs/tina/google-maps.jpg"},"fields":[{"type":"string","label":"URL","name":"embedUrl","required":true,"namespace":["page","sideBar","GoogleMaps","embedUrl"],"searchable":true,"uid":false},{"type":"string","label":"Width","name":"embedWidth","namespace":["page","sideBar","GoogleMaps","embedWidth"],"searchable":true,"uid":false},{"type":"string","label":"Height","name":"embedHeight","namespace":["page","sideBar","GoogleMaps","embedHeight"],"searchable":true,"uid":false}],"namespace":["page","sideBar","GoogleMaps"]},{"label":"Grid Layout","name":"GridLayout","ui":{"previewSrc":"/images/thumbs/tina/grid-layout.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["page","sideBar","GridLayout","title"],"searchable":true,"uid":false},{"type":"object","list":true,"label":"Grid Items","name":"grids","ui":{},"fields":[{"type":"string","label":"Grid Title","name":"gridTitle","namespace":["page","afterBody","GridLayout","grids","gridTitle"]},{"type":"boolean","label":"Show Grid Title","name":"showGridTitle","namespace":["page","afterBody","GridLayout","grids","showGridTitle"]},{"type":"boolean","label":"Centered Grid Title","name":"centeredGridTitle","namespace":["page","afterBody","GridLayout","grids","centeredGridTitle"]},{"type":"boolean","label":"Show Header Divider","name":"showHeaderDivider","namespace":["page","afterBody","GridLayout","grids","showHeaderDivider"]},{"type":"boolean","label":"Offset Grid Start","name":"offsetGridStart","namespace":["page","afterBody","GridLayout","grids","offsetGridStart"]},{"type":"object","label":"Blocks","name":"blocks","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["articlesIndex","_body","GridLayout","grids","blocks","title"]},{"type":"boolean","label":"Show Title","name":"showTitle","namespace":["articlesIndex","_body","GridLayout","grids","blocks","showTitle"]},{"type":"image","label":"Image","name":"image","uploadDir":{"namespace":["page","beforeBody","GridLayout","grids","blocks","image","uploadDir"]},"namespace":["articlesIndex","_body","GridLayout","grids","blocks","image"]},{"type":"image","label":"Related Image","name":"relatedImage","uploadDir":{"namespace":["page","beforeBody","GridLayout","grids","blocks","relatedImage","uploadDir"]},"namespace":["articlesIndex","_body","GridLayout","grids","blocks","relatedImage"]},{"type":"rich-text","name":"linkContent","label":"Link Content","templates":[{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["company","_body","GridLayout","grids","blocks","linkContent","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["company","_body","GridLayout","grids","blocks","linkContent","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["company","_body","GridLayout","grids","blocks","linkContent","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["company","_body","GridLayout","grids","blocks","linkContent","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["company","_body","GridLayout","grids","blocks","linkContent","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["company","_body","GridLayout","grids","blocks","linkContent","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["company","_body","GridLayout","grids","blocks","linkContent","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["company","_body","GridLayout","grids","blocks","linkContent","UtilityButton","openInNewTab"]}],"namespace":["companyIndex","_body","GridLayout","grids","blocks","linkContent","UtilityButton"]}],"namespace":["articlesIndex","_body","GridLayout","grids","blocks","linkContent"]}],"namespace":["page","afterBody","GridLayout","grids","blocks"]}],"namespace":["page","sideBar","GridLayout","grids"],"searchable":true,"uid":false}],"namespace":["page","sideBar","GridLayout"]},{"name":"Hero","label":"Hero","ui":{"previewSrc":"/blocks/hero.png","defaultItem":{"tagline":"Here's some text above the other text","headline":"This Big Text is Totally Awesome","text":"Phasellus scelerisque, libero eu finibus rutrum, risus risus accumsan libero, nec molestie urna dui a leo."}},"fields":[{"type":"string","label":"Tagline","name":"tagline","namespace":["page","sideBar","Hero","tagline"],"searchable":true,"uid":false},{"type":"string","label":"Headline","name":"headline","namespace":["page","sideBar","Hero","headline"],"searchable":true,"uid":false},{"label":"Text","name":"text","type":"rich-text","namespace":["page","sideBar","Hero","text"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"label":"Actions","name":"actions","type":"object","list":true,"ui":{"defaultItem":{"label":"Action Label","type":"button","icon":true,"link":"/"}},"fields":[{"label":"Label","name":"label","type":"string","namespace":["page","afterBody","Hero","actions","label"]},{"label":"Type","name":"type","type":"string","options":[{"label":"Button","value":"button"},{"label":"Link","value":"link"}],"namespace":["page","afterBody","Hero","actions","type"]},{"label":"Icon","name":"icon","type":"boolean","namespace":["page","afterBody","Hero","actions","icon"]},{"label":"Link","name":"link","type":"string","namespace":["page","afterBody","Hero","actions","link"]}],"namespace":["page","sideBar","Hero","actions"],"searchable":true,"uid":false},{"type":"object","label":"Image","name":"image","fields":[{"name":"src","label":"Image Source","type":"image","namespace":["page","afterBody","Hero","image","src"]},{"name":"alt","label":"Alt Text","type":"string","namespace":["page","afterBody","Hero","image","alt"]}],"namespace":["page","sideBar","Hero","image"],"searchable":true,"uid":false},{"type":"string","label":"Color","name":"color","options":[{"label":"Default","value":"default"},{"label":"Tint","value":"tint"},{"label":"Primary","value":"primary"}],"namespace":["page","sideBar","Hero","color"],"searchable":true,"uid":false}],"namespace":["page","sideBar","Hero"]},{"name":"HorizontalCard","label":"Horizontal Card","ui":{"previewSrc":"/images/thumbs/tina/horizontal-card.jpg"},"fields":[{"type":"object","label":"Cards","name":"cardList","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["page","afterBody","HorizontalCard","cardList","title"]},{"type":"rich-text","label":"Content","name":"content","namespace":["page","afterBody","HorizontalCard","cardList","content"]},{"type":"image","label":"Thumbnail","name":"thumbnail","uploadDir":{"namespace":["page","beforeBody","HorizontalCard","cardList","thumbnail","uploadDir"]},"namespace":["page","afterBody","HorizontalCard","cardList","thumbnail"]},{"type":"string","label":"Link","name":"link","namespace":["page","afterBody","HorizontalCard","cardList","link"]}],"namespace":["page","sideBar","HorizontalCard","cardList"],"searchable":true,"uid":false},{"type":"object","label":"Button","name":"button","fields":[{"type":"string","label":"Text","name":"text","namespace":["page","afterBody","HorizontalCard","button","text"]},{"type":"string","label":"Link","name":"link","namespace":["page","afterBody","HorizontalCard","button","link"]}],"namespace":["page","sideBar","HorizontalCard","button"],"searchable":true,"uid":false}],"namespace":["page","sideBar","HorizontalCard"]},{"name":"InternalCarousel","label":"Internal Carousel","ui":{"previewSrc":"/images/thumbs/tina/internal-carousel.jpg"},"fields":[{"label":"Images","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Image description"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["page","afterBody","InternalCarousel","items","label"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","InternalCarousel","items","imgSrc","uploadDir"]},"namespace":["page","afterBody","InternalCarousel","items","imgSrc"]}],"namespace":["page","sideBar","InternalCarousel","items"],"searchable":true,"uid":false},{"type":"string","label":"Header","name":"header","namespace":["page","sideBar","InternalCarousel","header"],"searchable":true,"uid":false},{"type":"rich-text","label":"Text","name":"paragraph","isBody":false,"namespace":["page","sideBar","InternalCarousel","paragraph"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Website","name":"website","namespace":["page","sideBar","InternalCarousel","website"],"searchable":true,"uid":false},{"type":"object","label":"Technologies","name":"technologies","list":true,"ui":{},"fields":[{"type":"string","label":"Name","name":"name","namespace":["page","afterBody","InternalCarousel","technologies","name"]}],"namespace":["page","sideBar","InternalCarousel","technologies"],"searchable":true,"uid":false},{"type":"string","label":"Case Study","name":"caseStudyUrl","namespace":["page","sideBar","InternalCarousel","caseStudyUrl"],"searchable":true,"uid":false},{"type":"string","label":"Video URL","name":"videoUrl","namespace":["page","sideBar","InternalCarousel","videoUrl"],"searchable":true,"uid":false}],"namespace":["page","sideBar","InternalCarousel"]},{"label":"Join As Presenter","name":"joinAsPresenter","fields":[{"label":"Learn More Link","name":"link","type":"string","namespace":["page","sideBar","joinAsPresenter","link"],"searchable":true,"uid":false},{"label":"Image","name":"img","type":"image","namespace":["page","sideBar","joinAsPresenter","img"],"searchable":false,"uid":false}],"namespace":["page","sideBar","joinAsPresenter"]},{"label":"Join Github","name":"joinGithub","ui":{"previewSrc":"/images/thumbs/tina/join-github.jpg"},"fields":[{"label":"Title","name":"title","type":"string","namespace":["page","sideBar","joinGithub","title"],"searchable":true,"uid":false},{"label":"Join Github Link","name":"link","type":"string","namespace":["page","sideBar","joinGithub","link"],"searchable":true,"uid":false}],"namespace":["page","sideBar","joinGithub"]},{"name":"JotFormEmbed","label":"JotForm Embed","ui":{"previewSrc":"/images/thumbs/tina/jotform-embed.jpg"},"fields":[{"type":"string","name":"jotFormId","label":"JotForm Id","required":true,"namespace":["page","sideBar","JotFormEmbed","jotFormId"],"searchable":true,"uid":false},{"type":"string","label":"Button Text","name":"buttonText","namespace":["page","sideBar","JotFormEmbed","buttonText"],"searchable":true,"uid":false},{"type":"string","name":"containerClass","label":"Container Class","namespace":["page","sideBar","JotFormEmbed","containerClass"],"searchable":true,"uid":false},{"type":"string","label":"Button Class","name":"buttonClass","namespace":["page","sideBar","JotFormEmbed","buttonClass"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","namespace":["page","sideBar","JotFormEmbed","animated"],"searchable":true,"uid":false}],"namespace":["page","sideBar","JotFormEmbed"]},{"name":"LatestTech","label":"Latest Tech","ui":{"previewSrc":"/images/thumbs/tina/latest-tech.jpg"},"fields":[{"type":"reference","description":"Select a config file including a set of badges","collections":["userGroupGlobal"],"label":"Badges","name":"badges","namespace":["page","sideBar","LatestTech","badges"],"searchable":true,"uid":false}],"namespace":["page","sideBar","LatestTech"]},{"name":"LocationBlock","label":"Locations","ui":{"previewSrc":"/images/thumbs/tina/locations.jpg"},"fields":[{"type":"string","name":"title","label":"Title","namespace":["page","sideBar","LocationBlock","title"],"searchable":true,"uid":false},{"type":"object","label":"Location List","name":"locationList","list":true,"ui":{},"fields":[{"type":"reference","collections":["locations"],"label":"Location","name":"location","namespace":["page","afterBody","LocationBlock","locationList","location"]}],"namespace":["page","sideBar","LocationBlock","locationList"],"searchable":true,"uid":false},{"type":"object","name":"chapelWebsite","label":"Chapel Website","fields":[{"type":"string","name":"title","label":"Text","namespace":["page","afterBody","LocationBlock","chapelWebsite","title"]},{"type":"string","name":"URL","label":"URL","namespace":["page","afterBody","LocationBlock","chapelWebsite","URL"]}],"namespace":["page","sideBar","LocationBlock","chapelWebsite"],"searchable":true,"uid":false}],"namespace":["page","sideBar","LocationBlock"]},{"name":"NewslettersTable","label":"Newsletters Table","ui":{"previewSrc":"/images/thumbs/tina/newsletters-table.jpg"},"fields":[{"type":"string","label":"Header text","name":"headerText","namespace":["page","sideBar","NewslettersTable","headerText"],"searchable":true,"uid":false}],"namespace":["page","sideBar","NewslettersTable"]},{"label":"Organizer","name":"organizer","fields":[{"type":"image","label":"Profile Image","name":"profileImg","namespace":["page","sideBar","organizer","profileImg"],"searchable":false,"uid":false},{"type":"string","label":"Profile Link","name":"profileLink","namespace":["page","sideBar","organizer","profileLink"],"searchable":true,"uid":false},{"type":"string","label":"Name","name":"name","namespace":["page","sideBar","organizer","name"],"searchable":true,"uid":false},{"type":"string","label":"Position","name":"position","namespace":["page","sideBar","organizer","position"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","namespace":["page","sideBar","organizer","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["page","sideBar","organizer"]},{"label":"Payment Block","name":"paymentBlock","ui":{"previewSrc":"/images/thumbs/tina/payment-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["page","sideBar","paymentBlock","title"],"searchable":true,"uid":false},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["page","sideBar","paymentBlock","subTitle"],"searchable":true,"uid":false},{"type":"reference","label":"Payment Links","name":"payments","collections":["paymentDetails"],"namespace":["page","sideBar","paymentBlock","payments"],"searchable":true,"uid":false},{"type":"rich-text","label":"Footer","name":"footer","namespace":["page","sideBar","paymentBlock","footer"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"image","label":"Credit Cards Image","name":"creditImgSrc","namespace":["page","sideBar","paymentBlock","creditImgSrc"],"searchable":false,"uid":false},{"type":"string","label":"Alt Text","name":"altTxt","namespace":["page","sideBar","paymentBlock","altTxt"],"searchable":true,"uid":false}],"namespace":["page","sideBar","paymentBlock"]},{"name":"PresenterBlock","label":"Presenters","ui":{"previewSrc":"/images/thumbs/tina/presenters.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["page","sideBar","PresenterBlock","header"],"searchable":true,"uid":false},{"type":"object","name":"presenterList","label":"Presenters","list":true,"ui":{},"fields":[{"type":"reference","name":"presenter","label":"Presenters","collections":["presenter"],"namespace":["page","afterBody","PresenterBlock","presenterList","presenter"]}],"namespace":["page","sideBar","PresenterBlock","presenterList"],"searchable":true,"uid":false},{"type":"object","label":"Other Events","name":"otherEvent","fields":[{"type":"string","label":"Title","name":"title","namespace":["page","afterBody","PresenterBlock","otherEvent","title"]},{"type":"string","label":"URL","name":"eventURL","namespace":["page","afterBody","PresenterBlock","otherEvent","eventURL"]}],"namespace":["page","sideBar","PresenterBlock","otherEvent"],"searchable":true,"uid":false}],"namespace":["page","sideBar","PresenterBlock"]},{"label":"Recurring Event","name":"RecurringEvent","ui":{"previewSrc":"/images/thumbs/tina/recurring-event.jpg"},"fields":[{"type":"string","label":"Apply Link Redirect","name":"applyLinkRedirect","namespace":["page","sideBar","RecurringEvent","applyLinkRedirect"],"searchable":true,"uid":false},{"type":"string","label":"Day","name":"day","options":[{"label":"Monday","value":"monday"},{"label":"Tuesday","value":"tuesday"},{"label":"Wednesday","value":"wednesday"},{"label":"Thursday","value":"thursday"},{"label":"Friday","value":"friday"},{"label":"Saturday","value":"saturday"},{"label":"Sunday","value":"sunday"}],"required":true,"namespace":["page","sideBar","RecurringEvent","day"],"searchable":true,"uid":false}],"namespace":["page","sideBar","RecurringEvent"]},{"name":"SectionHeader","label":"Section Header","ui":{"previewSrc":"/images/thumbs/tina/section-header.jpg"},"fields":[{"type":"string","label":"Header Text","name":"headerText","namespace":["page","sideBar","SectionHeader","headerText"],"searchable":true,"uid":false}],"namespace":["page","sideBar","SectionHeader"]},{"name":"ServiceCards","label":"Service Cards","ui":{"previewSrc":"/images/thumbs/tina/services-cards.jpg"},"fields":[{"type":"string","label":"Big Cards Label","name":"bigCardsLabel","namespace":["page","sideBar","ServiceCards","bigCardsLabel"],"searchable":true,"uid":false},{"label":"Big Cards","name":"bigCards","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["page","afterBody","ServiceCards","bigCards","title"]},{"type":"string","label":"Description","component":"textarea","name":"description","namespace":["page","afterBody","ServiceCards","bigCards","description"]},{"type":"string","label":"URL","name":"link","namespace":["page","afterBody","ServiceCards","bigCards","link"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Red","value":"red"},{"label":"Light Gray","value":"lightgray"},{"label":"Medium Gray","value":"mediumgray"},{"label":"Dark Gray","value":"darkgray"}],"namespace":["page","afterBody","ServiceCards","bigCards","color"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","ServiceCards","bigCards","imgSrc","uploadDir"]},"namespace":["page","afterBody","ServiceCards","bigCards","imgSrc"]}],"namespace":["page","sideBar","ServiceCards","bigCards"],"searchable":true,"uid":false},{"type":"string","label":"Small Cards Label","name":"smallCardsLabel","namespace":["page","sideBar","ServiceCards","smallCardsLabel"],"searchable":true,"uid":false},{"label":"Small Cards","name":"smallCards","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["page","afterBody","ServiceCards","smallCards","title"]},{"type":"string","label":"URL","name":"link","namespace":["page","afterBody","ServiceCards","smallCards","link"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Red","value":"red"},{"label":"Light Gray","value":"lightgray"},{"label":"Medium Gray","value":"mediumgray"},{"label":"Dark Gray","value":"darkgray"}],"namespace":["page","afterBody","ServiceCards","smallCards","color"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","ServiceCards","smallCards","imgSrc","uploadDir"]},"namespace":["page","afterBody","ServiceCards","smallCards","imgSrc"]},{"type":"boolean","label":"External Page","description":"Select this if the link is not part of the website. This includes SSW.Rules, and SSW.People links","name":"isExternal","namespace":["page","afterBody","ServiceCards","smallCards","isExternal"]}],"namespace":["page","sideBar","ServiceCards","smallCards"],"searchable":true,"uid":false},{"label":"Links","name":"links","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["page","afterBody","ServiceCards","links","label"]},{"type":"string","label":"URL","name":"link","namespace":["page","afterBody","ServiceCards","links","link"]}],"namespace":["page","sideBar","ServiceCards","links"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["page","sideBar","ServiceCards","backgroundColor"],"searchable":true,"uid":false}],"namespace":["page","sideBar","ServiceCards"]},{"label":"Table Layout","name":"TableLayout","ui":{"previewSrc":"/images/thumbs/tina/table-layout.jpg"},"fields":[{"label":"Table Style","name":"tableStyle","type":"string","options":["none","basicBorder","styled","benefits"],"namespace":["page","sideBar","TableLayout","tableStyle"],"searchable":true,"uid":false},{"label":"First column bolded + left aligned","name":"firstColBold","type":"boolean","required":false,"namespace":["page","sideBar","TableLayout","firstColBold"],"searchable":true,"uid":false},{"type":"string","label":"Table Headers","name":"headers","list":true,"namespace":["page","sideBar","TableLayout","headers"],"searchable":true,"uid":false},{"type":"object","label":"Rows","name":"rows","list":true,"fields":[{"type":"object","label":"Cells","name":"cells","list":true,"fields":[{"type":"string","label":"Value","name":"cellValue","required":true,"component":{"namespace":["page","beforeBody","TableLayout","rows","cells","cellValue",""]},"namespace":["articlesIndex","_body","TableLayout","rows","cells","cellValue"]}],"ui":{},"namespace":["page","afterBody","TableLayout","rows","cells"]},{"type":"boolean","label":"Is Heading","name":"isHeader","required":false,"namespace":["page","afterBody","TableLayout","rows","isHeader"]}],"ui":{},"namespace":["page","sideBar","TableLayout","rows"],"searchable":true,"uid":false}],"namespace":["page","sideBar","TableLayout"]},{"name":"TestimonialsList","label":"Testimonials List","ui":{"previewSrc":"/images/thumbs/tina/testimonials.jpg"},"fields":[{"type":"object","label":"Exclude Categories","name":"excludedCategories","ui":{},"list":true,"fields":[{"type":"reference","label":"Category Name","name":"categoryName","collections":["testimonialCategories"],"namespace":["page","afterBody","TestimonialsList","excludedCategories","categoryName"]}],"namespace":["page","sideBar","TestimonialsList","excludedCategories"],"searchable":true,"uid":false}],"namespace":["page","sideBar","TestimonialsList"]},{"label":"Training Information","name":"TrainingInformation","ui":{"previewSrc":"/images/thumbs/tina/training-information.jpg"},"fields":[{"type":"object","label":"Training Information Items","name":"trainingInformationItems","list":true,"fields":[{"type":"string","label":"Header","name":"header","namespace":["page","afterBody","TrainingInformation","trainingInformationItems","header"]},{"type":"rich-text","label":"Body","name":"body","templates":[{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["companyIndex","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["companyIndex","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["companyIndex","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["companyIndex","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["companyIndex","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","afterBody"]}],"namespace":["articlesIndex","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem"]},{"label":"Recurring Event","name":"RecurringEvent","ui":{"previewSrc":"/images/thumbs/tina/recurring-event.jpg"},"fields":[{"type":"string","label":"Apply Link Redirect","name":"applyLinkRedirect","namespace":["companyIndex","_body","TrainingInformation","trainingInformationItems","body","RecurringEvent","applyLinkRedirect"]},{"type":"string","label":"Day","name":"day","options":[{"label":"Monday","value":"monday"},{"label":"Tuesday","value":"tuesday"},{"label":"Wednesday","value":"wednesday"},{"label":"Thursday","value":"thursday"},{"label":"Friday","value":"friday"},{"label":"Saturday","value":"saturday"},{"label":"Sunday","value":"sunday"}],"required":true,"namespace":["companyIndex","_body","TrainingInformation","trainingInformationItems","body","RecurringEvent","day"]}],"namespace":["articlesIndex","_body","TrainingInformation","trainingInformationItems","body","RecurringEvent"]}],"namespace":["page","afterBody","TrainingInformation","trainingInformationItems","body"]}],"namespace":["page","sideBar","TrainingInformation","trainingInformationItems"],"searchable":true,"uid":false}],"namespace":["page","sideBar","TrainingInformation"]},{"label":"Training Learning Outcomes","name":"TrainingLearningOutcome","ui":{"previewSrc":"/images/thumbs/tina/training-learning-outcomes.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["page","sideBar","TrainingLearningOutcome","header"],"searchable":true,"uid":false},{"type":"object","label":"List Items","name":"listItems","list":true,"fields":[{"type":"string","label":"Title","name":"title","namespace":["page","afterBody","TrainingLearningOutcome","listItems","title"]},{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["page","afterBody","TrainingLearningOutcome","listItems","content"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","TrainingLearningOutcome","listItems","icon","uploadDir"]},"namespace":["page","afterBody","TrainingLearningOutcome","listItems","icon"]}],"namespace":["page","sideBar","TrainingLearningOutcome","listItems"],"searchable":true,"uid":false}],"namespace":["page","sideBar","TrainingLearningOutcome"]},{"label":"Tweet Embed","name":"TweetEmbed","ui":{"previewSrc":"/images/thumbs/tina/tweet-embed.jpg"},"fields":[{"type":"string","name":"url","label":"Tweet URL","required":true,"namespace":["page","sideBar","TweetEmbed","url"],"searchable":true,"uid":false}],"namespace":["page","sideBar","TweetEmbed"]},{"name":"UpcomingEvents","label":"Upcoming Events","ui":{"previewSrc":"/images/thumbs/tina/upcoming-events.jpg","defaultItem":{"title":"Upcoming Events","numberOfEvents":30}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["page","sideBar","UpcomingEvents","title"],"searchable":true,"uid":false},{"type":"number","label":"Number of Events","name":"numberOfEvents","namespace":["page","sideBar","UpcomingEvents","numberOfEvents"],"searchable":true,"uid":false}],"namespace":["page","sideBar","UpcomingEvents"]},{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["page","sideBar","UtilityButton","buttonText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"link","required":false,"namespace":["page","sideBar","UtilityButton","link"],"searchable":true,"uid":false},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["page","sideBar","UtilityButton","size"],"searchable":true,"uid":false},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["page","sideBar","UtilityButton","btnIcon"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["page","sideBar","UtilityButton","animated"],"searchable":true,"uid":false},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["page","sideBar","UtilityButton","uncentered"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["page","sideBar","UtilityButton","removeTopMargin"],"searchable":true,"uid":false},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["page","sideBar","UtilityButton","openInNewTab"],"searchable":true,"uid":false}],"namespace":["page","sideBar","UtilityButton"]},{"name":"VerticalImageLayout","label":"Vertical Image Layout","fields":[{"type":"image","label":"Image","name":"imageSrc","uploadDir":{"namespace":["page","beforeBody","VerticalImageLayout","imageSrc","uploadDir"]},"namespace":["page","sideBar","VerticalImageLayout","imageSrc"],"searchable":false,"uid":false},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["page","sideBar","VerticalImageLayout","altText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"imageLink","namespace":["page","sideBar","VerticalImageLayout","imageLink"],"searchable":true,"uid":false},{"type":"number","label":"Height","name":"height","required":true,"namespace":["page","sideBar","VerticalImageLayout","height"],"searchable":true,"uid":false},{"type":"number","label":"Width","name":"width","required":true,"namespace":["page","sideBar","VerticalImageLayout","width"],"searchable":true,"uid":false},{"type":"rich-text","label":"Message","name":"message","required":true,"namespace":["page","sideBar","VerticalImageLayout","message"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["page","sideBar","VerticalImageLayout","sizes"],"searchable":true,"uid":false}],"namespace":["page","sideBar","VerticalImageLayout"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["page","sideBar","VerticalListItem","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"number","label":"Index number","name":"index","namespace":["page","sideBar","VerticalListItem","index"],"searchable":true,"uid":false},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["page","sideBar","VerticalListItem","icon"],"searchable":false,"uid":false},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["page","sideBar","VerticalListItem","iconScale"],"searchable":true,"uid":false},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["page","sideBar","VerticalListItem","afterBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["page","sideBar","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["page","sideBar","VideoEmbed","url"],"searchable":true,"uid":false},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["page","sideBar","VideoEmbed","videoWidth"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["page","sideBar","VideoEmbed","removeMargin"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["page","sideBar","VideoEmbed","uncentre"],"searchable":true,"uid":false},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["page","sideBar","VideoEmbed","overflow"],"searchable":true,"uid":false},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["page","sideBar","VideoEmbed","caption"],"searchable":true,"uid":false},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["page","sideBar","VideoEmbed","duration"],"searchable":true,"uid":false}],"namespace":["page","sideBar","VideoEmbed"]},{"name":"InlineJotForm","label":"In-line JotForm","ui":{"previewSrc":"/images/thumbs/tina/inline-jot-form.jpg"},"fields":[{"type":"string","name":"title","label":"Title","description":"Optional title for JotForm","namespace":["page","sideBar","InlineJotForm","title"],"searchable":true,"uid":false},{"type":"string","name":"jotFormId","label":"JotForm ID","required":true,"namespace":["page","sideBar","InlineJotForm","jotFormId"],"searchable":true,"uid":false},{"type":"string","name":"additionalClasses","label":"Additional classnames","description":"Optional styling for iframe element only","namespace":["page","sideBar","InlineJotForm","additionalClasses"],"searchable":true,"uid":false}],"namespace":["page","sideBar","InlineJotForm"]}],"namespace":["page","sideBar"],"searchable":true,"uid":false},{"type":"boolean","name":"centeredBodyText","label":"Centered body text","namespace":["page","centeredBodyText"],"searchable":true,"uid":false},{"type":"object","list":true,"name":"afterBody","label":"After body","ui":{"visualSelector":true},"templates":[{"name":"AboutUs","label":"About Us","ui":{"previewSrc":"/images/thumbs/tina/about-us.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["page","afterBody","AboutUs","backgroundColor"],"searchable":true,"uid":false},{"type":"boolean","label":"Show Map","name":"showMap","required":false,"namespace":["page","afterBody","AboutUs","showMap"],"searchable":true,"uid":false}],"namespace":["page","afterBody","AboutUs"]},{"label":"Agenda","name":"Agenda","ui":{"previewSrc":"/images/thumbs/tina/agenda.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["page","afterBody","Agenda","header"],"searchable":true,"uid":false},{"type":"string","label":"Header Color","name":"textColor","options":[{"label":"Red","value":"red"},{"label":"Gray","value":"gray"},{"label":"Default","value":"default"}],"namespace":["page","afterBody","Agenda","textColor"],"searchable":true,"uid":false},{"type":"object","label":"Agenda Items","name":"agendaItemList","ui":{},"list":true,"fields":[{"type":"string","label":"Placeholder Text","name":"placeholder","namespace":["articlesIndex","_body","Agenda","agendaItemList","placeholder"]},{"type":"rich-text","label":"Body","name":"body","templates":[{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["company","_body","Agenda","agendaItemList","body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["company","_body","Agenda","agendaItemList","body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["company","_body","Agenda","agendaItemList","body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["company","_body","Agenda","agendaItemList","body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["company","_body","Agenda","agendaItemList","body","VerticalListItem","afterBody"]}],"namespace":["companyIndex","_body","Agenda","agendaItemList","body","VerticalListItem"]}],"namespace":["articlesIndex","_body","Agenda","agendaItemList","body"]}],"namespace":["page","afterBody","Agenda","agendaItemList"],"searchable":true,"uid":false}],"namespace":["page","afterBody","Agenda"]},{"label":"Agreement Form","name":"AgreementForm","ui":{"previewSrc":"/images/thumbs/tina/agreement-form.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["page","afterBody","AgreementForm","backgroundColor"],"searchable":true,"uid":false},{"type":"object","label":"Form fields","name":"fields","list":true,"fields":[{"type":"string","label":"ID","name":"id","required":true,"namespace":["articlesIndex","_body","AgreementForm","fields","id"]},{"type":"string","label":"Label","name":"label","required":true,"namespace":["articlesIndex","_body","AgreementForm","fields","label"]},{"type":"string","label":"Placeholder","name":"placeholder","namespace":["articlesIndex","_body","AgreementForm","fields","placeholder"]},{"type":"boolean","label":"Resizeable","name":"resizeable","required":true,"namespace":["articlesIndex","_body","AgreementForm","fields","resizeable"]}],"namespace":["page","afterBody","AgreementForm","fields"],"searchable":true,"uid":false}],"namespace":["page","afterBody","AgreementForm"]},{"label":"Interest Form","name":"InterestForm","ui":{"previewSrc":"/images/thumbs/tina/interest-form.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["page","afterBody","InterestForm","buttonText"],"searchable":true,"uid":false}],"namespace":["page","afterBody","InterestForm"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["page","afterBody","BookingButton","buttonText"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","namespace":["page","afterBody","BookingButton","animated"],"searchable":true,"uid":false},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["page","afterBody","BookingButton","buttonSubtitle"],"searchable":true,"uid":false}],"namespace":["page","afterBody","BookingButton"]},{"name":"BuiltOnAzure","label":"Built on Azure","ui":{"previewSrc":"/images/thumbs/tina/built-on-azure.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["page","afterBody","BuiltOnAzure","backgroundColor"],"searchable":true,"uid":false}],"namespace":["page","afterBody","BuiltOnAzure"]},{"name":"Carousel","label":"Carousel","ui":{"previewSrc":"/images/thumbs/tina/carousel.jpg"},"fields":[{"label":"Items","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Item description","link":"/","openIn":"sameWindow"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["articlesIndex","_body","Carousel","items","label"]},{"type":"string","label":"URL","name":"link","description":"If link contains ssw.com.au, you can skip the full URL and just use the path. e.g. /services","namespace":["articlesIndex","_body","Carousel","items","link"]},{"type":"string","label":"Open in","name":"openIn","description":"If it is external link, please select 'New window' option.","options":[{"label":"Same window","value":"sameWindow"},{"label":"Modal","value":"modal"},{"label":"New window","value":"newWindow"}],"namespace":["articlesIndex","_body","Carousel","items","openIn"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","Carousel","items","imgSrc","uploadDir"]},"namespace":["articlesIndex","_body","Carousel","items","imgSrc"]}],"namespace":["page","afterBody","Carousel","items"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["page","afterBody","Carousel","backgroundColor"],"searchable":true,"uid":false},{"type":"number","label":"Delay (Seconds)","name":"delay","required":true,"namespace":["page","afterBody","Carousel","delay"],"searchable":true,"uid":false},{"type":"boolean","label":"Show on mobile devices","name":"showOnMobileDevices","namespace":["page","afterBody","Carousel","showOnMobileDevices"],"searchable":true,"uid":false}],"namespace":["page","afterBody","Carousel"]},{"name":"Citation","label":"Citation","fields":[{"type":"string","label":"author","name":"author","namespace":["page","afterBody","Citation","author"],"searchable":true,"uid":false},{"type":"string","label":"article","name":"article","required":true,"namespace":["page","afterBody","Citation","article"],"searchable":true,"uid":false}],"namespace":["page","afterBody","Citation"]},{"label":"Client List","name":"ClientList","ui":{"previewSrc":"/images/thumbs/tina/clients-list.jpg"},"fields":[{"type":"object","name":"categories","label":"Categories","list":true,"fields":[{"type":"reference","name":"category","label":"Category","collections":["clientCategories"],"namespace":["articlesIndex","_body","ClientList","categories","category"]}],"ui":{},"namespace":["page","afterBody","ClientList","categories"],"searchable":true,"uid":false},{"type":"object","name":"clients","label":"Clients list","list":true,"ui":{"previewSrc":"/images/thumbs/tina/clients-list.jpg"},"fields":[{"type":"string","name":"name","label":"Name","namespace":["articlesIndex","_body","ClientList","clients","name"]},{"type":"image","name":"logo","label":"Logo","namespace":["articlesIndex","_body","ClientList","clients","logo"]},{"type":"string","name":"logoUrl","label":"Logo URL","namespace":["articlesIndex","_body","ClientList","clients","logoUrl"]},{"type":"rich-text","name":"content","label":"Content","templates":[{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["company","_body","ClientList","clients","content","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["company","_body","ClientList","clients","content","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["company","_body","ClientList","clients","content","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["company","_body","ClientList","clients","content","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["company","_body","ClientList","clients","content","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["company","_body","ClientList","clients","content","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["company","_body","ClientList","clients","content","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["company","_body","ClientList","clients","content","UtilityButton","openInNewTab"]}],"namespace":["companyIndex","_body","ClientList","clients","content","UtilityButton"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["company","_body","ClientList","clients","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["company","_body","ClientList","clients","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["company","_body","ClientList","clients","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["company","_body","ClientList","clients","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["company","_body","ClientList","clients","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["company","_body","ClientList","clients","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["company","_body","ClientList","clients","content","VideoEmbed","duration"]}],"namespace":["companyIndex","_body","ClientList","clients","content","VideoEmbed"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["company","_body","ClientList","clients","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["company","_body","ClientList","clients","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["company","_body","ClientList","clients","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["company","_body","ClientList","clients","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["company","_body","ClientList","clients","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["company","_body","ClientList","clients","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["company","_body","ClientList","clients","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["company","_body","ClientList","clients","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["company","_body","ClientList","clients","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["company","_body","ClientList","clients","content","CustomImage","sizes"]}],"namespace":["companyIndex","_body","ClientList","clients","content","CustomImage"]},{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["company","_body","ClientList","clients","content","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["company","_body","ClientList","clients","content","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["caseStudy","content","ClientList","clients","content","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["caseStudy","content","ClientList","clients","content","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["caseStudy","content","ClientList","clients","content","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["caseStudy","content","ClientList","clients","content","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["caseStudy","content","ClientList","clients","content","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["caseStudy","content","ClientList","clients","content","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["caseStudy","content","ClientList","clients","content","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["caseStudy","content","ClientList","clients","content","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["caseStudy","content","ClientList","clients","content","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["caseStudy","content","ClientList","clients","content","ContentCard","content","CustomImage","sizes"]}],"namespace":["caseStudy","_body","ClientList","clients","content","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["caseStudy","content","ClientList","clients","content","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["caseStudy","content","ClientList","clients","content","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["caseStudy","content","ClientList","clients","content","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["caseStudy","content","ClientList","clients","content","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["caseStudy","content","ClientList","clients","content","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["caseStudy","_body","ClientList","clients","content","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["caseStudy","content","ClientList","clients","content","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["caseStudy","content","ClientList","clients","content","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["caseStudy","content","ClientList","clients","content","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["caseStudy","content","ClientList","clients","content","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["caseStudy","content","ClientList","clients","content","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["caseStudy","content","ClientList","clients","content","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["caseStudy","content","ClientList","clients","content","ContentCard","content","VideoEmbed","duration"]}],"namespace":["caseStudy","_body","ClientList","clients","content","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["caseStudy","content","ClientList","clients","content","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["caseStudy","content","ClientList","clients","content","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["consulting","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["consulting","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["consulting","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["consulting","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["consulting","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["caseStudy","content","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["caseStudy","_body","ClientList","clients","content","ContentCard","content","ColorBlock"]}],"namespace":["company","_body","ClientList","clients","content","ContentCard","content"]}],"namespace":["companyIndex","_body","ClientList","clients","content","ContentCard"]}],"namespace":["articlesIndex","_body","ClientList","clients","content"]},{"type":"string","name":"caseStudyUrl","label":"Case study URL","namespace":["articlesIndex","_body","ClientList","clients","caseStudyUrl"]},{"type":"object","name":"categories","label":"Categories","list":true,"ui":{},"fields":[{"type":"reference","name":"category","label":"Category","collections":["clientCategories"],"namespace":["companyIndex","_body","ClientList","clients","categories","category"]}],"namespace":["articlesIndex","_body","ClientList","clients","categories"]}],"namespace":["page","afterBody","ClientList","clients"],"searchable":true,"uid":false}],"namespace":["page","afterBody","ClientList"]},{"name":"ClientLogos","label":"Client Logos","ui":{"previewSrc":"/images/thumbs/tina/client-logos.jpg"},"fields":[{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["page","afterBody","ClientLogos","altText"],"searchable":true,"uid":false}],"namespace":["page","afterBody","ClientLogos"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["page","afterBody","ColorBlock","title"],"searchable":true,"uid":false},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["page","afterBody","ColorBlock","subTitle"],"searchable":true,"uid":false},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["articlesIndex","_body","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["articlesIndex","_body","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["articlesIndex","_body","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["articlesIndex","_body","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["articlesIndex","_body","ColorBlock","colorRow","caption"]}],"namespace":["page","afterBody","ColorBlock","colorRow"],"searchable":true,"uid":false}],"namespace":["page","afterBody","ColorBlock"]},{"name":"ColorPalette","label":"Color Palette","ui":{"previewSrc":"/images/thumbs/tina/color-palette.jpg"},"fields":[{"type":"string","label":"Name","name":"name","namespace":["page","afterBody","ColorPalette","name"],"searchable":true,"uid":false}],"namespace":["page","afterBody","ColorPalette"]},{"name":"Content","label":"Content","ui":{"previewSrc":"/images/thumbs/tina/content.jpg","defaultItem":{"body":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["page","afterBody","Content","title"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["companyIndex","_body","Content","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["companyIndex","_body","Content","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["companyIndex","_body","Content","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["companyIndex","_body","Content","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["companyIndex","_body","Content","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["companyIndex","_body","Content","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["companyIndex","_body","Content","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["companyIndex","_body","Content","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["companyIndex","_body","Content","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["companyIndex","_body","Content","content","CustomImage","sizes"]}],"namespace":["articlesIndex","_body","Content","content","CustomImage"]},{"name":"ClientLogos","label":"Client Logos","ui":{"previewSrc":"/images/thumbs/tina/client-logos.jpg"},"fields":[{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["companyIndex","_body","Content","content","ClientLogos","altText"]}],"namespace":["articlesIndex","_body","Content","content","ClientLogos"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["companyIndex","_body","Content","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["companyIndex","_body","Content","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["companyIndex","_body","Content","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["companyIndex","_body","Content","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["companyIndex","_body","Content","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["companyIndex","_body","Content","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["companyIndex","_body","Content","content","VideoEmbed","duration"]}],"namespace":["articlesIndex","_body","Content","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["companyIndex","_body","Content","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["companyIndex","_body","Content","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["company","_body","Content","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["company","_body","Content","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["company","_body","Content","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["company","_body","Content","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["company","_body","Content","content","ColorBlock","colorRow","caption"]}],"namespace":["companyIndex","_body","Content","content","ColorBlock","colorRow"]}],"namespace":["articlesIndex","_body","Content","content","ColorBlock"]}],"namespace":["page","afterBody","Content","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Container Padding","name":"paddingClass","options":["Mobile: No Padding","Mobile: No Top and Horizontal Padding"],"namespace":["page","afterBody","Content","paddingClass"],"searchable":true,"uid":false},{"type":"string","label":"Text size","name":"size","options":[{"label":"small","value":"sm"},{"label":"normal","value":"base"},{"label":"large","value":"lg"},{"label":"extra large","value":"xl"},{"label":"2x large","value":"2xl"}],"namespace":["page","afterBody","Content","size"],"searchable":true,"uid":false},{"type":"string","label":"Align","name":"align","options":[{"label":"Left","value":"left"},{"label":"Center","value":"center"},{"label":"Right","value":"right"}],"namespace":["page","afterBody","Content","align"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["page","afterBody","Content","backgroundColor"],"searchable":true,"uid":false}],"namespace":["page","afterBody","Content"]},{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["page","afterBody","ContentCard","prose"],"searchable":true,"uid":false},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["page","afterBody","ContentCard","centerAlignedText"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["companyIndex","_body","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["companyIndex","_body","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["companyIndex","_body","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["companyIndex","_body","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["companyIndex","_body","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["companyIndex","_body","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["companyIndex","_body","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["companyIndex","_body","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["companyIndex","_body","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["companyIndex","_body","ContentCard","content","CustomImage","sizes"]}],"namespace":["articlesIndex","_body","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["companyIndex","_body","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["companyIndex","_body","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["companyIndex","_body","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["companyIndex","_body","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["companyIndex","_body","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["articlesIndex","_body","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["companyIndex","_body","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["companyIndex","_body","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["companyIndex","_body","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["companyIndex","_body","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["companyIndex","_body","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["companyIndex","_body","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["companyIndex","_body","ContentCard","content","VideoEmbed","duration"]}],"namespace":["articlesIndex","_body","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["companyIndex","_body","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["companyIndex","_body","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["company","_body","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["company","_body","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["company","_body","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["company","_body","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["company","_body","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["companyIndex","_body","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["articlesIndex","_body","ContentCard","content","ColorBlock"]}],"namespace":["page","afterBody","ContentCard","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["page","afterBody","ContentCard"]},{"name":"CustomDownloadButton","label":"Custom Download Button","ui":{"previewSrc":"/images/thumbs/tina/custom-download-button.jpg"},"fields":[{"type":"string","label":"Text","name":"btnText","namespace":["page","afterBody","CustomDownloadButton","btnText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"btnLink","namespace":["page","afterBody","CustomDownloadButton","btnLink"],"searchable":true,"uid":false}],"namespace":["page","afterBody","CustomDownloadButton"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["page","afterBody","CustomImage","src"],"searchable":false,"uid":false},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["page","afterBody","CustomImage","altText"],"searchable":true,"uid":false},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["page","afterBody","CustomImage","alignment"],"searchable":true,"uid":false},{"type":"number","label":"Height","name":"height","required":true,"namespace":["page","afterBody","CustomImage","height"],"searchable":true,"uid":false},{"type":"number","label":"Width","name":"width","required":true,"namespace":["page","afterBody","CustomImage","width"],"searchable":true,"uid":false},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["page","afterBody","CustomImage","link"],"searchable":true,"uid":false},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["page","afterBody","CustomImage","customClass"],"searchable":true,"uid":false},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["page","afterBody","CustomImage","caption"],"searchable":true,"uid":false},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["page","afterBody","CustomImage","captionColor"],"searchable":true,"uid":false},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["page","afterBody","CustomImage","sizes"],"searchable":true,"uid":false}],"namespace":["page","afterBody","CustomImage"]},{"name":"DomainFromQuery","label":"Domain from query","ui":{"previewSrc":"/images/thumbs/tina/domain-from-query.jpg"},"fields":[{"name":"title","label":"Title","type":"string","description":"This is a H1 heading","namespace":["page","afterBody","DomainFromQuery","title"],"searchable":true,"uid":false},{"name":"showDomain","label":"Show domain name","type":"boolean","description":"Query param in URL must have key of 'domain'","namespace":["page","afterBody","DomainFromQuery","showDomain"],"searchable":true,"uid":false}],"namespace":["page","afterBody","DomainFromQuery"]},{"name":"DownloadBlock","label":"Download Block","ui":{"previewSrc":"/images/thumbs/tina/download-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["page","afterBody","DownloadBlock","title"],"searchable":true,"uid":false},{"type":"object","label":"Downloads","name":"downloads","ui":{},"list":true,"fields":[{"type":"string","label":"Header","name":"header","namespace":["articlesIndex","_body","DownloadBlock","downloads","header"]},{"type":"image","label":"Image","name":"img","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","img","uploadDir"]},"namespace":["articlesIndex","_body","DownloadBlock","downloads","img"]},{"type":"string","label":"Image Background","name":"imgBackground","options":["black","grey","white","darkgrey","darkgreen"],"namespace":["articlesIndex","_body","DownloadBlock","downloads","imgBackground"]},{"type":"string","label":"First Link Text","name":"firstLinkText","description":"Defaults to PNG","namespace":["articlesIndex","_body","DownloadBlock","downloads","firstLinkText"]},{"type":"image","label":"First Link","name":"firstLink","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","firstLink","uploadDir"]},"namespace":["articlesIndex","_body","DownloadBlock","downloads","firstLink"]},{"type":"string","label":"Second Link Text","name":"secondLinkText","description":"Defaults to PDF","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","secondLinkText","uploadDir"]},"namespace":["articlesIndex","_body","DownloadBlock","downloads","secondLinkText"]},{"type":"image","label":"Second Link","name":"secondLink","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","secondLink","uploadDir"]},"namespace":["articlesIndex","_body","DownloadBlock","downloads","secondLink"]}],"namespace":["page","afterBody","DownloadBlock","downloads"],"searchable":true,"uid":false},{"type":"boolean","label":"Bottom border","name":"bottomBorder","namespace":["page","afterBody","DownloadBlock","bottomBorder"],"searchable":true,"uid":false}],"namespace":["page","afterBody","DownloadBlock"]},{"name":"DynamicColumns","label":"Dynamic Column Layout","fields":[{"type":"rich-text","label":"Column text body","name":"colBody","required":true,"namespace":["page","afterBody","DynamicColumns","colBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"number","label":"Number of columns","name":"colCount","required":true,"ui":{},"namespace":["page","afterBody","DynamicColumns","colCount"],"searchable":true,"uid":false}],"namespace":["page","afterBody","DynamicColumns"]},{"name":"EventBooking","label":"Events Booking","ui":{"previewSrc":"/images/thumbs/tina/events-booking.jpg"},"fields":[{"type":"number","label":"Duration (In Days)","name":"eventDurationInDays","required":true,"namespace":["page","afterBody","EventBooking","eventDurationInDays"],"searchable":true,"uid":false},{"type":"number","label":"Price","name":"price","required":true,"namespace":["page","afterBody","EventBooking","price"],"searchable":true,"uid":false},{"type":"number","label":"Discount Price","name":"discountPrice","namespace":["page","afterBody","EventBooking","discountPrice"],"searchable":true,"uid":false},{"type":"string","name":"gstText","label":"Select GST Option","options":["inc GST","+ GST"],"required":true,"namespace":["page","afterBody","EventBooking","gstText"],"searchable":true,"uid":false},{"type":"string","label":"Discount Note","name":"discountNote","namespace":["page","afterBody","EventBooking","discountNote"],"searchable":true,"uid":false},{"type":"object","label":"Event","name":"eventList","ui":{},"list":true,"fields":[{"type":"string","label":"City","name":"city","namespace":["articlesIndex","_body","EventBooking","eventList","city"]},{"type":"datetime","label":"Start Date","name":"date","ui":{},"namespace":["articlesIndex","_body","EventBooking","eventList","date"]},{"type":"string","label":"Booking URL","name":"bookingURL","namespace":["articlesIndex","_body","EventBooking","eventList","bookingURL"]},{"type":"reference","label":"Location","name":"location","collections":["locations"],"namespace":["articlesIndex","_body","EventBooking","eventList","location"]}],"namespace":["page","afterBody","EventBooking","eventList"],"searchable":true,"uid":false}],"namespace":["page","afterBody","EventBooking"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["companyIndex","_body","EventLink","content","Flag","country"]}],"namespace":["articlesIndex","_body","EventLink","content","Flag"]}],"namespace":["page","afterBody","EventLink","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Link","name":"link","namespace":["page","afterBody","EventLink","link"],"searchable":true,"uid":false},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["page","afterBody","EventLink","eventThumbnail"],"searchable":false,"uid":false},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["page","afterBody","EventLink","thumbnailAlt"],"searchable":true,"uid":false}],"namespace":["page","afterBody","EventLink"]},{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["page","afterBody","Flag","country"],"searchable":true,"uid":false}],"namespace":["page","afterBody","Flag"]},{"name":"FixedColumns","label":"Fixed Column Layout (2 columns)","ui":{"previewSrc":"/images/thumbs/tina/fixed-columns.jpg"},"fields":[{"type":"rich-text","label":"Header Section (Optional)","name":"headerSection","namespace":["page","afterBody","FixedColumns","headerSection"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"First column text","name":"firstColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["articles","subTitle","FixedColumns","firstColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["articles","subTitle","FixedColumns","firstColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["company","subTitle","FixedColumns","firstColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["company","subTitle","FixedColumns","firstColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["company","subTitle","FixedColumns","firstColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["company","subTitle","FixedColumns","firstColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["company","subTitle","FixedColumns","firstColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["company","subTitle","FixedColumns","firstColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["company","subTitle","FixedColumns","firstColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["company","subTitle","FixedColumns","firstColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["company","subTitle","FixedColumns","firstColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["company","subTitle","FixedColumns","firstColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["companyIndex","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["company","subTitle","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["company","subTitle","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["company","subTitle","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["company","subTitle","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["company","subTitle","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["companyIndex","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["company","subTitle","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["company","subTitle","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["company","subTitle","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["company","subTitle","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["company","subTitle","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["company","subTitle","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["company","subTitle","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["companyIndex","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["company","subTitle","FixedColumns","firstColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["company","subTitle","FixedColumns","firstColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["company","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["company","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["company","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["company","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["company","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["company","subTitle","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["companyIndex","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock"]}],"namespace":["articles","subTitle","FixedColumns","firstColBody","ContentCard","content"]}],"namespace":["articlesIndex","_body","FixedColumns","firstColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["articles","subTitle","FixedColumns","firstColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["articles","subTitle","FixedColumns","firstColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["articles","subTitle","FixedColumns","firstColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["articles","subTitle","FixedColumns","firstColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["articles","subTitle","FixedColumns","firstColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["articles","subTitle","FixedColumns","firstColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["articles","subTitle","FixedColumns","firstColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["articles","subTitle","FixedColumns","firstColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["articles","subTitle","FixedColumns","firstColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["articles","subTitle","FixedColumns","firstColBody","CustomImage","sizes"]}],"namespace":["articlesIndex","_body","FixedColumns","firstColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["company","subTitle","FixedColumns","firstColBody","EventLink","content","Flag","country"]}],"namespace":["companyIndex","_body","FixedColumns","firstColBody","EventLink","content","Flag"]}],"namespace":["articles","subTitle","FixedColumns","firstColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["articles","subTitle","FixedColumns","firstColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["articles","subTitle","FixedColumns","firstColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["articles","subTitle","FixedColumns","firstColBody","EventLink","thumbnailAlt"]}],"namespace":["articlesIndex","_body","FixedColumns","firstColBody","EventLink"]}],"namespace":["page","afterBody","FixedColumns","firstColBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"Second column text","name":"secondColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["articles","subTitle","FixedColumns","secondColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["articles","subTitle","FixedColumns","secondColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["company","subTitle","FixedColumns","secondColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["company","subTitle","FixedColumns","secondColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["company","subTitle","FixedColumns","secondColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["company","subTitle","FixedColumns","secondColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["company","subTitle","FixedColumns","secondColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["company","subTitle","FixedColumns","secondColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["company","subTitle","FixedColumns","secondColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["company","subTitle","FixedColumns","secondColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["company","subTitle","FixedColumns","secondColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["company","subTitle","FixedColumns","secondColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["companyIndex","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["company","subTitle","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["company","subTitle","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["company","subTitle","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["company","subTitle","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["company","subTitle","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["companyIndex","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["company","subTitle","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["company","subTitle","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["company","subTitle","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["company","subTitle","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["company","subTitle","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["company","subTitle","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["company","subTitle","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["companyIndex","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["company","subTitle","FixedColumns","secondColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["company","subTitle","FixedColumns","secondColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["company","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["company","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["company","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["company","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["company","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["company","subTitle","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["companyIndex","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock"]}],"namespace":["articles","subTitle","FixedColumns","secondColBody","ContentCard","content"]}],"namespace":["articlesIndex","_body","FixedColumns","secondColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["articles","subTitle","FixedColumns","secondColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["articles","subTitle","FixedColumns","secondColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["articles","subTitle","FixedColumns","secondColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["articles","subTitle","FixedColumns","secondColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["articles","subTitle","FixedColumns","secondColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["articles","subTitle","FixedColumns","secondColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["articles","subTitle","FixedColumns","secondColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["articles","subTitle","FixedColumns","secondColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["articles","subTitle","FixedColumns","secondColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["articles","subTitle","FixedColumns","secondColBody","CustomImage","sizes"]}],"namespace":["articlesIndex","_body","FixedColumns","secondColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["company","subTitle","FixedColumns","secondColBody","EventLink","content","Flag","country"]}],"namespace":["companyIndex","_body","FixedColumns","secondColBody","EventLink","content","Flag"]}],"namespace":["articles","subTitle","FixedColumns","secondColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["articles","subTitle","FixedColumns","secondColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["articles","subTitle","FixedColumns","secondColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["articles","subTitle","FixedColumns","secondColBody","EventLink","thumbnailAlt"]}],"namespace":["articlesIndex","_body","FixedColumns","secondColBody","EventLink"]}],"namespace":["page","afterBody","FixedColumns","secondColBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["page","afterBody","FixedColumns"]},{"name":"FixedTabsLayout","label":"Fixed Tabs Layout","ui":{"previewSrc":"/images/thumbs/tina/fixed-tabs-layout.jpg"},"fields":[{"type":"string","name":"firstTab","label":"First Tab","namespace":["page","afterBody","FixedTabsLayout","firstTab"],"searchable":true,"uid":false},{"type":"rich-text","name":"firstHeading","label":"First Heading","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["companyIndex","_body","FixedTabsLayout","firstHeading","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["companyIndex","_body","FixedTabsLayout","firstHeading","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["companyIndex","_body","FixedTabsLayout","firstHeading","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["companyIndex","_body","FixedTabsLayout","firstHeading","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["companyIndex","_body","FixedTabsLayout","firstHeading","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["companyIndex","_body","FixedTabsLayout","firstHeading","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["companyIndex","_body","FixedTabsLayout","firstHeading","VideoEmbed","duration"]}],"namespace":["articlesIndex","_body","FixedTabsLayout","firstHeading","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["companyIndex","_body","FixedTabsLayout","firstHeading","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["companyIndex","_body","FixedTabsLayout","firstHeading","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["companyIndex","_body","FixedTabsLayout","firstHeading","BookingButton","buttonSubtitle"]}],"namespace":["articlesIndex","_body","FixedTabsLayout","firstHeading","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["companyIndex","_body","FixedTabsLayout","firstHeading","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["company","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["company","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["company","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["company","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList","skills"]}],"namespace":["companyIndex","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["company","_body","FixedTabsLayout","firstHeading","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["company","_body","FixedTabsLayout","firstHeading","ExpertBlock","link","url"]}],"namespace":["companyIndex","_body","FixedTabsLayout","firstHeading","ExpertBlock","link"]}],"namespace":["articlesIndex","_body","FixedTabsLayout","firstHeading","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["company","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["company","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["company","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["caseStudy","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["caseStudy","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["caseStudy","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["company","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["companyIndex","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["articlesIndex","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["companyIndex","_body","FixedTabsLayout","firstHeading","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["companyIndex","_body","FixedTabsLayout","firstHeading","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["companyIndex","_body","FixedTabsLayout","firstHeading","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["companyIndex","_body","FixedTabsLayout","firstHeading","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["companyIndex","_body","FixedTabsLayout","firstHeading","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["companyIndex","_body","FixedTabsLayout","firstHeading","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["companyIndex","_body","FixedTabsLayout","firstHeading","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["companyIndex","_body","FixedTabsLayout","firstHeading","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["companyIndex","_body","FixedTabsLayout","firstHeading","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["companyIndex","_body","FixedTabsLayout","firstHeading","CustomImage","sizes"]}],"namespace":["articlesIndex","_body","FixedTabsLayout","firstHeading","CustomImage"]}],"namespace":["page","afterBody","FixedTabsLayout","firstHeading"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","name":"firstBody","label":"First Body","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["companyIndex","_body","FixedTabsLayout","firstBody","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["companyIndex","_body","FixedTabsLayout","firstBody","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["companyIndex","_body","FixedTabsLayout","firstBody","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["companyIndex","_body","FixedTabsLayout","firstBody","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["companyIndex","_body","FixedTabsLayout","firstBody","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["companyIndex","_body","FixedTabsLayout","firstBody","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["companyIndex","_body","FixedTabsLayout","firstBody","VideoEmbed","duration"]}],"namespace":["articlesIndex","_body","FixedTabsLayout","firstBody","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["companyIndex","_body","FixedTabsLayout","firstBody","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["companyIndex","_body","FixedTabsLayout","firstBody","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["companyIndex","_body","FixedTabsLayout","firstBody","BookingButton","buttonSubtitle"]}],"namespace":["articlesIndex","_body","FixedTabsLayout","firstBody","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["companyIndex","_body","FixedTabsLayout","firstBody","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["company","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["company","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["company","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["company","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList","skills"]}],"namespace":["companyIndex","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["company","_body","FixedTabsLayout","firstBody","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["company","_body","FixedTabsLayout","firstBody","ExpertBlock","link","url"]}],"namespace":["companyIndex","_body","FixedTabsLayout","firstBody","ExpertBlock","link"]}],"namespace":["articlesIndex","_body","FixedTabsLayout","firstBody","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["company","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["company","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["company","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["caseStudy","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["caseStudy","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["caseStudy","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["company","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["companyIndex","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["articlesIndex","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["companyIndex","_body","FixedTabsLayout","firstBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["companyIndex","_body","FixedTabsLayout","firstBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["companyIndex","_body","FixedTabsLayout","firstBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["companyIndex","_body","FixedTabsLayout","firstBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["companyIndex","_body","FixedTabsLayout","firstBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["companyIndex","_body","FixedTabsLayout","firstBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["companyIndex","_body","FixedTabsLayout","firstBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["companyIndex","_body","FixedTabsLayout","firstBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["companyIndex","_body","FixedTabsLayout","firstBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["companyIndex","_body","FixedTabsLayout","firstBody","CustomImage","sizes"]}],"namespace":["articlesIndex","_body","FixedTabsLayout","firstBody","CustomImage"]}],"namespace":["page","afterBody","FixedTabsLayout","firstBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","name":"secondTab","label":"Second Tab","namespace":["page","afterBody","FixedTabsLayout","secondTab"],"searchable":true,"uid":false},{"type":"rich-text","name":"secondHeading","label":"Second Heading","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["companyIndex","_body","FixedTabsLayout","secondHeading","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["companyIndex","_body","FixedTabsLayout","secondHeading","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["companyIndex","_body","FixedTabsLayout","secondHeading","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["companyIndex","_body","FixedTabsLayout","secondHeading","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["companyIndex","_body","FixedTabsLayout","secondHeading","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["companyIndex","_body","FixedTabsLayout","secondHeading","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["companyIndex","_body","FixedTabsLayout","secondHeading","VideoEmbed","duration"]}],"namespace":["articlesIndex","_body","FixedTabsLayout","secondHeading","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["companyIndex","_body","FixedTabsLayout","secondHeading","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["companyIndex","_body","FixedTabsLayout","secondHeading","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["companyIndex","_body","FixedTabsLayout","secondHeading","BookingButton","buttonSubtitle"]}],"namespace":["articlesIndex","_body","FixedTabsLayout","secondHeading","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["companyIndex","_body","FixedTabsLayout","secondHeading","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["company","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["company","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["company","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["company","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList","skills"]}],"namespace":["companyIndex","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["company","_body","FixedTabsLayout","secondHeading","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["company","_body","FixedTabsLayout","secondHeading","ExpertBlock","link","url"]}],"namespace":["companyIndex","_body","FixedTabsLayout","secondHeading","ExpertBlock","link"]}],"namespace":["articlesIndex","_body","FixedTabsLayout","secondHeading","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["company","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["company","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["company","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["caseStudy","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["caseStudy","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["caseStudy","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["company","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["companyIndex","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["articlesIndex","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["companyIndex","_body","FixedTabsLayout","secondHeading","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["companyIndex","_body","FixedTabsLayout","secondHeading","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["companyIndex","_body","FixedTabsLayout","secondHeading","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["companyIndex","_body","FixedTabsLayout","secondHeading","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["companyIndex","_body","FixedTabsLayout","secondHeading","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["companyIndex","_body","FixedTabsLayout","secondHeading","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["companyIndex","_body","FixedTabsLayout","secondHeading","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["companyIndex","_body","FixedTabsLayout","secondHeading","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["companyIndex","_body","FixedTabsLayout","secondHeading","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["companyIndex","_body","FixedTabsLayout","secondHeading","CustomImage","sizes"]}],"namespace":["articlesIndex","_body","FixedTabsLayout","secondHeading","CustomImage"]}],"namespace":["page","afterBody","FixedTabsLayout","secondHeading"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","name":"secondBody","label":"Second Body","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["companyIndex","_body","FixedTabsLayout","secondBody","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["companyIndex","_body","FixedTabsLayout","secondBody","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["companyIndex","_body","FixedTabsLayout","secondBody","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["companyIndex","_body","FixedTabsLayout","secondBody","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["companyIndex","_body","FixedTabsLayout","secondBody","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["companyIndex","_body","FixedTabsLayout","secondBody","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["companyIndex","_body","FixedTabsLayout","secondBody","VideoEmbed","duration"]}],"namespace":["articlesIndex","_body","FixedTabsLayout","secondBody","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["companyIndex","_body","FixedTabsLayout","secondBody","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["companyIndex","_body","FixedTabsLayout","secondBody","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["companyIndex","_body","FixedTabsLayout","secondBody","BookingButton","buttonSubtitle"]}],"namespace":["articlesIndex","_body","FixedTabsLayout","secondBody","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["companyIndex","_body","FixedTabsLayout","secondBody","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["company","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["company","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["company","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["company","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList","skills"]}],"namespace":["companyIndex","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["company","_body","FixedTabsLayout","secondBody","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["company","_body","FixedTabsLayout","secondBody","ExpertBlock","link","url"]}],"namespace":["companyIndex","_body","FixedTabsLayout","secondBody","ExpertBlock","link"]}],"namespace":["articlesIndex","_body","FixedTabsLayout","secondBody","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["company","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["company","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["company","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["caseStudy","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["caseStudy","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["caseStudy","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["company","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["companyIndex","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["articlesIndex","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["companyIndex","_body","FixedTabsLayout","secondBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["companyIndex","_body","FixedTabsLayout","secondBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["companyIndex","_body","FixedTabsLayout","secondBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["companyIndex","_body","FixedTabsLayout","secondBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["companyIndex","_body","FixedTabsLayout","secondBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["companyIndex","_body","FixedTabsLayout","secondBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["companyIndex","_body","FixedTabsLayout","secondBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["companyIndex","_body","FixedTabsLayout","secondBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["companyIndex","_body","FixedTabsLayout","secondBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["companyIndex","_body","FixedTabsLayout","secondBody","CustomImage","sizes"]}],"namespace":["articlesIndex","_body","FixedTabsLayout","secondBody","CustomImage"]}],"namespace":["page","afterBody","FixedTabsLayout","secondBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["page","afterBody","FixedTabsLayout"]},{"label":"Google Maps","name":"GoogleMaps","ui":{"previewSrc":"/images/thumbs/tina/google-maps.jpg"},"fields":[{"type":"string","label":"URL","name":"embedUrl","required":true,"namespace":["page","afterBody","GoogleMaps","embedUrl"],"searchable":true,"uid":false},{"type":"string","label":"Width","name":"embedWidth","namespace":["page","afterBody","GoogleMaps","embedWidth"],"searchable":true,"uid":false},{"type":"string","label":"Height","name":"embedHeight","namespace":["page","afterBody","GoogleMaps","embedHeight"],"searchable":true,"uid":false}],"namespace":["page","afterBody","GoogleMaps"]},{"label":"Grid Layout","name":"GridLayout","ui":{"previewSrc":"/images/thumbs/tina/grid-layout.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["page","afterBody","GridLayout","title"],"searchable":true,"uid":false},{"type":"object","list":true,"label":"Grid Items","name":"grids","ui":{},"fields":[{"type":"string","label":"Grid Title","name":"gridTitle","namespace":["articlesIndex","_body","GridLayout","grids","gridTitle"]},{"type":"boolean","label":"Show Grid Title","name":"showGridTitle","namespace":["articlesIndex","_body","GridLayout","grids","showGridTitle"]},{"type":"boolean","label":"Centered Grid Title","name":"centeredGridTitle","namespace":["articlesIndex","_body","GridLayout","grids","centeredGridTitle"]},{"type":"boolean","label":"Show Header Divider","name":"showHeaderDivider","namespace":["articlesIndex","_body","GridLayout","grids","showHeaderDivider"]},{"type":"boolean","label":"Offset Grid Start","name":"offsetGridStart","namespace":["articlesIndex","_body","GridLayout","grids","offsetGridStart"]},{"type":"object","label":"Blocks","name":"blocks","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["companyIndex","_body","GridLayout","grids","blocks","title"]},{"type":"boolean","label":"Show Title","name":"showTitle","namespace":["companyIndex","_body","GridLayout","grids","blocks","showTitle"]},{"type":"image","label":"Image","name":"image","uploadDir":{"namespace":["page","beforeBody","GridLayout","grids","blocks","image","uploadDir"]},"namespace":["companyIndex","_body","GridLayout","grids","blocks","image"]},{"type":"image","label":"Related Image","name":"relatedImage","uploadDir":{"namespace":["page","beforeBody","GridLayout","grids","blocks","relatedImage","uploadDir"]},"namespace":["companyIndex","_body","GridLayout","grids","blocks","relatedImage"]},{"type":"rich-text","name":"linkContent","label":"Link Content","templates":[{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["caseStudy","_body","GridLayout","grids","blocks","linkContent","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["caseStudy","_body","GridLayout","grids","blocks","linkContent","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["caseStudy","_body","GridLayout","grids","blocks","linkContent","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["caseStudy","_body","GridLayout","grids","blocks","linkContent","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["caseStudy","_body","GridLayout","grids","blocks","linkContent","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["caseStudy","_body","GridLayout","grids","blocks","linkContent","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["caseStudy","_body","GridLayout","grids","blocks","linkContent","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["caseStudy","_body","GridLayout","grids","blocks","linkContent","UtilityButton","openInNewTab"]}],"namespace":["company","_body","GridLayout","grids","blocks","linkContent","UtilityButton"]}],"namespace":["companyIndex","_body","GridLayout","grids","blocks","linkContent"]}],"namespace":["articlesIndex","_body","GridLayout","grids","blocks"]}],"namespace":["page","afterBody","GridLayout","grids"],"searchable":true,"uid":false}],"namespace":["page","afterBody","GridLayout"]},{"name":"Hero","label":"Hero","ui":{"previewSrc":"/blocks/hero.png","defaultItem":{"tagline":"Here's some text above the other text","headline":"This Big Text is Totally Awesome","text":"Phasellus scelerisque, libero eu finibus rutrum, risus risus accumsan libero, nec molestie urna dui a leo."}},"fields":[{"type":"string","label":"Tagline","name":"tagline","namespace":["page","afterBody","Hero","tagline"],"searchable":true,"uid":false},{"type":"string","label":"Headline","name":"headline","namespace":["page","afterBody","Hero","headline"],"searchable":true,"uid":false},{"label":"Text","name":"text","type":"rich-text","namespace":["page","afterBody","Hero","text"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"label":"Actions","name":"actions","type":"object","list":true,"ui":{"defaultItem":{"label":"Action Label","type":"button","icon":true,"link":"/"}},"fields":[{"label":"Label","name":"label","type":"string","namespace":["articlesIndex","_body","Hero","actions","label"]},{"label":"Type","name":"type","type":"string","options":[{"label":"Button","value":"button"},{"label":"Link","value":"link"}],"namespace":["articlesIndex","_body","Hero","actions","type"]},{"label":"Icon","name":"icon","type":"boolean","namespace":["articlesIndex","_body","Hero","actions","icon"]},{"label":"Link","name":"link","type":"string","namespace":["articlesIndex","_body","Hero","actions","link"]}],"namespace":["page","afterBody","Hero","actions"],"searchable":true,"uid":false},{"type":"object","label":"Image","name":"image","fields":[{"name":"src","label":"Image Source","type":"image","namespace":["articlesIndex","_body","Hero","image","src"]},{"name":"alt","label":"Alt Text","type":"string","namespace":["articlesIndex","_body","Hero","image","alt"]}],"namespace":["page","afterBody","Hero","image"],"searchable":true,"uid":false},{"type":"string","label":"Color","name":"color","options":[{"label":"Default","value":"default"},{"label":"Tint","value":"tint"},{"label":"Primary","value":"primary"}],"namespace":["page","afterBody","Hero","color"],"searchable":true,"uid":false}],"namespace":["page","afterBody","Hero"]},{"name":"HorizontalCard","label":"Horizontal Card","ui":{"previewSrc":"/images/thumbs/tina/horizontal-card.jpg"},"fields":[{"type":"object","label":"Cards","name":"cardList","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["articlesIndex","_body","HorizontalCard","cardList","title"]},{"type":"rich-text","label":"Content","name":"content","namespace":["articlesIndex","_body","HorizontalCard","cardList","content"]},{"type":"image","label":"Thumbnail","name":"thumbnail","uploadDir":{"namespace":["page","beforeBody","HorizontalCard","cardList","thumbnail","uploadDir"]},"namespace":["articlesIndex","_body","HorizontalCard","cardList","thumbnail"]},{"type":"string","label":"Link","name":"link","namespace":["articlesIndex","_body","HorizontalCard","cardList","link"]}],"namespace":["page","afterBody","HorizontalCard","cardList"],"searchable":true,"uid":false},{"type":"object","label":"Button","name":"button","fields":[{"type":"string","label":"Text","name":"text","namespace":["articlesIndex","_body","HorizontalCard","button","text"]},{"type":"string","label":"Link","name":"link","namespace":["articlesIndex","_body","HorizontalCard","button","link"]}],"namespace":["page","afterBody","HorizontalCard","button"],"searchable":true,"uid":false}],"namespace":["page","afterBody","HorizontalCard"]},{"name":"InternalCarousel","label":"Internal Carousel","ui":{"previewSrc":"/images/thumbs/tina/internal-carousel.jpg"},"fields":[{"label":"Images","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Image description"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["articlesIndex","_body","InternalCarousel","items","label"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","InternalCarousel","items","imgSrc","uploadDir"]},"namespace":["articlesIndex","_body","InternalCarousel","items","imgSrc"]}],"namespace":["page","afterBody","InternalCarousel","items"],"searchable":true,"uid":false},{"type":"string","label":"Header","name":"header","namespace":["page","afterBody","InternalCarousel","header"],"searchable":true,"uid":false},{"type":"rich-text","label":"Text","name":"paragraph","isBody":false,"namespace":["page","afterBody","InternalCarousel","paragraph"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Website","name":"website","namespace":["page","afterBody","InternalCarousel","website"],"searchable":true,"uid":false},{"type":"object","label":"Technologies","name":"technologies","list":true,"ui":{},"fields":[{"type":"string","label":"Name","name":"name","namespace":["articlesIndex","_body","InternalCarousel","technologies","name"]}],"namespace":["page","afterBody","InternalCarousel","technologies"],"searchable":true,"uid":false},{"type":"string","label":"Case Study","name":"caseStudyUrl","namespace":["page","afterBody","InternalCarousel","caseStudyUrl"],"searchable":true,"uid":false},{"type":"string","label":"Video URL","name":"videoUrl","namespace":["page","afterBody","InternalCarousel","videoUrl"],"searchable":true,"uid":false}],"namespace":["page","afterBody","InternalCarousel"]},{"label":"Join As Presenter","name":"joinAsPresenter","fields":[{"label":"Learn More Link","name":"link","type":"string","namespace":["page","afterBody","joinAsPresenter","link"],"searchable":true,"uid":false},{"label":"Image","name":"img","type":"image","namespace":["page","afterBody","joinAsPresenter","img"],"searchable":false,"uid":false}],"namespace":["page","afterBody","joinAsPresenter"]},{"label":"Join Github","name":"joinGithub","ui":{"previewSrc":"/images/thumbs/tina/join-github.jpg"},"fields":[{"label":"Title","name":"title","type":"string","namespace":["page","afterBody","joinGithub","title"],"searchable":true,"uid":false},{"label":"Join Github Link","name":"link","type":"string","namespace":["page","afterBody","joinGithub","link"],"searchable":true,"uid":false}],"namespace":["page","afterBody","joinGithub"]},{"name":"JotFormEmbed","label":"JotForm Embed","ui":{"previewSrc":"/images/thumbs/tina/jotform-embed.jpg"},"fields":[{"type":"string","name":"jotFormId","label":"JotForm Id","required":true,"namespace":["page","afterBody","JotFormEmbed","jotFormId"],"searchable":true,"uid":false},{"type":"string","label":"Button Text","name":"buttonText","namespace":["page","afterBody","JotFormEmbed","buttonText"],"searchable":true,"uid":false},{"type":"string","name":"containerClass","label":"Container Class","namespace":["page","afterBody","JotFormEmbed","containerClass"],"searchable":true,"uid":false},{"type":"string","label":"Button Class","name":"buttonClass","namespace":["page","afterBody","JotFormEmbed","buttonClass"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","namespace":["page","afterBody","JotFormEmbed","animated"],"searchable":true,"uid":false}],"namespace":["page","afterBody","JotFormEmbed"]},{"name":"LatestTech","label":"Latest Tech","ui":{"previewSrc":"/images/thumbs/tina/latest-tech.jpg"},"fields":[{"type":"reference","description":"Select a config file including a set of badges","collections":["userGroupGlobal"],"label":"Badges","name":"badges","namespace":["page","afterBody","LatestTech","badges"],"searchable":true,"uid":false}],"namespace":["page","afterBody","LatestTech"]},{"name":"LocationBlock","label":"Locations","ui":{"previewSrc":"/images/thumbs/tina/locations.jpg"},"fields":[{"type":"string","name":"title","label":"Title","namespace":["page","afterBody","LocationBlock","title"],"searchable":true,"uid":false},{"type":"object","label":"Location List","name":"locationList","list":true,"ui":{},"fields":[{"type":"reference","collections":["locations"],"label":"Location","name":"location","namespace":["articlesIndex","_body","LocationBlock","locationList","location"]}],"namespace":["page","afterBody","LocationBlock","locationList"],"searchable":true,"uid":false},{"type":"object","name":"chapelWebsite","label":"Chapel Website","fields":[{"type":"string","name":"title","label":"Text","namespace":["articlesIndex","_body","LocationBlock","chapelWebsite","title"]},{"type":"string","name":"URL","label":"URL","namespace":["articlesIndex","_body","LocationBlock","chapelWebsite","URL"]}],"namespace":["page","afterBody","LocationBlock","chapelWebsite"],"searchable":true,"uid":false}],"namespace":["page","afterBody","LocationBlock"]},{"name":"NewslettersTable","label":"Newsletters Table","ui":{"previewSrc":"/images/thumbs/tina/newsletters-table.jpg"},"fields":[{"type":"string","label":"Header text","name":"headerText","namespace":["page","afterBody","NewslettersTable","headerText"],"searchable":true,"uid":false}],"namespace":["page","afterBody","NewslettersTable"]},{"label":"Organizer","name":"organizer","fields":[{"type":"image","label":"Profile Image","name":"profileImg","namespace":["page","afterBody","organizer","profileImg"],"searchable":false,"uid":false},{"type":"string","label":"Profile Link","name":"profileLink","namespace":["page","afterBody","organizer","profileLink"],"searchable":true,"uid":false},{"type":"string","label":"Name","name":"name","namespace":["page","afterBody","organizer","name"],"searchable":true,"uid":false},{"type":"string","label":"Position","name":"position","namespace":["page","afterBody","organizer","position"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","namespace":["page","afterBody","organizer","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["page","afterBody","organizer"]},{"label":"Payment Block","name":"paymentBlock","ui":{"previewSrc":"/images/thumbs/tina/payment-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["page","afterBody","paymentBlock","title"],"searchable":true,"uid":false},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["page","afterBody","paymentBlock","subTitle"],"searchable":true,"uid":false},{"type":"reference","label":"Payment Links","name":"payments","collections":["paymentDetails"],"namespace":["page","afterBody","paymentBlock","payments"],"searchable":true,"uid":false},{"type":"rich-text","label":"Footer","name":"footer","namespace":["page","afterBody","paymentBlock","footer"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"image","label":"Credit Cards Image","name":"creditImgSrc","namespace":["page","afterBody","paymentBlock","creditImgSrc"],"searchable":false,"uid":false},{"type":"string","label":"Alt Text","name":"altTxt","namespace":["page","afterBody","paymentBlock","altTxt"],"searchable":true,"uid":false}],"namespace":["page","afterBody","paymentBlock"]},{"name":"PresenterBlock","label":"Presenters","ui":{"previewSrc":"/images/thumbs/tina/presenters.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["page","afterBody","PresenterBlock","header"],"searchable":true,"uid":false},{"type":"object","name":"presenterList","label":"Presenters","list":true,"ui":{},"fields":[{"type":"reference","name":"presenter","label":"Presenters","collections":["presenter"],"namespace":["articlesIndex","_body","PresenterBlock","presenterList","presenter"]}],"namespace":["page","afterBody","PresenterBlock","presenterList"],"searchable":true,"uid":false},{"type":"object","label":"Other Events","name":"otherEvent","fields":[{"type":"string","label":"Title","name":"title","namespace":["articlesIndex","_body","PresenterBlock","otherEvent","title"]},{"type":"string","label":"URL","name":"eventURL","namespace":["articlesIndex","_body","PresenterBlock","otherEvent","eventURL"]}],"namespace":["page","afterBody","PresenterBlock","otherEvent"],"searchable":true,"uid":false}],"namespace":["page","afterBody","PresenterBlock"]},{"label":"Recurring Event","name":"RecurringEvent","ui":{"previewSrc":"/images/thumbs/tina/recurring-event.jpg"},"fields":[{"type":"string","label":"Apply Link Redirect","name":"applyLinkRedirect","namespace":["page","afterBody","RecurringEvent","applyLinkRedirect"],"searchable":true,"uid":false},{"type":"string","label":"Day","name":"day","options":[{"label":"Monday","value":"monday"},{"label":"Tuesday","value":"tuesday"},{"label":"Wednesday","value":"wednesday"},{"label":"Thursday","value":"thursday"},{"label":"Friday","value":"friday"},{"label":"Saturday","value":"saturday"},{"label":"Sunday","value":"sunday"}],"required":true,"namespace":["page","afterBody","RecurringEvent","day"],"searchable":true,"uid":false}],"namespace":["page","afterBody","RecurringEvent"]},{"name":"SectionHeader","label":"Section Header","ui":{"previewSrc":"/images/thumbs/tina/section-header.jpg"},"fields":[{"type":"string","label":"Header Text","name":"headerText","namespace":["page","afterBody","SectionHeader","headerText"],"searchable":true,"uid":false}],"namespace":["page","afterBody","SectionHeader"]},{"name":"ServiceCards","label":"Service Cards","ui":{"previewSrc":"/images/thumbs/tina/services-cards.jpg"},"fields":[{"type":"string","label":"Big Cards Label","name":"bigCardsLabel","namespace":["page","afterBody","ServiceCards","bigCardsLabel"],"searchable":true,"uid":false},{"label":"Big Cards","name":"bigCards","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["articlesIndex","_body","ServiceCards","bigCards","title"]},{"type":"string","label":"Description","component":"textarea","name":"description","namespace":["articlesIndex","_body","ServiceCards","bigCards","description"]},{"type":"string","label":"URL","name":"link","namespace":["articlesIndex","_body","ServiceCards","bigCards","link"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Red","value":"red"},{"label":"Light Gray","value":"lightgray"},{"label":"Medium Gray","value":"mediumgray"},{"label":"Dark Gray","value":"darkgray"}],"namespace":["articlesIndex","_body","ServiceCards","bigCards","color"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","ServiceCards","bigCards","imgSrc","uploadDir"]},"namespace":["articlesIndex","_body","ServiceCards","bigCards","imgSrc"]}],"namespace":["page","afterBody","ServiceCards","bigCards"],"searchable":true,"uid":false},{"type":"string","label":"Small Cards Label","name":"smallCardsLabel","namespace":["page","afterBody","ServiceCards","smallCardsLabel"],"searchable":true,"uid":false},{"label":"Small Cards","name":"smallCards","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["articlesIndex","_body","ServiceCards","smallCards","title"]},{"type":"string","label":"URL","name":"link","namespace":["articlesIndex","_body","ServiceCards","smallCards","link"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Red","value":"red"},{"label":"Light Gray","value":"lightgray"},{"label":"Medium Gray","value":"mediumgray"},{"label":"Dark Gray","value":"darkgray"}],"namespace":["articlesIndex","_body","ServiceCards","smallCards","color"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","ServiceCards","smallCards","imgSrc","uploadDir"]},"namespace":["articlesIndex","_body","ServiceCards","smallCards","imgSrc"]},{"type":"boolean","label":"External Page","description":"Select this if the link is not part of the website. This includes SSW.Rules, and SSW.People links","name":"isExternal","namespace":["articlesIndex","_body","ServiceCards","smallCards","isExternal"]}],"namespace":["page","afterBody","ServiceCards","smallCards"],"searchable":true,"uid":false},{"label":"Links","name":"links","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["articlesIndex","_body","ServiceCards","links","label"]},{"type":"string","label":"URL","name":"link","namespace":["articlesIndex","_body","ServiceCards","links","link"]}],"namespace":["page","afterBody","ServiceCards","links"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["page","afterBody","ServiceCards","backgroundColor"],"searchable":true,"uid":false}],"namespace":["page","afterBody","ServiceCards"]},{"label":"Table Layout","name":"TableLayout","ui":{"previewSrc":"/images/thumbs/tina/table-layout.jpg"},"fields":[{"label":"Table Style","name":"tableStyle","type":"string","options":["none","basicBorder","styled","benefits"],"namespace":["page","afterBody","TableLayout","tableStyle"],"searchable":true,"uid":false},{"label":"First column bolded + left aligned","name":"firstColBold","type":"boolean","required":false,"namespace":["page","afterBody","TableLayout","firstColBold"],"searchable":true,"uid":false},{"type":"string","label":"Table Headers","name":"headers","list":true,"namespace":["page","afterBody","TableLayout","headers"],"searchable":true,"uid":false},{"type":"object","label":"Rows","name":"rows","list":true,"fields":[{"type":"object","label":"Cells","name":"cells","list":true,"fields":[{"type":"string","label":"Value","name":"cellValue","required":true,"component":{"namespace":["page","beforeBody","TableLayout","rows","cells","cellValue",""]},"namespace":["articles","subTitle","TableLayout","rows","cells","cellValue"]}],"ui":{},"namespace":["articlesIndex","_body","TableLayout","rows","cells"]},{"type":"boolean","label":"Is Heading","name":"isHeader","required":false,"namespace":["articlesIndex","_body","TableLayout","rows","isHeader"]}],"ui":{},"namespace":["page","afterBody","TableLayout","rows"],"searchable":true,"uid":false}],"namespace":["page","afterBody","TableLayout"]},{"name":"TestimonialsList","label":"Testimonials List","ui":{"previewSrc":"/images/thumbs/tina/testimonials.jpg"},"fields":[{"type":"object","label":"Exclude Categories","name":"excludedCategories","ui":{},"list":true,"fields":[{"type":"reference","label":"Category Name","name":"categoryName","collections":["testimonialCategories"],"namespace":["articlesIndex","_body","TestimonialsList","excludedCategories","categoryName"]}],"namespace":["page","afterBody","TestimonialsList","excludedCategories"],"searchable":true,"uid":false}],"namespace":["page","afterBody","TestimonialsList"]},{"label":"Training Information","name":"TrainingInformation","ui":{"previewSrc":"/images/thumbs/tina/training-information.jpg"},"fields":[{"type":"object","label":"Training Information Items","name":"trainingInformationItems","list":true,"fields":[{"type":"string","label":"Header","name":"header","namespace":["articlesIndex","_body","TrainingInformation","trainingInformationItems","header"]},{"type":"rich-text","label":"Body","name":"body","templates":[{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["company","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["company","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["company","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["company","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["company","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","afterBody"]}],"namespace":["companyIndex","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem"]},{"label":"Recurring Event","name":"RecurringEvent","ui":{"previewSrc":"/images/thumbs/tina/recurring-event.jpg"},"fields":[{"type":"string","label":"Apply Link Redirect","name":"applyLinkRedirect","namespace":["company","_body","TrainingInformation","trainingInformationItems","body","RecurringEvent","applyLinkRedirect"]},{"type":"string","label":"Day","name":"day","options":[{"label":"Monday","value":"monday"},{"label":"Tuesday","value":"tuesday"},{"label":"Wednesday","value":"wednesday"},{"label":"Thursday","value":"thursday"},{"label":"Friday","value":"friday"},{"label":"Saturday","value":"saturday"},{"label":"Sunday","value":"sunday"}],"required":true,"namespace":["company","_body","TrainingInformation","trainingInformationItems","body","RecurringEvent","day"]}],"namespace":["companyIndex","_body","TrainingInformation","trainingInformationItems","body","RecurringEvent"]}],"namespace":["articlesIndex","_body","TrainingInformation","trainingInformationItems","body"]}],"namespace":["page","afterBody","TrainingInformation","trainingInformationItems"],"searchable":true,"uid":false}],"namespace":["page","afterBody","TrainingInformation"]},{"label":"Training Learning Outcomes","name":"TrainingLearningOutcome","ui":{"previewSrc":"/images/thumbs/tina/training-learning-outcomes.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["page","afterBody","TrainingLearningOutcome","header"],"searchable":true,"uid":false},{"type":"object","label":"List Items","name":"listItems","list":true,"fields":[{"type":"string","label":"Title","name":"title","namespace":["articlesIndex","_body","TrainingLearningOutcome","listItems","title"]},{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["articlesIndex","_body","TrainingLearningOutcome","listItems","content"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","TrainingLearningOutcome","listItems","icon","uploadDir"]},"namespace":["articlesIndex","_body","TrainingLearningOutcome","listItems","icon"]}],"namespace":["page","afterBody","TrainingLearningOutcome","listItems"],"searchable":true,"uid":false}],"namespace":["page","afterBody","TrainingLearningOutcome"]},{"label":"Tweet Embed","name":"TweetEmbed","ui":{"previewSrc":"/images/thumbs/tina/tweet-embed.jpg"},"fields":[{"type":"string","name":"url","label":"Tweet URL","required":true,"namespace":["page","afterBody","TweetEmbed","url"],"searchable":true,"uid":false}],"namespace":["page","afterBody","TweetEmbed"]},{"name":"UpcomingEvents","label":"Upcoming Events","ui":{"previewSrc":"/images/thumbs/tina/upcoming-events.jpg","defaultItem":{"title":"Upcoming Events","numberOfEvents":30}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["page","afterBody","UpcomingEvents","title"],"searchable":true,"uid":false},{"type":"number","label":"Number of Events","name":"numberOfEvents","namespace":["page","afterBody","UpcomingEvents","numberOfEvents"],"searchable":true,"uid":false}],"namespace":["page","afterBody","UpcomingEvents"]},{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["page","afterBody","UtilityButton","buttonText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"link","required":false,"namespace":["page","afterBody","UtilityButton","link"],"searchable":true,"uid":false},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["page","afterBody","UtilityButton","size"],"searchable":true,"uid":false},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["page","afterBody","UtilityButton","btnIcon"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["page","afterBody","UtilityButton","animated"],"searchable":true,"uid":false},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["page","afterBody","UtilityButton","uncentered"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["page","afterBody","UtilityButton","removeTopMargin"],"searchable":true,"uid":false},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["page","afterBody","UtilityButton","openInNewTab"],"searchable":true,"uid":false}],"namespace":["page","afterBody","UtilityButton"]},{"name":"VerticalImageLayout","label":"Vertical Image Layout","fields":[{"type":"image","label":"Image","name":"imageSrc","uploadDir":{"namespace":["page","beforeBody","VerticalImageLayout","imageSrc","uploadDir"]},"namespace":["page","afterBody","VerticalImageLayout","imageSrc"],"searchable":false,"uid":false},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["page","afterBody","VerticalImageLayout","altText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"imageLink","namespace":["page","afterBody","VerticalImageLayout","imageLink"],"searchable":true,"uid":false},{"type":"number","label":"Height","name":"height","required":true,"namespace":["page","afterBody","VerticalImageLayout","height"],"searchable":true,"uid":false},{"type":"number","label":"Width","name":"width","required":true,"namespace":["page","afterBody","VerticalImageLayout","width"],"searchable":true,"uid":false},{"type":"rich-text","label":"Message","name":"message","required":true,"namespace":["page","afterBody","VerticalImageLayout","message"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["page","afterBody","VerticalImageLayout","sizes"],"searchable":true,"uid":false}],"namespace":["page","afterBody","VerticalImageLayout"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["page","afterBody","VerticalListItem","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"number","label":"Index number","name":"index","namespace":["page","afterBody","VerticalListItem","index"],"searchable":true,"uid":false},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["page","afterBody","VerticalListItem","icon"],"searchable":false,"uid":false},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["page","afterBody","VerticalListItem","iconScale"],"searchable":true,"uid":false},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["page","afterBody","VerticalListItem","afterBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["page","afterBody","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["page","afterBody","VideoEmbed","url"],"searchable":true,"uid":false},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["page","afterBody","VideoEmbed","videoWidth"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["page","afterBody","VideoEmbed","removeMargin"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["page","afterBody","VideoEmbed","uncentre"],"searchable":true,"uid":false},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["page","afterBody","VideoEmbed","overflow"],"searchable":true,"uid":false},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["page","afterBody","VideoEmbed","caption"],"searchable":true,"uid":false},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["page","afterBody","VideoEmbed","duration"],"searchable":true,"uid":false}],"namespace":["page","afterBody","VideoEmbed"]},{"name":"InlineJotForm","label":"In-line JotForm","ui":{"previewSrc":"/images/thumbs/tina/inline-jot-form.jpg"},"fields":[{"type":"string","name":"title","label":"Title","description":"Optional title for JotForm","namespace":["page","afterBody","InlineJotForm","title"],"searchable":true,"uid":false},{"type":"string","name":"jotFormId","label":"JotForm ID","required":true,"namespace":["page","afterBody","InlineJotForm","jotFormId"],"searchable":true,"uid":false},{"type":"string","name":"additionalClasses","label":"Additional classnames","description":"Optional styling for iframe element only","namespace":["page","afterBody","InlineJotForm","additionalClasses"],"searchable":true,"uid":false}],"namespace":["page","afterBody","InlineJotForm"]}],"namespace":["page","afterBody"],"searchable":true,"uid":false},{"type":"boolean","name":"showAzureFooter","label":"Show Azure Footer","namespace":["page","showAzureFooter"],"searchable":true,"uid":false}],"namespace":["page"]},{"label":"Global - Sections","name":"global","path":"content/global","format":"json","ui":{"global":true},"fields":[{"type":"object","label":"Header","name":"header","fields":[{"type":"string","label":"Name","name":"name","namespace":["global","header","name"],"searchable":true,"uid":false},{"type":"string","label":"Title","name":"title","namespace":["global","header","title"],"searchable":true,"uid":false},{"type":"string","label":"Description","name":"description","namespace":["global","header","description"],"searchable":true,"uid":false},{"type":"string","label":"URL","name":"url","namespace":["global","header","url"],"searchable":true,"uid":false},{"type":"string","label":"Site Name","name":"site_name","namespace":["global","header","site_name"],"searchable":true,"uid":false},{"type":"string","label":"Alternate Site Name","name":"alternate_site_name","namespace":["global","header","alternate_site_name"],"searchable":true,"uid":false}],"namespace":["global","header"],"searchable":true,"uid":false},{"type":"string","label":"Youtube channel link","name":"youtubeChannelLink","namespace":["global","youtubeChannelLink"],"searchable":true,"uid":false},{"type":"string","label":"Breadcrumb Suffix","name":"breadcrumbSuffix","namespace":["global","breadcrumbSuffix"],"searchable":true,"uid":false},{"type":"string","label":"Booking Button Text","name":"bookingButtonText","namespace":["global","bookingButtonText"],"searchable":true,"uid":false},{"type":"string","label":"Booking Phone No.","name":"bookingPhone","namespace":["global","bookingPhone"],"searchable":true,"uid":false},{"type":"image","label":"Default OG Image","name":"defaultOGImage","namespace":["global","defaultOGImage"],"searchable":false,"uid":false},{"type":"object","label":"Home Page Office Index","name":"homePageOfficeList","list":true,"ui":{},"fields":[{"type":"string","name":"url","label":"Url","required":true,"namespace":["global","homePageOfficeList","url"],"searchable":true,"uid":false},{"type":"string","name":"name","label":"Name","required":true,"namespace":["global","homePageOfficeList","name"],"searchable":true,"uid":false},{"type":"string","name":"streetAddress","label":"Street Address","required":true,"namespace":["global","homePageOfficeList","streetAddress"],"searchable":true,"uid":false},{"type":"string","name":"suburb","label":"Suburb","namespace":["global","homePageOfficeList","suburb"],"searchable":true,"uid":false},{"type":"string","name":"addressLocality","label":"Address Locality","required":true,"namespace":["global","homePageOfficeList","addressLocality"],"searchable":true,"uid":false},{"type":"string","name":"addressRegion","label":"Address Region","required":true,"namespace":["global","homePageOfficeList","addressRegion"],"searchable":true,"uid":false},{"type":"string","name":"addressCountry","label":"Address Country","required":true,"namespace":["global","homePageOfficeList","addressCountry"],"searchable":true,"uid":false},{"type":"number","name":"postalCode","label":"Post Code","required":true,"namespace":["global","homePageOfficeList","postalCode"],"searchable":true,"uid":false},{"type":"string","name":"phone","label":"Phone","required":true,"namespace":["global","homePageOfficeList","phone"],"searchable":true,"uid":false},{"type":"string","name":"hours","label":"Hours","required":true,"namespace":["global","homePageOfficeList","hours"],"searchable":true,"uid":false},{"type":"string","name":"days","label":"Days","required":true,"namespace":["global","homePageOfficeList","days"],"searchable":true,"uid":false}],"namespace":["global","homePageOfficeList"],"searchable":true,"uid":false},{"type":"object","label":"Socials","name":"socials","list":true,"ui":{},"fields":[{"type":"string","label":"Type","name":"type","options":[{"label":"Phone","value":"phone"},{"label":"Facebook","value":"facebook"},{"label":"Twitter","value":"twitter"},{"label":"Instagram","value":"instagram"},{"label":"LinkedIn","value":"linkedin"},{"label":"Github","value":"github"},{"label":"YouTube","value":"youtube"},{"label":"TikTok","value":"tiktok"}],"namespace":["global","socials","type"],"searchable":true,"uid":false},{"type":"string","label":"Title","name":"title","namespace":["global","socials","title"],"searchable":true,"uid":false},{"type":"string","label":"URL","name":"url","namespace":["global","socials","url"],"searchable":true,"uid":false},{"type":"string","label":"Username","name":"username","namespace":["global","socials","username"],"searchable":true,"uid":false}],"namespace":["global","socials"],"searchable":true,"uid":false},{"type":"object","label":"Contact Icon","name":"contactIcon","fields":[{"type":"string","label":"URL","name":"url","namespace":["global","contactIcon","url"],"searchable":true,"uid":false},{"type":"string","label":"Text","name":"linkText","namespace":["global","contactIcon","linkText"],"searchable":true,"uid":false},{"type":"string","label":"Desktop Specific Link Text","name":"desktopSpecificLinkText","namespace":["global","contactIcon","desktopSpecificLinkText"],"searchable":true,"uid":false},{"type":"string","label":"Desktop Specific URL","name":"desktopSpecificURL","namespace":["global","contactIcon","desktopSpecificURL"],"searchable":true,"uid":false},{"type":"boolean","label":"Open in same Window","name":"openInSameWindow","namespace":["global","contactIcon","openInSameWindow"],"searchable":true,"uid":false}],"namespace":["global","contactIcon"],"searchable":true,"uid":false},{"type":"object","label":"Clients","name":"clients","fields":[{"type":"object","label":"Clients List","name":"clientsList","list":true,"ui":{},"fields":[{"type":"string","label":"Client Name","name":"clientName","namespace":["global","clients","clientsList","clientName"],"searchable":true,"uid":false},{"type":"string","label":"Image URL","name":"imageUrl","description":"The path of the image from the project root (most of the time, '/images/...')","namespace":["global","clients","clientsList","imageUrl"],"searchable":true,"uid":false}],"namespace":["global","clients","clientsList"],"searchable":true,"uid":false}],"namespace":["global","clients"],"searchable":true,"uid":false},{"type":"string","name":"bookingJotFormId","label":"Booking JotForm Id","namespace":["global","bookingJotFormId"],"searchable":true,"uid":false},{"type":"string","name":"newsletterJotFormId","label":"Newsletter JotForm Id","namespace":["global","newsletterJotFormId"],"searchable":true,"uid":false},{"type":"string","name":"registrationOfInterestJotFormId","label":"Registration of Interest JotForm Id","namespace":["global","registrationOfInterestJotFormId"],"searchable":true,"uid":false}],"namespace":["global"]},{"label":"Global - Mega Menu","name":"megamenu","path":"content/megamenu","format":"json","ui":{"global":true,"allowedActions":{"create":false,"delete":false}},"fields":[{"type":"object","name":"menuGroups","label":"Menu Groups","list":true,"required":true,"ui":{},"fields":[{"type":"string","name":"name","label":"Name","required":true,"namespace":["megamenu","menuGroups","name"],"searchable":true,"uid":false},{"type":"object","name":"menuColumns","label":"Menu Columns","list":true,"ui":{},"fields":[{"type":"object","name":"menuColumnGroups","label":"Menu Column Groups","list":true,"ui":{},"fields":[{"type":"string","name":"name","label":"Name","required":true,"namespace":["megamenu","menuGroups","menuColumns","menuColumnGroups","name"],"searchable":true,"uid":false},{"type":"object","name":"menuItems","label":"Menu Items","list":true,"ui":{},"fields":[{"type":"string","name":"name","label":"Name","required":true,"namespace":["megamenu","menuGroups","menuColumns","menuColumnGroups","menuItems","name"],"searchable":true,"uid":false},{"type":"string","name":"url","label":"URL","required":true,"namespace":["megamenu","menuGroups","menuColumns","menuColumnGroups","menuItems","url"],"searchable":true,"uid":false},{"type":"string","name":"description","label":"Description","namespace":["megamenu","menuGroups","menuColumns","menuColumnGroups","menuItems","description"],"searchable":true,"uid":false},{"type":"image","name":"iconImg","label":"Icon","uploadDir":{"namespace":["megamenu","menuGroups","menuColumns","menuColumnGroups","menuItems","iconImg","uploadDir"]},"namespace":["megamenu","menuGroups","menuColumns","menuColumnGroups","menuItems","iconImg"],"searchable":false,"uid":false},{"type":"string","name":"icon","label":"Icon (optional override of above image field)","options":["chevronDown","chevronLeft","magnifyingGlass","phone","phoneAlt","xMark","chartPie","cursorArrowRays","fingerPrint","squaresPlus","playCircle","rectangleGroup","chinaFlag"],"namespace":["megamenu","menuGroups","menuColumns","menuColumnGroups","menuItems","icon"],"searchable":true,"uid":false}],"namespace":["megamenu","menuGroups","menuColumns","menuColumnGroups","menuItems"],"searchable":true,"uid":false}],"namespace":["megamenu","menuGroups","menuColumns","menuColumnGroups"],"searchable":true,"uid":false}],"namespace":["megamenu","menuGroups","menuColumns"],"searchable":true,"uid":false},{"type":"object","name":"sidebarItems","label":"Sidebar Items","list":true,"ui":{},"fields":[{"type":"string","name":"name","label":"Name","required":true,"namespace":["megamenu","menuGroups","sidebarItems","name"],"searchable":true,"uid":false},{"type":"object","name":"items","label":"Items","ui":{},"list":true,"fields":[{"type":"string","name":"name","label":"Name","required":true,"namespace":["megamenu","menuGroups","sidebarItems","items","name"],"searchable":true,"uid":false},{"type":"string","name":"url","label":"URL","required":true,"namespace":["megamenu","menuGroups","sidebarItems","items","url"],"searchable":true,"uid":false},{"type":"string","name":"description","label":"Description","namespace":["megamenu","menuGroups","sidebarItems","items","description"],"searchable":true,"uid":false},{"type":"string","name":"widgetType","label":"Widget Type","options":["standardLink","featured","bookNow"],"namespace":["megamenu","menuGroups","sidebarItems","items","widgetType"],"searchable":true,"uid":false},{"type":"string","name":"icon","label":"Icon","options":["chevronDown","chevronLeft","magnifyingGlass","phone","phoneAlt","xMark","chartPie","cursorArrowRays","fingerPrint","squaresPlus","playCircle","rectangleGroup","chinaFlag"],"namespace":["megamenu","menuGroups","sidebarItems","items","icon"],"searchable":true,"uid":false}],"namespace":["megamenu","menuGroups","sidebarItems","items"],"searchable":true,"uid":false}],"namespace":["megamenu","menuGroups","sidebarItems"],"searchable":true,"uid":false},{"type":"object","name":"viewAll","label":"View All Link","fields":[{"type":"string","name":"name","label":"Text","required":true,"namespace":["megamenu","menuGroups","viewAll","name"],"searchable":true,"uid":false},{"type":"string","name":"url","label":"URL","required":true,"namespace":["megamenu","menuGroups","viewAll","url"],"searchable":true,"uid":false}],"namespace":["megamenu","menuGroups","viewAll"],"searchable":true,"uid":false},{"type":"string","name":"url","label":"URL (optional for single link items without a dropdown)","namespace":["megamenu","menuGroups","url"],"searchable":true,"uid":false}],"namespace":["megamenu","menuGroups"],"searchable":true,"uid":false}],"namespace":["megamenu"]},{"label":"Articles - Index","name":"articlesIndex","format":"mdx","path":"content/articles/index","ui":{"allowedActions":{"create":false,"delete":false}},"fields":[{"type":"object","label":"Header Image","name":"headerImage","fields":[{"type":"image","label":"Hero Background","name":"heroBackground","uploadDir":{"namespace":["articlesIndex","headerImage","heroBackground","uploadDir"]},"namespace":["articlesIndex","headerImage","heroBackground"],"searchable":false,"uid":false},{"type":"string","label":"Alt Text","name":"altText","namespace":["articlesIndex","headerImage","altText"],"searchable":true,"uid":false},{"type":"string","label":"Text Overlay","name":"txtOverlay","uploadDir":{"namespace":["articlesIndex","headerImage","txtOverlay","uploadDir"]},"namespace":["articlesIndex","headerImage","txtOverlay"],"searchable":true,"uid":false}],"namespace":["articlesIndex","headerImage"],"searchable":true,"uid":false},{"type":"object","label":"SEO Values","name":"seo","fields":[{"type":"string","label":"Title (70 characters)","name":"title","ui":{},"namespace":["articlesIndex","seo","title"],"searchable":true,"uid":false},{"type":"string","label":"Description (150 characters)","name":"description","component":"textarea","ui":{},"namespace":["articlesIndex","seo","description"],"searchable":true,"uid":false},{"type":"string","label":"Canonical URL","name":"canonical","namespace":["articlesIndex","seo","canonical"],"searchable":true,"uid":false},{"type":"boolean","name":"showBreadcrumb","label":"Show Breadcrumb","namespace":["articlesIndex","seo","showBreadcrumb"],"searchable":true,"uid":false},{"label":"Images","name":"images","list":true,"type":"object","ui":{"defaultItem":{"url":"/images/ssw-default-og.jpg","width":1200,"height":630,"alt":"SSW Consulting - Enterprise Software Development"}},"fields":[{"type":"image","label":"Image Url","name":"url","require":true,"namespace":["articles","seo","images","url"],"searchable":false,"uid":false},{"type":"number","label":"Width (px)","name":"width","namespace":["articles","seo","images","width"],"searchable":true,"uid":false},{"type":"number","label":"Height (px)","name":"height","namespace":["articles","seo","images","height"],"searchable":true,"uid":false},{"type":"string","label":"Image Alt Text","name":"alt","namespace":["articles","seo","images","alt"],"searchable":true,"uid":false}],"namespace":["articlesIndex","seo","images"],"searchable":true,"uid":false}],"namespace":["articlesIndex","seo"],"searchable":true,"uid":false},{"type":"string","label":"Title","name":"title","namespace":["articlesIndex","title"],"searchable":true,"uid":false},{"type":"rich-text","label":"Body","name":"_body","templates":[{"name":"AboutUs","label":"About Us","ui":{"previewSrc":"/images/thumbs/tina/about-us.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["articlesIndex","_body","AboutUs","backgroundColor"],"searchable":true,"uid":false},{"type":"boolean","label":"Show Map","name":"showMap","required":false,"namespace":["articlesIndex","_body","AboutUs","showMap"],"searchable":true,"uid":false}],"namespace":["articlesIndex","_body","AboutUs"]},{"label":"Agenda","name":"Agenda","ui":{"previewSrc":"/images/thumbs/tina/agenda.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["articlesIndex","_body","Agenda","header"],"searchable":true,"uid":false},{"type":"string","label":"Header Color","name":"textColor","options":[{"label":"Red","value":"red"},{"label":"Gray","value":"gray"},{"label":"Default","value":"default"}],"namespace":["articlesIndex","_body","Agenda","textColor"],"searchable":true,"uid":false},{"type":"object","label":"Agenda Items","name":"agendaItemList","ui":{},"list":true,"fields":[{"type":"string","label":"Placeholder Text","name":"placeholder","namespace":["companyIndex","_body","Agenda","agendaItemList","placeholder"]},{"type":"rich-text","label":"Body","name":"body","templates":[{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["caseStudy","_body","Agenda","agendaItemList","body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["caseStudy","_body","Agenda","agendaItemList","body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["caseStudy","_body","Agenda","agendaItemList","body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["caseStudy","_body","Agenda","agendaItemList","body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["caseStudy","_body","Agenda","agendaItemList","body","VerticalListItem","afterBody"]}],"namespace":["company","_body","Agenda","agendaItemList","body","VerticalListItem"]}],"namespace":["companyIndex","_body","Agenda","agendaItemList","body"]}],"namespace":["articlesIndex","_body","Agenda","agendaItemList"],"searchable":true,"uid":false}],"namespace":["articlesIndex","_body","Agenda"]},{"label":"Agreement Form","name":"AgreementForm","ui":{"previewSrc":"/images/thumbs/tina/agreement-form.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["articlesIndex","_body","AgreementForm","backgroundColor"],"searchable":true,"uid":false},{"type":"object","label":"Form fields","name":"fields","list":true,"fields":[{"type":"string","label":"ID","name":"id","required":true,"namespace":["companyIndex","_body","AgreementForm","fields","id"]},{"type":"string","label":"Label","name":"label","required":true,"namespace":["companyIndex","_body","AgreementForm","fields","label"]},{"type":"string","label":"Placeholder","name":"placeholder","namespace":["companyIndex","_body","AgreementForm","fields","placeholder"]},{"type":"boolean","label":"Resizeable","name":"resizeable","required":true,"namespace":["companyIndex","_body","AgreementForm","fields","resizeable"]}],"namespace":["articlesIndex","_body","AgreementForm","fields"],"searchable":true,"uid":false}],"namespace":["articlesIndex","_body","AgreementForm"]},{"label":"Interest Form","name":"InterestForm","ui":{"previewSrc":"/images/thumbs/tina/interest-form.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["articlesIndex","_body","InterestForm","buttonText"],"searchable":true,"uid":false}],"namespace":["articlesIndex","_body","InterestForm"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["articlesIndex","_body","BookingButton","buttonText"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","namespace":["articlesIndex","_body","BookingButton","animated"],"searchable":true,"uid":false},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["articlesIndex","_body","BookingButton","buttonSubtitle"],"searchable":true,"uid":false}],"namespace":["articlesIndex","_body","BookingButton"]},{"name":"BuiltOnAzure","label":"Built on Azure","ui":{"previewSrc":"/images/thumbs/tina/built-on-azure.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["articlesIndex","_body","BuiltOnAzure","backgroundColor"],"searchable":true,"uid":false}],"namespace":["articlesIndex","_body","BuiltOnAzure"]},{"name":"Carousel","label":"Carousel","ui":{"previewSrc":"/images/thumbs/tina/carousel.jpg"},"fields":[{"label":"Items","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Item description","link":"/","openIn":"sameWindow"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["articles","subTitle","Carousel","items","label"]},{"type":"string","label":"URL","name":"link","description":"If link contains ssw.com.au, you can skip the full URL and just use the path. e.g. /services","namespace":["articles","subTitle","Carousel","items","link"]},{"type":"string","label":"Open in","name":"openIn","description":"If it is external link, please select 'New window' option.","options":[{"label":"Same window","value":"sameWindow"},{"label":"Modal","value":"modal"},{"label":"New window","value":"newWindow"}],"namespace":["articles","subTitle","Carousel","items","openIn"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","Carousel","items","imgSrc","uploadDir"]},"namespace":["articles","subTitle","Carousel","items","imgSrc"]}],"namespace":["articlesIndex","_body","Carousel","items"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["articlesIndex","_body","Carousel","backgroundColor"],"searchable":true,"uid":false},{"type":"number","label":"Delay (Seconds)","name":"delay","required":true,"namespace":["articlesIndex","_body","Carousel","delay"],"searchable":true,"uid":false},{"type":"boolean","label":"Show on mobile devices","name":"showOnMobileDevices","namespace":["articlesIndex","_body","Carousel","showOnMobileDevices"],"searchable":true,"uid":false}],"namespace":["articlesIndex","_body","Carousel"]},{"name":"Citation","label":"Citation","fields":[{"type":"string","label":"author","name":"author","namespace":["articlesIndex","_body","Citation","author"],"searchable":true,"uid":false},{"type":"string","label":"article","name":"article","required":true,"namespace":["articlesIndex","_body","Citation","article"],"searchable":true,"uid":false}],"namespace":["articlesIndex","_body","Citation"]},{"label":"Client List","name":"ClientList","ui":{"previewSrc":"/images/thumbs/tina/clients-list.jpg"},"fields":[{"type":"object","name":"categories","label":"Categories","list":true,"fields":[{"type":"reference","name":"category","label":"Category","collections":["clientCategories"],"namespace":["companyIndex","_body","ClientList","categories","category"]}],"ui":{},"namespace":["articlesIndex","_body","ClientList","categories"],"searchable":true,"uid":false},{"type":"object","name":"clients","label":"Clients list","list":true,"ui":{"previewSrc":"/images/thumbs/tina/clients-list.jpg"},"fields":[{"type":"string","name":"name","label":"Name","namespace":["companyIndex","_body","ClientList","clients","name"]},{"type":"image","name":"logo","label":"Logo","namespace":["companyIndex","_body","ClientList","clients","logo"]},{"type":"string","name":"logoUrl","label":"Logo URL","namespace":["companyIndex","_body","ClientList","clients","logoUrl"]},{"type":"rich-text","name":"content","label":"Content","templates":[{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["caseStudy","_body","ClientList","clients","content","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["caseStudy","_body","ClientList","clients","content","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["caseStudy","_body","ClientList","clients","content","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["caseStudy","_body","ClientList","clients","content","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["caseStudy","_body","ClientList","clients","content","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["caseStudy","_body","ClientList","clients","content","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["caseStudy","_body","ClientList","clients","content","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["caseStudy","_body","ClientList","clients","content","UtilityButton","openInNewTab"]}],"namespace":["company","_body","ClientList","clients","content","UtilityButton"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["caseStudy","_body","ClientList","clients","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["caseStudy","_body","ClientList","clients","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["caseStudy","_body","ClientList","clients","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["caseStudy","_body","ClientList","clients","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["caseStudy","_body","ClientList","clients","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["caseStudy","_body","ClientList","clients","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["caseStudy","_body","ClientList","clients","content","VideoEmbed","duration"]}],"namespace":["company","_body","ClientList","clients","content","VideoEmbed"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["caseStudy","_body","ClientList","clients","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["caseStudy","_body","ClientList","clients","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["caseStudy","_body","ClientList","clients","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["caseStudy","_body","ClientList","clients","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["caseStudy","_body","ClientList","clients","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["caseStudy","_body","ClientList","clients","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["caseStudy","_body","ClientList","clients","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["caseStudy","_body","ClientList","clients","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["caseStudy","_body","ClientList","clients","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["caseStudy","_body","ClientList","clients","content","CustomImage","sizes"]}],"namespace":["company","_body","ClientList","clients","content","CustomImage"]},{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["caseStudy","_body","ClientList","clients","content","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["caseStudy","_body","ClientList","clients","content","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["consulting","_body","ClientList","clients","content","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["consulting","_body","ClientList","clients","content","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["consulting","_body","ClientList","clients","content","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["consulting","_body","ClientList","clients","content","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["consulting","_body","ClientList","clients","content","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["consulting","_body","ClientList","clients","content","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["consulting","_body","ClientList","clients","content","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["consulting","_body","ClientList","clients","content","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["consulting","_body","ClientList","clients","content","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["consulting","_body","ClientList","clients","content","ContentCard","content","CustomImage","sizes"]}],"namespace":["caseStudy","content","ClientList","clients","content","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["consulting","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["consulting","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["consulting","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["consulting","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["consulting","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["caseStudy","content","ClientList","clients","content","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["consulting","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["consulting","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["consulting","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["consulting","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["consulting","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["consulting","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["consulting","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","duration"]}],"namespace":["caseStudy","content","ClientList","clients","content","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["consulting","_body","ClientList","clients","content","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["consulting","_body","ClientList","clients","content","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["consulting","afterBody","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["consulting","afterBody","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["consulting","afterBody","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["consulting","afterBody","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["consulting","afterBody","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["consulting","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["caseStudy","content","ClientList","clients","content","ContentCard","content","ColorBlock"]}],"namespace":["caseStudy","_body","ClientList","clients","content","ContentCard","content"]}],"namespace":["company","_body","ClientList","clients","content","ContentCard"]}],"namespace":["companyIndex","_body","ClientList","clients","content"]},{"type":"string","name":"caseStudyUrl","label":"Case study URL","namespace":["companyIndex","_body","ClientList","clients","caseStudyUrl"]},{"type":"object","name":"categories","label":"Categories","list":true,"ui":{},"fields":[{"type":"reference","name":"category","label":"Category","collections":["clientCategories"],"namespace":["company","_body","ClientList","clients","categories","category"]}],"namespace":["companyIndex","_body","ClientList","clients","categories"]}],"namespace":["articlesIndex","_body","ClientList","clients"],"searchable":true,"uid":false}],"namespace":["articlesIndex","_body","ClientList"]},{"name":"ClientLogos","label":"Client Logos","ui":{"previewSrc":"/images/thumbs/tina/client-logos.jpg"},"fields":[{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["articlesIndex","_body","ClientLogos","altText"],"searchable":true,"uid":false}],"namespace":["articlesIndex","_body","ClientLogos"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["articlesIndex","_body","ColorBlock","title"],"searchable":true,"uid":false},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["articlesIndex","_body","ColorBlock","subTitle"],"searchable":true,"uid":false},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["articles","subTitle","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["articles","subTitle","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["articles","subTitle","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["articles","subTitle","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["articles","subTitle","ColorBlock","colorRow","caption"]}],"namespace":["articlesIndex","_body","ColorBlock","colorRow"],"searchable":true,"uid":false}],"namespace":["articlesIndex","_body","ColorBlock"]},{"name":"ColorPalette","label":"Color Palette","ui":{"previewSrc":"/images/thumbs/tina/color-palette.jpg"},"fields":[{"type":"string","label":"Name","name":"name","namespace":["articlesIndex","_body","ColorPalette","name"],"searchable":true,"uid":false}],"namespace":["articlesIndex","_body","ColorPalette"]},{"name":"Content","label":"Content","ui":{"previewSrc":"/images/thumbs/tina/content.jpg","defaultItem":{"body":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["articlesIndex","_body","Content","title"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["company","_body","Content","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["company","_body","Content","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["company","_body","Content","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["company","_body","Content","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["company","_body","Content","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["company","_body","Content","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["company","_body","Content","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["company","_body","Content","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["company","_body","Content","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["company","_body","Content","content","CustomImage","sizes"]}],"namespace":["companyIndex","_body","Content","content","CustomImage"]},{"name":"ClientLogos","label":"Client Logos","ui":{"previewSrc":"/images/thumbs/tina/client-logos.jpg"},"fields":[{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["company","_body","Content","content","ClientLogos","altText"]}],"namespace":["companyIndex","_body","Content","content","ClientLogos"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["company","_body","Content","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["company","_body","Content","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["company","_body","Content","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["company","_body","Content","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["company","_body","Content","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["company","_body","Content","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["company","_body","Content","content","VideoEmbed","duration"]}],"namespace":["companyIndex","_body","Content","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["company","_body","Content","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["company","_body","Content","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["caseStudy","_body","Content","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["caseStudy","_body","Content","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["caseStudy","_body","Content","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["caseStudy","_body","Content","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["caseStudy","_body","Content","content","ColorBlock","colorRow","caption"]}],"namespace":["company","_body","Content","content","ColorBlock","colorRow"]}],"namespace":["companyIndex","_body","Content","content","ColorBlock"]}],"namespace":["articlesIndex","_body","Content","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Container Padding","name":"paddingClass","options":["Mobile: No Padding","Mobile: No Top and Horizontal Padding"],"namespace":["articlesIndex","_body","Content","paddingClass"],"searchable":true,"uid":false},{"type":"string","label":"Text size","name":"size","options":[{"label":"small","value":"sm"},{"label":"normal","value":"base"},{"label":"large","value":"lg"},{"label":"extra large","value":"xl"},{"label":"2x large","value":"2xl"}],"namespace":["articlesIndex","_body","Content","size"],"searchable":true,"uid":false},{"type":"string","label":"Align","name":"align","options":[{"label":"Left","value":"left"},{"label":"Center","value":"center"},{"label":"Right","value":"right"}],"namespace":["articlesIndex","_body","Content","align"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["articlesIndex","_body","Content","backgroundColor"],"searchable":true,"uid":false}],"namespace":["articlesIndex","_body","Content"]},{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["articlesIndex","_body","ContentCard","prose"],"searchable":true,"uid":false},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["articlesIndex","_body","ContentCard","centerAlignedText"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["company","_body","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["company","_body","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["company","_body","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["company","_body","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["company","_body","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["company","_body","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["company","_body","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["company","_body","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["company","_body","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["company","_body","ContentCard","content","CustomImage","sizes"]}],"namespace":["companyIndex","_body","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["company","_body","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["company","_body","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["company","_body","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["company","_body","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["company","_body","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["companyIndex","_body","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["company","_body","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["company","_body","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["company","_body","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["company","_body","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["company","_body","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["company","_body","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["company","_body","ContentCard","content","VideoEmbed","duration"]}],"namespace":["companyIndex","_body","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["company","_body","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["company","_body","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["caseStudy","_body","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["caseStudy","_body","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["caseStudy","_body","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["caseStudy","_body","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["caseStudy","_body","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["company","_body","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["companyIndex","_body","ContentCard","content","ColorBlock"]}],"namespace":["articlesIndex","_body","ContentCard","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["articlesIndex","_body","ContentCard"]},{"name":"CustomDownloadButton","label":"Custom Download Button","ui":{"previewSrc":"/images/thumbs/tina/custom-download-button.jpg"},"fields":[{"type":"string","label":"Text","name":"btnText","namespace":["articlesIndex","_body","CustomDownloadButton","btnText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"btnLink","namespace":["articlesIndex","_body","CustomDownloadButton","btnLink"],"searchable":true,"uid":false}],"namespace":["articlesIndex","_body","CustomDownloadButton"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["articlesIndex","_body","CustomImage","src"],"searchable":false,"uid":false},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["articlesIndex","_body","CustomImage","altText"],"searchable":true,"uid":false},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["articlesIndex","_body","CustomImage","alignment"],"searchable":true,"uid":false},{"type":"number","label":"Height","name":"height","required":true,"namespace":["articlesIndex","_body","CustomImage","height"],"searchable":true,"uid":false},{"type":"number","label":"Width","name":"width","required":true,"namespace":["articlesIndex","_body","CustomImage","width"],"searchable":true,"uid":false},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["articlesIndex","_body","CustomImage","link"],"searchable":true,"uid":false},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["articlesIndex","_body","CustomImage","customClass"],"searchable":true,"uid":false},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["articlesIndex","_body","CustomImage","caption"],"searchable":true,"uid":false},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["articlesIndex","_body","CustomImage","captionColor"],"searchable":true,"uid":false},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["articlesIndex","_body","CustomImage","sizes"],"searchable":true,"uid":false}],"namespace":["articlesIndex","_body","CustomImage"]},{"name":"DomainFromQuery","label":"Domain from query","ui":{"previewSrc":"/images/thumbs/tina/domain-from-query.jpg"},"fields":[{"name":"title","label":"Title","type":"string","description":"This is a H1 heading","namespace":["articlesIndex","_body","DomainFromQuery","title"],"searchable":true,"uid":false},{"name":"showDomain","label":"Show domain name","type":"boolean","description":"Query param in URL must have key of 'domain'","namespace":["articlesIndex","_body","DomainFromQuery","showDomain"],"searchable":true,"uid":false}],"namespace":["articlesIndex","_body","DomainFromQuery"]},{"name":"DownloadBlock","label":"Download Block","ui":{"previewSrc":"/images/thumbs/tina/download-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["articlesIndex","_body","DownloadBlock","title"],"searchable":true,"uid":false},{"type":"object","label":"Downloads","name":"downloads","ui":{},"list":true,"fields":[{"type":"string","label":"Header","name":"header","namespace":["companyIndex","_body","DownloadBlock","downloads","header"]},{"type":"image","label":"Image","name":"img","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","img","uploadDir"]},"namespace":["companyIndex","_body","DownloadBlock","downloads","img"]},{"type":"string","label":"Image Background","name":"imgBackground","options":["black","grey","white","darkgrey","darkgreen"],"namespace":["companyIndex","_body","DownloadBlock","downloads","imgBackground"]},{"type":"string","label":"First Link Text","name":"firstLinkText","description":"Defaults to PNG","namespace":["companyIndex","_body","DownloadBlock","downloads","firstLinkText"]},{"type":"image","label":"First Link","name":"firstLink","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","firstLink","uploadDir"]},"namespace":["companyIndex","_body","DownloadBlock","downloads","firstLink"]},{"type":"string","label":"Second Link Text","name":"secondLinkText","description":"Defaults to PDF","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","secondLinkText","uploadDir"]},"namespace":["companyIndex","_body","DownloadBlock","downloads","secondLinkText"]},{"type":"image","label":"Second Link","name":"secondLink","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","secondLink","uploadDir"]},"namespace":["companyIndex","_body","DownloadBlock","downloads","secondLink"]}],"namespace":["articlesIndex","_body","DownloadBlock","downloads"],"searchable":true,"uid":false},{"type":"boolean","label":"Bottom border","name":"bottomBorder","namespace":["articlesIndex","_body","DownloadBlock","bottomBorder"],"searchable":true,"uid":false}],"namespace":["articlesIndex","_body","DownloadBlock"]},{"name":"DynamicColumns","label":"Dynamic Column Layout","fields":[{"type":"rich-text","label":"Column text body","name":"colBody","required":true,"namespace":["articlesIndex","_body","DynamicColumns","colBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"number","label":"Number of columns","name":"colCount","required":true,"ui":{},"namespace":["articlesIndex","_body","DynamicColumns","colCount"],"searchable":true,"uid":false}],"namespace":["articlesIndex","_body","DynamicColumns"]},{"name":"EventBooking","label":"Events Booking","ui":{"previewSrc":"/images/thumbs/tina/events-booking.jpg"},"fields":[{"type":"number","label":"Duration (In Days)","name":"eventDurationInDays","required":true,"namespace":["articlesIndex","_body","EventBooking","eventDurationInDays"],"searchable":true,"uid":false},{"type":"number","label":"Price","name":"price","required":true,"namespace":["articlesIndex","_body","EventBooking","price"],"searchable":true,"uid":false},{"type":"number","label":"Discount Price","name":"discountPrice","namespace":["articlesIndex","_body","EventBooking","discountPrice"],"searchable":true,"uid":false},{"type":"string","name":"gstText","label":"Select GST Option","options":["inc GST","+ GST"],"required":true,"namespace":["articlesIndex","_body","EventBooking","gstText"],"searchable":true,"uid":false},{"type":"string","label":"Discount Note","name":"discountNote","namespace":["articlesIndex","_body","EventBooking","discountNote"],"searchable":true,"uid":false},{"type":"object","label":"Event","name":"eventList","ui":{},"list":true,"fields":[{"type":"string","label":"City","name":"city","namespace":["companyIndex","_body","EventBooking","eventList","city"]},{"type":"datetime","label":"Start Date","name":"date","ui":{},"namespace":["companyIndex","_body","EventBooking","eventList","date"]},{"type":"string","label":"Booking URL","name":"bookingURL","namespace":["companyIndex","_body","EventBooking","eventList","bookingURL"]},{"type":"reference","label":"Location","name":"location","collections":["locations"],"namespace":["companyIndex","_body","EventBooking","eventList","location"]}],"namespace":["articlesIndex","_body","EventBooking","eventList"],"searchable":true,"uid":false}],"namespace":["articlesIndex","_body","EventBooking"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["company","_body","EventLink","content","Flag","country"]}],"namespace":["companyIndex","_body","EventLink","content","Flag"]}],"namespace":["articlesIndex","_body","EventLink","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Link","name":"link","namespace":["articlesIndex","_body","EventLink","link"],"searchable":true,"uid":false},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["articlesIndex","_body","EventLink","eventThumbnail"],"searchable":false,"uid":false},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["articlesIndex","_body","EventLink","thumbnailAlt"],"searchable":true,"uid":false}],"namespace":["articlesIndex","_body","EventLink"]},{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["articlesIndex","_body","Flag","country"],"searchable":true,"uid":false}],"namespace":["articlesIndex","_body","Flag"]},{"name":"FixedColumns","label":"Fixed Column Layout (2 columns)","ui":{"previewSrc":"/images/thumbs/tina/fixed-columns.jpg"},"fields":[{"type":"rich-text","label":"Header Section (Optional)","name":"headerSection","namespace":["articlesIndex","_body","FixedColumns","headerSection"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"First column text","name":"firstColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["companyIndex","_body","FixedColumns","firstColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["companyIndex","_body","FixedColumns","firstColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["company","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["company","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["company","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["company","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["company","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["company","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["company","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["company","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["company","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["company","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["company","subTitle","FixedColumns","firstColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["company","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["company","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["company","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["company","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["company","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["company","subTitle","FixedColumns","firstColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["company","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["company","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["company","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["company","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["company","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["company","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["company","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["company","subTitle","FixedColumns","firstColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["company","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["company","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["caseStudy","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["caseStudy","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["caseStudy","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["caseStudy","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["caseStudy","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["company","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["company","subTitle","FixedColumns","firstColBody","ContentCard","content","ColorBlock"]}],"namespace":["companyIndex","_body","FixedColumns","firstColBody","ContentCard","content"]}],"namespace":["articles","subTitle","FixedColumns","firstColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["companyIndex","_body","FixedColumns","firstColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["companyIndex","_body","FixedColumns","firstColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["companyIndex","_body","FixedColumns","firstColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["companyIndex","_body","FixedColumns","firstColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["companyIndex","_body","FixedColumns","firstColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["companyIndex","_body","FixedColumns","firstColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["companyIndex","_body","FixedColumns","firstColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["companyIndex","_body","FixedColumns","firstColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["companyIndex","_body","FixedColumns","firstColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["companyIndex","_body","FixedColumns","firstColBody","CustomImage","sizes"]}],"namespace":["articles","subTitle","FixedColumns","firstColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["company","_body","FixedColumns","firstColBody","EventLink","content","Flag","country"]}],"namespace":["company","subTitle","FixedColumns","firstColBody","EventLink","content","Flag"]}],"namespace":["companyIndex","_body","FixedColumns","firstColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["companyIndex","_body","FixedColumns","firstColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["companyIndex","_body","FixedColumns","firstColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["companyIndex","_body","FixedColumns","firstColBody","EventLink","thumbnailAlt"]}],"namespace":["articles","subTitle","FixedColumns","firstColBody","EventLink"]}],"namespace":["articlesIndex","_body","FixedColumns","firstColBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"Second column text","name":"secondColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["companyIndex","_body","FixedColumns","secondColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["companyIndex","_body","FixedColumns","secondColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["company","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["company","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["company","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["company","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["company","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["company","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["company","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["company","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["company","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["company","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["company","subTitle","FixedColumns","secondColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["company","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["company","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["company","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["company","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["company","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["company","subTitle","FixedColumns","secondColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["company","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["company","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["company","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["company","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["company","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["company","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["company","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["company","subTitle","FixedColumns","secondColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["company","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["company","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["caseStudy","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["caseStudy","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["caseStudy","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["caseStudy","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["caseStudy","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["company","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["company","subTitle","FixedColumns","secondColBody","ContentCard","content","ColorBlock"]}],"namespace":["companyIndex","_body","FixedColumns","secondColBody","ContentCard","content"]}],"namespace":["articles","subTitle","FixedColumns","secondColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["companyIndex","_body","FixedColumns","secondColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["companyIndex","_body","FixedColumns","secondColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["companyIndex","_body","FixedColumns","secondColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["companyIndex","_body","FixedColumns","secondColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["companyIndex","_body","FixedColumns","secondColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["companyIndex","_body","FixedColumns","secondColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["companyIndex","_body","FixedColumns","secondColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["companyIndex","_body","FixedColumns","secondColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["companyIndex","_body","FixedColumns","secondColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["companyIndex","_body","FixedColumns","secondColBody","CustomImage","sizes"]}],"namespace":["articles","subTitle","FixedColumns","secondColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["company","_body","FixedColumns","secondColBody","EventLink","content","Flag","country"]}],"namespace":["company","subTitle","FixedColumns","secondColBody","EventLink","content","Flag"]}],"namespace":["companyIndex","_body","FixedColumns","secondColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["companyIndex","_body","FixedColumns","secondColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["companyIndex","_body","FixedColumns","secondColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["companyIndex","_body","FixedColumns","secondColBody","EventLink","thumbnailAlt"]}],"namespace":["articles","subTitle","FixedColumns","secondColBody","EventLink"]}],"namespace":["articlesIndex","_body","FixedColumns","secondColBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["articlesIndex","_body","FixedColumns"]},{"name":"FixedTabsLayout","label":"Fixed Tabs Layout","ui":{"previewSrc":"/images/thumbs/tina/fixed-tabs-layout.jpg"},"fields":[{"type":"string","name":"firstTab","label":"First Tab","namespace":["articlesIndex","_body","FixedTabsLayout","firstTab"],"searchable":true,"uid":false},{"type":"rich-text","name":"firstHeading","label":"First Heading","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["company","_body","FixedTabsLayout","firstHeading","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["company","_body","FixedTabsLayout","firstHeading","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["company","_body","FixedTabsLayout","firstHeading","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["company","_body","FixedTabsLayout","firstHeading","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["company","_body","FixedTabsLayout","firstHeading","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["company","_body","FixedTabsLayout","firstHeading","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["company","_body","FixedTabsLayout","firstHeading","VideoEmbed","duration"]}],"namespace":["companyIndex","_body","FixedTabsLayout","firstHeading","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["company","_body","FixedTabsLayout","firstHeading","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["company","_body","FixedTabsLayout","firstHeading","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["company","_body","FixedTabsLayout","firstHeading","BookingButton","buttonSubtitle"]}],"namespace":["companyIndex","_body","FixedTabsLayout","firstHeading","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["company","_body","FixedTabsLayout","firstHeading","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["caseStudy","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["caseStudy","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["caseStudy","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["caseStudy","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList","skills"]}],"namespace":["company","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["caseStudy","_body","FixedTabsLayout","firstHeading","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["caseStudy","_body","FixedTabsLayout","firstHeading","ExpertBlock","link","url"]}],"namespace":["company","_body","FixedTabsLayout","firstHeading","ExpertBlock","link"]}],"namespace":["companyIndex","_body","FixedTabsLayout","firstHeading","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["caseStudy","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["caseStudy","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["caseStudy","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["caseStudy","content","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["caseStudy","content","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["caseStudy","content","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["caseStudy","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["company","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["companyIndex","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["company","_body","FixedTabsLayout","firstHeading","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["company","_body","FixedTabsLayout","firstHeading","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["company","_body","FixedTabsLayout","firstHeading","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["company","_body","FixedTabsLayout","firstHeading","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["company","_body","FixedTabsLayout","firstHeading","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["company","_body","FixedTabsLayout","firstHeading","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["company","_body","FixedTabsLayout","firstHeading","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["company","_body","FixedTabsLayout","firstHeading","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["company","_body","FixedTabsLayout","firstHeading","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["company","_body","FixedTabsLayout","firstHeading","CustomImage","sizes"]}],"namespace":["companyIndex","_body","FixedTabsLayout","firstHeading","CustomImage"]}],"namespace":["articlesIndex","_body","FixedTabsLayout","firstHeading"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","name":"firstBody","label":"First Body","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["company","_body","FixedTabsLayout","firstBody","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["company","_body","FixedTabsLayout","firstBody","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["company","_body","FixedTabsLayout","firstBody","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["company","_body","FixedTabsLayout","firstBody","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["company","_body","FixedTabsLayout","firstBody","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["company","_body","FixedTabsLayout","firstBody","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["company","_body","FixedTabsLayout","firstBody","VideoEmbed","duration"]}],"namespace":["companyIndex","_body","FixedTabsLayout","firstBody","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["company","_body","FixedTabsLayout","firstBody","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["company","_body","FixedTabsLayout","firstBody","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["company","_body","FixedTabsLayout","firstBody","BookingButton","buttonSubtitle"]}],"namespace":["companyIndex","_body","FixedTabsLayout","firstBody","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["company","_body","FixedTabsLayout","firstBody","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["caseStudy","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["caseStudy","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["caseStudy","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["caseStudy","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList","skills"]}],"namespace":["company","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["caseStudy","_body","FixedTabsLayout","firstBody","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["caseStudy","_body","FixedTabsLayout","firstBody","ExpertBlock","link","url"]}],"namespace":["company","_body","FixedTabsLayout","firstBody","ExpertBlock","link"]}],"namespace":["companyIndex","_body","FixedTabsLayout","firstBody","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["caseStudy","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["caseStudy","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["caseStudy","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["caseStudy","content","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["caseStudy","content","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["caseStudy","content","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["caseStudy","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["company","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["companyIndex","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["company","_body","FixedTabsLayout","firstBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["company","_body","FixedTabsLayout","firstBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["company","_body","FixedTabsLayout","firstBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["company","_body","FixedTabsLayout","firstBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["company","_body","FixedTabsLayout","firstBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["company","_body","FixedTabsLayout","firstBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["company","_body","FixedTabsLayout","firstBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["company","_body","FixedTabsLayout","firstBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["company","_body","FixedTabsLayout","firstBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["company","_body","FixedTabsLayout","firstBody","CustomImage","sizes"]}],"namespace":["companyIndex","_body","FixedTabsLayout","firstBody","CustomImage"]}],"namespace":["articlesIndex","_body","FixedTabsLayout","firstBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","name":"secondTab","label":"Second Tab","namespace":["articlesIndex","_body","FixedTabsLayout","secondTab"],"searchable":true,"uid":false},{"type":"rich-text","name":"secondHeading","label":"Second Heading","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["company","_body","FixedTabsLayout","secondHeading","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["company","_body","FixedTabsLayout","secondHeading","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["company","_body","FixedTabsLayout","secondHeading","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["company","_body","FixedTabsLayout","secondHeading","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["company","_body","FixedTabsLayout","secondHeading","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["company","_body","FixedTabsLayout","secondHeading","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["company","_body","FixedTabsLayout","secondHeading","VideoEmbed","duration"]}],"namespace":["companyIndex","_body","FixedTabsLayout","secondHeading","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["company","_body","FixedTabsLayout","secondHeading","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["company","_body","FixedTabsLayout","secondHeading","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["company","_body","FixedTabsLayout","secondHeading","BookingButton","buttonSubtitle"]}],"namespace":["companyIndex","_body","FixedTabsLayout","secondHeading","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["company","_body","FixedTabsLayout","secondHeading","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["caseStudy","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["caseStudy","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["caseStudy","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["caseStudy","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList","skills"]}],"namespace":["company","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["caseStudy","_body","FixedTabsLayout","secondHeading","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["caseStudy","_body","FixedTabsLayout","secondHeading","ExpertBlock","link","url"]}],"namespace":["company","_body","FixedTabsLayout","secondHeading","ExpertBlock","link"]}],"namespace":["companyIndex","_body","FixedTabsLayout","secondHeading","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["caseStudy","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["caseStudy","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["caseStudy","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["caseStudy","content","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["caseStudy","content","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["caseStudy","content","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["caseStudy","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["company","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["companyIndex","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["company","_body","FixedTabsLayout","secondHeading","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["company","_body","FixedTabsLayout","secondHeading","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["company","_body","FixedTabsLayout","secondHeading","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["company","_body","FixedTabsLayout","secondHeading","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["company","_body","FixedTabsLayout","secondHeading","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["company","_body","FixedTabsLayout","secondHeading","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["company","_body","FixedTabsLayout","secondHeading","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["company","_body","FixedTabsLayout","secondHeading","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["company","_body","FixedTabsLayout","secondHeading","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["company","_body","FixedTabsLayout","secondHeading","CustomImage","sizes"]}],"namespace":["companyIndex","_body","FixedTabsLayout","secondHeading","CustomImage"]}],"namespace":["articlesIndex","_body","FixedTabsLayout","secondHeading"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","name":"secondBody","label":"Second Body","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["company","_body","FixedTabsLayout","secondBody","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["company","_body","FixedTabsLayout","secondBody","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["company","_body","FixedTabsLayout","secondBody","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["company","_body","FixedTabsLayout","secondBody","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["company","_body","FixedTabsLayout","secondBody","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["company","_body","FixedTabsLayout","secondBody","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["company","_body","FixedTabsLayout","secondBody","VideoEmbed","duration"]}],"namespace":["companyIndex","_body","FixedTabsLayout","secondBody","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["company","_body","FixedTabsLayout","secondBody","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["company","_body","FixedTabsLayout","secondBody","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["company","_body","FixedTabsLayout","secondBody","BookingButton","buttonSubtitle"]}],"namespace":["companyIndex","_body","FixedTabsLayout","secondBody","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["company","_body","FixedTabsLayout","secondBody","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["caseStudy","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["caseStudy","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["caseStudy","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["caseStudy","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList","skills"]}],"namespace":["company","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["caseStudy","_body","FixedTabsLayout","secondBody","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["caseStudy","_body","FixedTabsLayout","secondBody","ExpertBlock","link","url"]}],"namespace":["company","_body","FixedTabsLayout","secondBody","ExpertBlock","link"]}],"namespace":["companyIndex","_body","FixedTabsLayout","secondBody","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["caseStudy","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["caseStudy","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["caseStudy","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["caseStudy","content","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["caseStudy","content","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["caseStudy","content","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["caseStudy","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["company","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["companyIndex","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["company","_body","FixedTabsLayout","secondBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["company","_body","FixedTabsLayout","secondBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["company","_body","FixedTabsLayout","secondBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["company","_body","FixedTabsLayout","secondBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["company","_body","FixedTabsLayout","secondBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["company","_body","FixedTabsLayout","secondBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["company","_body","FixedTabsLayout","secondBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["company","_body","FixedTabsLayout","secondBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["company","_body","FixedTabsLayout","secondBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["company","_body","FixedTabsLayout","secondBody","CustomImage","sizes"]}],"namespace":["companyIndex","_body","FixedTabsLayout","secondBody","CustomImage"]}],"namespace":["articlesIndex","_body","FixedTabsLayout","secondBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["articlesIndex","_body","FixedTabsLayout"]},{"label":"Google Maps","name":"GoogleMaps","ui":{"previewSrc":"/images/thumbs/tina/google-maps.jpg"},"fields":[{"type":"string","label":"URL","name":"embedUrl","required":true,"namespace":["articlesIndex","_body","GoogleMaps","embedUrl"],"searchable":true,"uid":false},{"type":"string","label":"Width","name":"embedWidth","namespace":["articlesIndex","_body","GoogleMaps","embedWidth"],"searchable":true,"uid":false},{"type":"string","label":"Height","name":"embedHeight","namespace":["articlesIndex","_body","GoogleMaps","embedHeight"],"searchable":true,"uid":false}],"namespace":["articlesIndex","_body","GoogleMaps"]},{"label":"Grid Layout","name":"GridLayout","ui":{"previewSrc":"/images/thumbs/tina/grid-layout.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["articlesIndex","_body","GridLayout","title"],"searchable":true,"uid":false},{"type":"object","list":true,"label":"Grid Items","name":"grids","ui":{},"fields":[{"type":"string","label":"Grid Title","name":"gridTitle","namespace":["companyIndex","_body","GridLayout","grids","gridTitle"]},{"type":"boolean","label":"Show Grid Title","name":"showGridTitle","namespace":["companyIndex","_body","GridLayout","grids","showGridTitle"]},{"type":"boolean","label":"Centered Grid Title","name":"centeredGridTitle","namespace":["companyIndex","_body","GridLayout","grids","centeredGridTitle"]},{"type":"boolean","label":"Show Header Divider","name":"showHeaderDivider","namespace":["companyIndex","_body","GridLayout","grids","showHeaderDivider"]},{"type":"boolean","label":"Offset Grid Start","name":"offsetGridStart","namespace":["companyIndex","_body","GridLayout","grids","offsetGridStart"]},{"type":"object","label":"Blocks","name":"blocks","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["company","_body","GridLayout","grids","blocks","title"]},{"type":"boolean","label":"Show Title","name":"showTitle","namespace":["company","_body","GridLayout","grids","blocks","showTitle"]},{"type":"image","label":"Image","name":"image","uploadDir":{"namespace":["page","beforeBody","GridLayout","grids","blocks","image","uploadDir"]},"namespace":["company","_body","GridLayout","grids","blocks","image"]},{"type":"image","label":"Related Image","name":"relatedImage","uploadDir":{"namespace":["page","beforeBody","GridLayout","grids","blocks","relatedImage","uploadDir"]},"namespace":["company","_body","GridLayout","grids","blocks","relatedImage"]},{"type":"rich-text","name":"linkContent","label":"Link Content","templates":[{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["caseStudy","content","GridLayout","grids","blocks","linkContent","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["caseStudy","content","GridLayout","grids","blocks","linkContent","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["caseStudy","content","GridLayout","grids","blocks","linkContent","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["caseStudy","content","GridLayout","grids","blocks","linkContent","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["caseStudy","content","GridLayout","grids","blocks","linkContent","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["caseStudy","content","GridLayout","grids","blocks","linkContent","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["caseStudy","content","GridLayout","grids","blocks","linkContent","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["caseStudy","content","GridLayout","grids","blocks","linkContent","UtilityButton","openInNewTab"]}],"namespace":["caseStudy","_body","GridLayout","grids","blocks","linkContent","UtilityButton"]}],"namespace":["company","_body","GridLayout","grids","blocks","linkContent"]}],"namespace":["companyIndex","_body","GridLayout","grids","blocks"]}],"namespace":["articlesIndex","_body","GridLayout","grids"],"searchable":true,"uid":false}],"namespace":["articlesIndex","_body","GridLayout"]},{"name":"Hero","label":"Hero","ui":{"previewSrc":"/blocks/hero.png","defaultItem":{"tagline":"Here's some text above the other text","headline":"This Big Text is Totally Awesome","text":"Phasellus scelerisque, libero eu finibus rutrum, risus risus accumsan libero, nec molestie urna dui a leo."}},"fields":[{"type":"string","label":"Tagline","name":"tagline","namespace":["articlesIndex","_body","Hero","tagline"],"searchable":true,"uid":false},{"type":"string","label":"Headline","name":"headline","namespace":["articlesIndex","_body","Hero","headline"],"searchable":true,"uid":false},{"label":"Text","name":"text","type":"rich-text","namespace":["articlesIndex","_body","Hero","text"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"label":"Actions","name":"actions","type":"object","list":true,"ui":{"defaultItem":{"label":"Action Label","type":"button","icon":true,"link":"/"}},"fields":[{"label":"Label","name":"label","type":"string","namespace":["companyIndex","_body","Hero","actions","label"]},{"label":"Type","name":"type","type":"string","options":[{"label":"Button","value":"button"},{"label":"Link","value":"link"}],"namespace":["companyIndex","_body","Hero","actions","type"]},{"label":"Icon","name":"icon","type":"boolean","namespace":["companyIndex","_body","Hero","actions","icon"]},{"label":"Link","name":"link","type":"string","namespace":["companyIndex","_body","Hero","actions","link"]}],"namespace":["articlesIndex","_body","Hero","actions"],"searchable":true,"uid":false},{"type":"object","label":"Image","name":"image","fields":[{"name":"src","label":"Image Source","type":"image","namespace":["companyIndex","_body","Hero","image","src"]},{"name":"alt","label":"Alt Text","type":"string","namespace":["companyIndex","_body","Hero","image","alt"]}],"namespace":["articlesIndex","_body","Hero","image"],"searchable":true,"uid":false},{"type":"string","label":"Color","name":"color","options":[{"label":"Default","value":"default"},{"label":"Tint","value":"tint"},{"label":"Primary","value":"primary"}],"namespace":["articlesIndex","_body","Hero","color"],"searchable":true,"uid":false}],"namespace":["articlesIndex","_body","Hero"]},{"name":"HorizontalCard","label":"Horizontal Card","ui":{"previewSrc":"/images/thumbs/tina/horizontal-card.jpg"},"fields":[{"type":"object","label":"Cards","name":"cardList","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["companyIndex","_body","HorizontalCard","cardList","title"]},{"type":"rich-text","label":"Content","name":"content","namespace":["companyIndex","_body","HorizontalCard","cardList","content"]},{"type":"image","label":"Thumbnail","name":"thumbnail","uploadDir":{"namespace":["page","beforeBody","HorizontalCard","cardList","thumbnail","uploadDir"]},"namespace":["companyIndex","_body","HorizontalCard","cardList","thumbnail"]},{"type":"string","label":"Link","name":"link","namespace":["companyIndex","_body","HorizontalCard","cardList","link"]}],"namespace":["articlesIndex","_body","HorizontalCard","cardList"],"searchable":true,"uid":false},{"type":"object","label":"Button","name":"button","fields":[{"type":"string","label":"Text","name":"text","namespace":["companyIndex","_body","HorizontalCard","button","text"]},{"type":"string","label":"Link","name":"link","namespace":["companyIndex","_body","HorizontalCard","button","link"]}],"namespace":["articlesIndex","_body","HorizontalCard","button"],"searchable":true,"uid":false}],"namespace":["articlesIndex","_body","HorizontalCard"]},{"name":"InternalCarousel","label":"Internal Carousel","ui":{"previewSrc":"/images/thumbs/tina/internal-carousel.jpg"},"fields":[{"label":"Images","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Image description"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["companyIndex","_body","InternalCarousel","items","label"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","InternalCarousel","items","imgSrc","uploadDir"]},"namespace":["companyIndex","_body","InternalCarousel","items","imgSrc"]}],"namespace":["articlesIndex","_body","InternalCarousel","items"],"searchable":true,"uid":false},{"type":"string","label":"Header","name":"header","namespace":["articlesIndex","_body","InternalCarousel","header"],"searchable":true,"uid":false},{"type":"rich-text","label":"Text","name":"paragraph","isBody":false,"namespace":["articlesIndex","_body","InternalCarousel","paragraph"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Website","name":"website","namespace":["articlesIndex","_body","InternalCarousel","website"],"searchable":true,"uid":false},{"type":"object","label":"Technologies","name":"technologies","list":true,"ui":{},"fields":[{"type":"string","label":"Name","name":"name","namespace":["companyIndex","_body","InternalCarousel","technologies","name"]}],"namespace":["articlesIndex","_body","InternalCarousel","technologies"],"searchable":true,"uid":false},{"type":"string","label":"Case Study","name":"caseStudyUrl","namespace":["articlesIndex","_body","InternalCarousel","caseStudyUrl"],"searchable":true,"uid":false},{"type":"string","label":"Video URL","name":"videoUrl","namespace":["articlesIndex","_body","InternalCarousel","videoUrl"],"searchable":true,"uid":false}],"namespace":["articlesIndex","_body","InternalCarousel"]},{"label":"Join As Presenter","name":"joinAsPresenter","fields":[{"label":"Learn More Link","name":"link","type":"string","namespace":["articlesIndex","_body","joinAsPresenter","link"],"searchable":true,"uid":false},{"label":"Image","name":"img","type":"image","namespace":["articlesIndex","_body","joinAsPresenter","img"],"searchable":false,"uid":false}],"namespace":["articlesIndex","_body","joinAsPresenter"]},{"label":"Join Github","name":"joinGithub","ui":{"previewSrc":"/images/thumbs/tina/join-github.jpg"},"fields":[{"label":"Title","name":"title","type":"string","namespace":["articlesIndex","_body","joinGithub","title"],"searchable":true,"uid":false},{"label":"Join Github Link","name":"link","type":"string","namespace":["articlesIndex","_body","joinGithub","link"],"searchable":true,"uid":false}],"namespace":["articlesIndex","_body","joinGithub"]},{"name":"JotFormEmbed","label":"JotForm Embed","ui":{"previewSrc":"/images/thumbs/tina/jotform-embed.jpg"},"fields":[{"type":"string","name":"jotFormId","label":"JotForm Id","required":true,"namespace":["articlesIndex","_body","JotFormEmbed","jotFormId"],"searchable":true,"uid":false},{"type":"string","label":"Button Text","name":"buttonText","namespace":["articlesIndex","_body","JotFormEmbed","buttonText"],"searchable":true,"uid":false},{"type":"string","name":"containerClass","label":"Container Class","namespace":["articlesIndex","_body","JotFormEmbed","containerClass"],"searchable":true,"uid":false},{"type":"string","label":"Button Class","name":"buttonClass","namespace":["articlesIndex","_body","JotFormEmbed","buttonClass"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","namespace":["articlesIndex","_body","JotFormEmbed","animated"],"searchable":true,"uid":false}],"namespace":["articlesIndex","_body","JotFormEmbed"]},{"name":"LatestTech","label":"Latest Tech","ui":{"previewSrc":"/images/thumbs/tina/latest-tech.jpg"},"fields":[{"type":"reference","description":"Select a config file including a set of badges","collections":["userGroupGlobal"],"label":"Badges","name":"badges","namespace":["articlesIndex","_body","LatestTech","badges"],"searchable":true,"uid":false}],"namespace":["articlesIndex","_body","LatestTech"]},{"name":"LocationBlock","label":"Locations","ui":{"previewSrc":"/images/thumbs/tina/locations.jpg"},"fields":[{"type":"string","name":"title","label":"Title","namespace":["articlesIndex","_body","LocationBlock","title"],"searchable":true,"uid":false},{"type":"object","label":"Location List","name":"locationList","list":true,"ui":{},"fields":[{"type":"reference","collections":["locations"],"label":"Location","name":"location","namespace":["companyIndex","_body","LocationBlock","locationList","location"]}],"namespace":["articlesIndex","_body","LocationBlock","locationList"],"searchable":true,"uid":false},{"type":"object","name":"chapelWebsite","label":"Chapel Website","fields":[{"type":"string","name":"title","label":"Text","namespace":["companyIndex","_body","LocationBlock","chapelWebsite","title"]},{"type":"string","name":"URL","label":"URL","namespace":["companyIndex","_body","LocationBlock","chapelWebsite","URL"]}],"namespace":["articlesIndex","_body","LocationBlock","chapelWebsite"],"searchable":true,"uid":false}],"namespace":["articlesIndex","_body","LocationBlock"]},{"name":"NewslettersTable","label":"Newsletters Table","ui":{"previewSrc":"/images/thumbs/tina/newsletters-table.jpg"},"fields":[{"type":"string","label":"Header text","name":"headerText","namespace":["articlesIndex","_body","NewslettersTable","headerText"],"searchable":true,"uid":false}],"namespace":["articlesIndex","_body","NewslettersTable"]},{"label":"Organizer","name":"organizer","fields":[{"type":"image","label":"Profile Image","name":"profileImg","namespace":["articlesIndex","_body","organizer","profileImg"],"searchable":false,"uid":false},{"type":"string","label":"Profile Link","name":"profileLink","namespace":["articlesIndex","_body","organizer","profileLink"],"searchable":true,"uid":false},{"type":"string","label":"Name","name":"name","namespace":["articlesIndex","_body","organizer","name"],"searchable":true,"uid":false},{"type":"string","label":"Position","name":"position","namespace":["articlesIndex","_body","organizer","position"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","namespace":["articlesIndex","_body","organizer","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["articlesIndex","_body","organizer"]},{"label":"Payment Block","name":"paymentBlock","ui":{"previewSrc":"/images/thumbs/tina/payment-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["articlesIndex","_body","paymentBlock","title"],"searchable":true,"uid":false},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["articlesIndex","_body","paymentBlock","subTitle"],"searchable":true,"uid":false},{"type":"reference","label":"Payment Links","name":"payments","collections":["paymentDetails"],"namespace":["articlesIndex","_body","paymentBlock","payments"],"searchable":true,"uid":false},{"type":"rich-text","label":"Footer","name":"footer","namespace":["articlesIndex","_body","paymentBlock","footer"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"image","label":"Credit Cards Image","name":"creditImgSrc","namespace":["articlesIndex","_body","paymentBlock","creditImgSrc"],"searchable":false,"uid":false},{"type":"string","label":"Alt Text","name":"altTxt","namespace":["articlesIndex","_body","paymentBlock","altTxt"],"searchable":true,"uid":false}],"namespace":["articlesIndex","_body","paymentBlock"]},{"name":"PresenterBlock","label":"Presenters","ui":{"previewSrc":"/images/thumbs/tina/presenters.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["articlesIndex","_body","PresenterBlock","header"],"searchable":true,"uid":false},{"type":"object","name":"presenterList","label":"Presenters","list":true,"ui":{},"fields":[{"type":"reference","name":"presenter","label":"Presenters","collections":["presenter"],"namespace":["companyIndex","_body","PresenterBlock","presenterList","presenter"]}],"namespace":["articlesIndex","_body","PresenterBlock","presenterList"],"searchable":true,"uid":false},{"type":"object","label":"Other Events","name":"otherEvent","fields":[{"type":"string","label":"Title","name":"title","namespace":["companyIndex","_body","PresenterBlock","otherEvent","title"]},{"type":"string","label":"URL","name":"eventURL","namespace":["companyIndex","_body","PresenterBlock","otherEvent","eventURL"]}],"namespace":["articlesIndex","_body","PresenterBlock","otherEvent"],"searchable":true,"uid":false}],"namespace":["articlesIndex","_body","PresenterBlock"]},{"label":"Recurring Event","name":"RecurringEvent","ui":{"previewSrc":"/images/thumbs/tina/recurring-event.jpg"},"fields":[{"type":"string","label":"Apply Link Redirect","name":"applyLinkRedirect","namespace":["articlesIndex","_body","RecurringEvent","applyLinkRedirect"],"searchable":true,"uid":false},{"type":"string","label":"Day","name":"day","options":[{"label":"Monday","value":"monday"},{"label":"Tuesday","value":"tuesday"},{"label":"Wednesday","value":"wednesday"},{"label":"Thursday","value":"thursday"},{"label":"Friday","value":"friday"},{"label":"Saturday","value":"saturday"},{"label":"Sunday","value":"sunday"}],"required":true,"namespace":["articlesIndex","_body","RecurringEvent","day"],"searchable":true,"uid":false}],"namespace":["articlesIndex","_body","RecurringEvent"]},{"name":"SectionHeader","label":"Section Header","ui":{"previewSrc":"/images/thumbs/tina/section-header.jpg"},"fields":[{"type":"string","label":"Header Text","name":"headerText","namespace":["articlesIndex","_body","SectionHeader","headerText"],"searchable":true,"uid":false}],"namespace":["articlesIndex","_body","SectionHeader"]},{"name":"ServiceCards","label":"Service Cards","ui":{"previewSrc":"/images/thumbs/tina/services-cards.jpg"},"fields":[{"type":"string","label":"Big Cards Label","name":"bigCardsLabel","namespace":["articlesIndex","_body","ServiceCards","bigCardsLabel"],"searchable":true,"uid":false},{"label":"Big Cards","name":"bigCards","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["companyIndex","_body","ServiceCards","bigCards","title"]},{"type":"string","label":"Description","component":"textarea","name":"description","namespace":["companyIndex","_body","ServiceCards","bigCards","description"]},{"type":"string","label":"URL","name":"link","namespace":["companyIndex","_body","ServiceCards","bigCards","link"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Red","value":"red"},{"label":"Light Gray","value":"lightgray"},{"label":"Medium Gray","value":"mediumgray"},{"label":"Dark Gray","value":"darkgray"}],"namespace":["companyIndex","_body","ServiceCards","bigCards","color"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","ServiceCards","bigCards","imgSrc","uploadDir"]},"namespace":["companyIndex","_body","ServiceCards","bigCards","imgSrc"]}],"namespace":["articlesIndex","_body","ServiceCards","bigCards"],"searchable":true,"uid":false},{"type":"string","label":"Small Cards Label","name":"smallCardsLabel","namespace":["articlesIndex","_body","ServiceCards","smallCardsLabel"],"searchable":true,"uid":false},{"label":"Small Cards","name":"smallCards","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["companyIndex","_body","ServiceCards","smallCards","title"]},{"type":"string","label":"URL","name":"link","namespace":["companyIndex","_body","ServiceCards","smallCards","link"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Red","value":"red"},{"label":"Light Gray","value":"lightgray"},{"label":"Medium Gray","value":"mediumgray"},{"label":"Dark Gray","value":"darkgray"}],"namespace":["companyIndex","_body","ServiceCards","smallCards","color"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","ServiceCards","smallCards","imgSrc","uploadDir"]},"namespace":["companyIndex","_body","ServiceCards","smallCards","imgSrc"]},{"type":"boolean","label":"External Page","description":"Select this if the link is not part of the website. This includes SSW.Rules, and SSW.People links","name":"isExternal","namespace":["companyIndex","_body","ServiceCards","smallCards","isExternal"]}],"namespace":["articlesIndex","_body","ServiceCards","smallCards"],"searchable":true,"uid":false},{"label":"Links","name":"links","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["companyIndex","_body","ServiceCards","links","label"]},{"type":"string","label":"URL","name":"link","namespace":["companyIndex","_body","ServiceCards","links","link"]}],"namespace":["articlesIndex","_body","ServiceCards","links"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["articlesIndex","_body","ServiceCards","backgroundColor"],"searchable":true,"uid":false}],"namespace":["articlesIndex","_body","ServiceCards"]},{"label":"Table Layout","name":"TableLayout","ui":{"previewSrc":"/images/thumbs/tina/table-layout.jpg"},"fields":[{"label":"Table Style","name":"tableStyle","type":"string","options":["none","basicBorder","styled","benefits"],"namespace":["articlesIndex","_body","TableLayout","tableStyle"],"searchable":true,"uid":false},{"label":"First column bolded + left aligned","name":"firstColBold","type":"boolean","required":false,"namespace":["articlesIndex","_body","TableLayout","firstColBold"],"searchable":true,"uid":false},{"type":"string","label":"Table Headers","name":"headers","list":true,"namespace":["articlesIndex","_body","TableLayout","headers"],"searchable":true,"uid":false},{"type":"object","label":"Rows","name":"rows","list":true,"fields":[{"type":"object","label":"Cells","name":"cells","list":true,"fields":[{"type":"string","label":"Value","name":"cellValue","required":true,"component":{"namespace":["page","beforeBody","TableLayout","rows","cells","cellValue",""]},"namespace":["companyIndex","_body","TableLayout","rows","cells","cellValue"]}],"ui":{},"namespace":["articles","subTitle","TableLayout","rows","cells"]},{"type":"boolean","label":"Is Heading","name":"isHeader","required":false,"namespace":["articles","subTitle","TableLayout","rows","isHeader"]}],"ui":{},"namespace":["articlesIndex","_body","TableLayout","rows"],"searchable":true,"uid":false}],"namespace":["articlesIndex","_body","TableLayout"]},{"name":"TestimonialsList","label":"Testimonials List","ui":{"previewSrc":"/images/thumbs/tina/testimonials.jpg"},"fields":[{"type":"object","label":"Exclude Categories","name":"excludedCategories","ui":{},"list":true,"fields":[{"type":"reference","label":"Category Name","name":"categoryName","collections":["testimonialCategories"],"namespace":["articles","subTitle","TestimonialsList","excludedCategories","categoryName"]}],"namespace":["articlesIndex","_body","TestimonialsList","excludedCategories"],"searchable":true,"uid":false}],"namespace":["articlesIndex","_body","TestimonialsList"]},{"label":"Training Information","name":"TrainingInformation","ui":{"previewSrc":"/images/thumbs/tina/training-information.jpg"},"fields":[{"type":"object","label":"Training Information Items","name":"trainingInformationItems","list":true,"fields":[{"type":"string","label":"Header","name":"header","namespace":["companyIndex","_body","TrainingInformation","trainingInformationItems","header"]},{"type":"rich-text","label":"Body","name":"body","templates":[{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["caseStudy","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["caseStudy","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["caseStudy","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["caseStudy","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["caseStudy","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","afterBody"]}],"namespace":["company","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem"]},{"label":"Recurring Event","name":"RecurringEvent","ui":{"previewSrc":"/images/thumbs/tina/recurring-event.jpg"},"fields":[{"type":"string","label":"Apply Link Redirect","name":"applyLinkRedirect","namespace":["caseStudy","_body","TrainingInformation","trainingInformationItems","body","RecurringEvent","applyLinkRedirect"]},{"type":"string","label":"Day","name":"day","options":[{"label":"Monday","value":"monday"},{"label":"Tuesday","value":"tuesday"},{"label":"Wednesday","value":"wednesday"},{"label":"Thursday","value":"thursday"},{"label":"Friday","value":"friday"},{"label":"Saturday","value":"saturday"},{"label":"Sunday","value":"sunday"}],"required":true,"namespace":["caseStudy","_body","TrainingInformation","trainingInformationItems","body","RecurringEvent","day"]}],"namespace":["company","_body","TrainingInformation","trainingInformationItems","body","RecurringEvent"]}],"namespace":["companyIndex","_body","TrainingInformation","trainingInformationItems","body"]}],"namespace":["articlesIndex","_body","TrainingInformation","trainingInformationItems"],"searchable":true,"uid":false}],"namespace":["articlesIndex","_body","TrainingInformation"]},{"label":"Training Learning Outcomes","name":"TrainingLearningOutcome","ui":{"previewSrc":"/images/thumbs/tina/training-learning-outcomes.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["articlesIndex","_body","TrainingLearningOutcome","header"],"searchable":true,"uid":false},{"type":"object","label":"List Items","name":"listItems","list":true,"fields":[{"type":"string","label":"Title","name":"title","namespace":["companyIndex","_body","TrainingLearningOutcome","listItems","title"]},{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["companyIndex","_body","TrainingLearningOutcome","listItems","content"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","TrainingLearningOutcome","listItems","icon","uploadDir"]},"namespace":["companyIndex","_body","TrainingLearningOutcome","listItems","icon"]}],"namespace":["articlesIndex","_body","TrainingLearningOutcome","listItems"],"searchable":true,"uid":false}],"namespace":["articlesIndex","_body","TrainingLearningOutcome"]},{"label":"Tweet Embed","name":"TweetEmbed","ui":{"previewSrc":"/images/thumbs/tina/tweet-embed.jpg"},"fields":[{"type":"string","name":"url","label":"Tweet URL","required":true,"namespace":["articlesIndex","_body","TweetEmbed","url"],"searchable":true,"uid":false}],"namespace":["articlesIndex","_body","TweetEmbed"]},{"name":"UpcomingEvents","label":"Upcoming Events","ui":{"previewSrc":"/images/thumbs/tina/upcoming-events.jpg","defaultItem":{"title":"Upcoming Events","numberOfEvents":30}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["articlesIndex","_body","UpcomingEvents","title"],"searchable":true,"uid":false},{"type":"number","label":"Number of Events","name":"numberOfEvents","namespace":["articlesIndex","_body","UpcomingEvents","numberOfEvents"],"searchable":true,"uid":false}],"namespace":["articlesIndex","_body","UpcomingEvents"]},{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["articlesIndex","_body","UtilityButton","buttonText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"link","required":false,"namespace":["articlesIndex","_body","UtilityButton","link"],"searchable":true,"uid":false},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["articlesIndex","_body","UtilityButton","size"],"searchable":true,"uid":false},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["articlesIndex","_body","UtilityButton","btnIcon"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["articlesIndex","_body","UtilityButton","animated"],"searchable":true,"uid":false},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["articlesIndex","_body","UtilityButton","uncentered"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["articlesIndex","_body","UtilityButton","removeTopMargin"],"searchable":true,"uid":false},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["articlesIndex","_body","UtilityButton","openInNewTab"],"searchable":true,"uid":false}],"namespace":["articlesIndex","_body","UtilityButton"]},{"name":"VerticalImageLayout","label":"Vertical Image Layout","fields":[{"type":"image","label":"Image","name":"imageSrc","uploadDir":{"namespace":["page","beforeBody","VerticalImageLayout","imageSrc","uploadDir"]},"namespace":["articlesIndex","_body","VerticalImageLayout","imageSrc"],"searchable":false,"uid":false},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["articlesIndex","_body","VerticalImageLayout","altText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"imageLink","namespace":["articlesIndex","_body","VerticalImageLayout","imageLink"],"searchable":true,"uid":false},{"type":"number","label":"Height","name":"height","required":true,"namespace":["articlesIndex","_body","VerticalImageLayout","height"],"searchable":true,"uid":false},{"type":"number","label":"Width","name":"width","required":true,"namespace":["articlesIndex","_body","VerticalImageLayout","width"],"searchable":true,"uid":false},{"type":"rich-text","label":"Message","name":"message","required":true,"namespace":["articlesIndex","_body","VerticalImageLayout","message"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["articlesIndex","_body","VerticalImageLayout","sizes"],"searchable":true,"uid":false}],"namespace":["articlesIndex","_body","VerticalImageLayout"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["articlesIndex","_body","VerticalListItem","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"number","label":"Index number","name":"index","namespace":["articlesIndex","_body","VerticalListItem","index"],"searchable":true,"uid":false},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["articlesIndex","_body","VerticalListItem","icon"],"searchable":false,"uid":false},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["articlesIndex","_body","VerticalListItem","iconScale"],"searchable":true,"uid":false},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["articlesIndex","_body","VerticalListItem","afterBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["articlesIndex","_body","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["articlesIndex","_body","VideoEmbed","url"],"searchable":true,"uid":false},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["articlesIndex","_body","VideoEmbed","videoWidth"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["articlesIndex","_body","VideoEmbed","removeMargin"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["articlesIndex","_body","VideoEmbed","uncentre"],"searchable":true,"uid":false},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["articlesIndex","_body","VideoEmbed","overflow"],"searchable":true,"uid":false},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["articlesIndex","_body","VideoEmbed","caption"],"searchable":true,"uid":false},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["articlesIndex","_body","VideoEmbed","duration"],"searchable":true,"uid":false}],"namespace":["articlesIndex","_body","VideoEmbed"]},{"name":"InlineJotForm","label":"In-line JotForm","ui":{"previewSrc":"/images/thumbs/tina/inline-jot-form.jpg"},"fields":[{"type":"string","name":"title","label":"Title","description":"Optional title for JotForm","namespace":["articlesIndex","_body","InlineJotForm","title"],"searchable":true,"uid":false},{"type":"string","name":"jotFormId","label":"JotForm ID","required":true,"namespace":["articlesIndex","_body","InlineJotForm","jotFormId"],"searchable":true,"uid":false},{"type":"string","name":"additionalClasses","label":"Additional classnames","description":"Optional styling for iframe element only","namespace":["articlesIndex","_body","InlineJotForm","additionalClasses"],"searchable":true,"uid":false}],"namespace":["articlesIndex","_body","InlineJotForm"]}],"isBody":true,"namespace":["articlesIndex","_body"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"boolean","name":"showSidebarPanel","label":"Show Sidebar Panel","required":false,"namespace":["articlesIndex","showSidebarPanel"],"searchable":true,"uid":false},{"type":"object","label":"Sidebar Panel Values","name":"sidebarPanel","required":false,"fields":[{"type":"string","label":"Title (70 characters)","name":"title","ui":{},"namespace":["articlesIndex","sidebarPanel","title"],"searchable":true,"uid":false},{"type":"string","label":"Description (500 characters)","name":"description","component":"textarea","ui":{},"namespace":["articlesIndex","sidebarPanel","description"],"searchable":true,"uid":false},{"type":"boolean","name":"showSidebarPanel","label":"Show Sidebar Panel","description":"Disable this if you don't want the sidebar for this article","required":false,"namespace":["articlesIndex","sidebarPanel","showSidebarPanel"],"searchable":true,"uid":false},{"type":"string","label":"Action URL","name":"actionUrl","namespace":["articlesIndex","sidebarPanel","actionUrl"],"searchable":true,"uid":false},{"type":"string","label":"Action text","name":"actionText","namespace":["articlesIndex","sidebarPanel","actionText"],"searchable":true,"uid":false}],"namespace":["articlesIndex","sidebarPanel"],"searchable":true,"uid":false}],"namespace":["articlesIndex"]},{"path":"content/articles","name":"articles","label":"Articles - Pages","format":"mdx","defaultItem":{"namespace":["articles","defaultItem"]},"match":{"exclude":"@(case-study|index|clientCategories)/*"},"ui":{},"fields":[{"type":"string","name":"tip","label":"Tip","ui":{},"namespace":["articles","tip"],"searchable":true,"uid":false},{"type":"object","label":"SEO Values","name":"seo","fields":[{"type":"string","label":"Title (70 characters)","name":"title","ui":{},"namespace":["articles","seo","title"],"searchable":true,"uid":false},{"type":"string","label":"Description (150 characters)","name":"description","component":"textarea","ui":{},"namespace":["articles","seo","description"],"searchable":true,"uid":false},{"type":"string","label":"Canonical URL","name":"canonical","namespace":["articles","seo","canonical"],"searchable":true,"uid":false},{"type":"boolean","name":"showBreadcrumb","label":"Show Breadcrumb","namespace":["articles","seo","showBreadcrumb"],"searchable":true,"uid":false},{"label":"Images","name":"images","list":true,"type":"object","ui":{"defaultItem":{"url":"/images/ssw-default-og.jpg","width":1200,"height":630,"alt":"SSW Consulting - Enterprise Software Development"}},"fields":[{"type":"image","label":"Image Url","name":"url","require":true,"namespace":["companyIndex","seo","images","url"],"searchable":false,"uid":false},{"type":"number","label":"Width (px)","name":"width","namespace":["companyIndex","seo","images","width"],"searchable":true,"uid":false},{"type":"number","label":"Height (px)","name":"height","namespace":["companyIndex","seo","images","height"],"searchable":true,"uid":false},{"type":"string","label":"Image Alt Text","name":"alt","namespace":["companyIndex","seo","images","alt"],"searchable":true,"uid":false}],"namespace":["articles","seo","images"],"searchable":true,"uid":false}],"namespace":["articles","seo"],"searchable":true,"uid":false},{"type":"image","name":"bannerImg","label":"Banner Image","required":false,"uploadDir":{"namespace":["articles","bannerImg","uploadDir"]},"namespace":["articles","bannerImg"],"searchable":false,"uid":false},{"type":"string","name":"title","label":"Title","namespace":["articles","title"],"searchable":true,"uid":false},{"type":"rich-text","name":"subTitle","label":"Body","templates":[{"name":"Carousel","label":"Carousel","ui":{"previewSrc":"/images/thumbs/tina/carousel.jpg"},"fields":[{"label":"Items","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Item description","link":"/","openIn":"sameWindow"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["companyIndex","_body","Carousel","items","label"]},{"type":"string","label":"URL","name":"link","description":"If link contains ssw.com.au, you can skip the full URL and just use the path. e.g. /services","namespace":["companyIndex","_body","Carousel","items","link"]},{"type":"string","label":"Open in","name":"openIn","description":"If it is external link, please select 'New window' option.","options":[{"label":"Same window","value":"sameWindow"},{"label":"Modal","value":"modal"},{"label":"New window","value":"newWindow"}],"namespace":["companyIndex","_body","Carousel","items","openIn"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","Carousel","items","imgSrc","uploadDir"]},"namespace":["companyIndex","_body","Carousel","items","imgSrc"]}],"namespace":["articles","subTitle","Carousel","items"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["articles","subTitle","Carousel","backgroundColor"],"searchable":true,"uid":false},{"type":"number","label":"Delay (Seconds)","name":"delay","required":true,"namespace":["articles","subTitle","Carousel","delay"],"searchable":true,"uid":false},{"type":"boolean","label":"Show on mobile devices","name":"showOnMobileDevices","namespace":["articles","subTitle","Carousel","showOnMobileDevices"],"searchable":true,"uid":false}],"namespace":["articles","subTitle","Carousel"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["articles","subTitle","ColorBlock","title"],"searchable":true,"uid":false},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["articles","subTitle","ColorBlock","subTitle"],"searchable":true,"uid":false},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["companyIndex","_body","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["companyIndex","_body","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["companyIndex","_body","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["companyIndex","_body","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["companyIndex","_body","ColorBlock","colorRow","caption"]}],"namespace":["articles","subTitle","ColorBlock","colorRow"],"searchable":true,"uid":false}],"namespace":["articles","subTitle","ColorBlock"]},{"name":"ColorPalette","label":"Color Palette","ui":{"previewSrc":"/images/thumbs/tina/color-palette.jpg"},"fields":[{"type":"string","label":"Name","name":"name","namespace":["articles","subTitle","ColorPalette","name"],"searchable":true,"uid":false}],"namespace":["articles","subTitle","ColorPalette"]},{"name":"CustomDownloadButton","label":"Custom Download Button","ui":{"previewSrc":"/images/thumbs/tina/custom-download-button.jpg"},"fields":[{"type":"string","label":"Text","name":"btnText","namespace":["articles","subTitle","CustomDownloadButton","btnText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"btnLink","namespace":["articles","subTitle","CustomDownloadButton","btnLink"],"searchable":true,"uid":false}],"namespace":["articles","subTitle","CustomDownloadButton"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["articles","subTitle","CustomImage","src"],"searchable":false,"uid":false},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["articles","subTitle","CustomImage","altText"],"searchable":true,"uid":false},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["articles","subTitle","CustomImage","alignment"],"searchable":true,"uid":false},{"type":"number","label":"Height","name":"height","required":true,"namespace":["articles","subTitle","CustomImage","height"],"searchable":true,"uid":false},{"type":"number","label":"Width","name":"width","required":true,"namespace":["articles","subTitle","CustomImage","width"],"searchable":true,"uid":false},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["articles","subTitle","CustomImage","link"],"searchable":true,"uid":false},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["articles","subTitle","CustomImage","customClass"],"searchable":true,"uid":false},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["articles","subTitle","CustomImage","caption"],"searchable":true,"uid":false},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["articles","subTitle","CustomImage","captionColor"],"searchable":true,"uid":false},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["articles","subTitle","CustomImage","sizes"],"searchable":true,"uid":false}],"namespace":["articles","subTitle","CustomImage"]},{"name":"DynamicCardGridBlock","label":"Dynamic Card Grid Block","fields":[{"type":"string","label":"Grid Columns Layout","name":"gridLayout","description":"Default 3 columns","options":["single","double","triple","four"],"namespace":["articles","subTitle","DynamicCardGridBlock","gridLayout"],"searchable":true,"uid":false},{"type":"object","label":"Image List","name":"imageList","ui":{},"list":true,"fields":[{"type":"string","label":"Title","name":"title","required":true,"namespace":["company","subTitle","DynamicCardGridBlock","imageList","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["company","subTitle","DynamicCardGridBlock","imageList","subTitle"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"URL","name":"url","required":true,"namespace":["company","subTitle","DynamicCardGridBlock","imageList","link","url"]},{"type":"string","label":"Label","name":"label","required":true,"namespace":["company","subTitle","DynamicCardGridBlock","imageList","link","label"]}],"namespace":["company","subTitle","DynamicCardGridBlock","imageList","link"]},{"type":"string","label":"Alt Text","name":"altText","required":true,"namespace":["company","subTitle","DynamicCardGridBlock","imageList","altText"]},{"type":"number","name":"height","label":"Height","description":"Default 150px","namespace":["company","subTitle","DynamicCardGridBlock","imageList","height"]},{"type":"number","name":"width","label":"Width","description":"Default 150px","namespace":["company","subTitle","DynamicCardGridBlock","imageList","width"]},{"type":"image","label":"Image","name":"imageSrc","required":true,"uploadDir":{"namespace":["articles","subTitle","DynamicCardGridBlock","imageList","imageSrc","uploadDir"]},"namespace":["company","subTitle","DynamicCardGridBlock","imageList","imageSrc"]}],"namespace":["articles","subTitle","DynamicCardGridBlock","imageList"],"searchable":true,"uid":false}],"namespace":["articles","subTitle","DynamicCardGridBlock"]},{"name":"FixedColumns","label":"Fixed Column Layout (2 columns)","ui":{"previewSrc":"/images/thumbs/tina/fixed-columns.jpg"},"fields":[{"type":"rich-text","label":"Header Section (Optional)","name":"headerSection","namespace":["articles","subTitle","FixedColumns","headerSection"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"First column text","name":"firstColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["company","subTitle","FixedColumns","firstColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["company","subTitle","FixedColumns","firstColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["caseStudy","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["caseStudy","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["caseStudy","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["caseStudy","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["caseStudy","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["caseStudy","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["caseStudy","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["caseStudy","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["caseStudy","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["caseStudy","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["company","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["caseStudy","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["caseStudy","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["caseStudy","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["caseStudy","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["caseStudy","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["company","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["caseStudy","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["caseStudy","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["caseStudy","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["caseStudy","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["caseStudy","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["caseStudy","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["caseStudy","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["company","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["caseStudy","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["caseStudy","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["caseStudy","content","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["caseStudy","content","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["caseStudy","content","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["caseStudy","content","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["caseStudy","content","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["caseStudy","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["company","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock"]}],"namespace":["company","subTitle","FixedColumns","firstColBody","ContentCard","content"]}],"namespace":["companyIndex","_body","FixedColumns","firstColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["company","subTitle","FixedColumns","firstColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["company","subTitle","FixedColumns","firstColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["company","subTitle","FixedColumns","firstColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["company","subTitle","FixedColumns","firstColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["company","subTitle","FixedColumns","firstColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["company","subTitle","FixedColumns","firstColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["company","subTitle","FixedColumns","firstColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["company","subTitle","FixedColumns","firstColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["company","subTitle","FixedColumns","firstColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["company","subTitle","FixedColumns","firstColBody","CustomImage","sizes"]}],"namespace":["companyIndex","_body","FixedColumns","firstColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["caseStudy","_body","FixedColumns","firstColBody","EventLink","content","Flag","country"]}],"namespace":["company","_body","FixedColumns","firstColBody","EventLink","content","Flag"]}],"namespace":["company","subTitle","FixedColumns","firstColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["company","subTitle","FixedColumns","firstColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["company","subTitle","FixedColumns","firstColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["company","subTitle","FixedColumns","firstColBody","EventLink","thumbnailAlt"]}],"namespace":["companyIndex","_body","FixedColumns","firstColBody","EventLink"]}],"namespace":["articles","subTitle","FixedColumns","firstColBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"Second column text","name":"secondColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["company","subTitle","FixedColumns","secondColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["company","subTitle","FixedColumns","secondColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["caseStudy","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["caseStudy","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["caseStudy","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["caseStudy","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["caseStudy","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["caseStudy","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["caseStudy","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["caseStudy","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["caseStudy","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["caseStudy","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["company","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["caseStudy","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["caseStudy","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["caseStudy","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["caseStudy","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["caseStudy","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["company","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["caseStudy","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["caseStudy","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["caseStudy","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["caseStudy","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["caseStudy","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["caseStudy","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["caseStudy","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["company","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["caseStudy","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["caseStudy","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["caseStudy","content","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["caseStudy","content","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["caseStudy","content","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["caseStudy","content","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["caseStudy","content","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["caseStudy","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["company","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock"]}],"namespace":["company","subTitle","FixedColumns","secondColBody","ContentCard","content"]}],"namespace":["companyIndex","_body","FixedColumns","secondColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["company","subTitle","FixedColumns","secondColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["company","subTitle","FixedColumns","secondColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["company","subTitle","FixedColumns","secondColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["company","subTitle","FixedColumns","secondColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["company","subTitle","FixedColumns","secondColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["company","subTitle","FixedColumns","secondColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["company","subTitle","FixedColumns","secondColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["company","subTitle","FixedColumns","secondColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["company","subTitle","FixedColumns","secondColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["company","subTitle","FixedColumns","secondColBody","CustomImage","sizes"]}],"namespace":["companyIndex","_body","FixedColumns","secondColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["caseStudy","_body","FixedColumns","secondColBody","EventLink","content","Flag","country"]}],"namespace":["company","_body","FixedColumns","secondColBody","EventLink","content","Flag"]}],"namespace":["company","subTitle","FixedColumns","secondColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["company","subTitle","FixedColumns","secondColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["company","subTitle","FixedColumns","secondColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["company","subTitle","FixedColumns","secondColBody","EventLink","thumbnailAlt"]}],"namespace":["companyIndex","_body","FixedColumns","secondColBody","EventLink"]}],"namespace":["articles","subTitle","FixedColumns","secondColBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["articles","subTitle","FixedColumns"]},{"name":"SectionHeader","label":"Section Header","ui":{"previewSrc":"/images/thumbs/tina/section-header.jpg"},"fields":[{"type":"string","label":"Header Text","name":"headerText","namespace":["articles","subTitle","SectionHeader","headerText"],"searchable":true,"uid":false}],"namespace":["articles","subTitle","SectionHeader"]},{"label":"Table Layout","name":"TableLayout","ui":{"previewSrc":"/images/thumbs/tina/table-layout.jpg"},"fields":[{"label":"Table Style","name":"tableStyle","type":"string","options":["none","basicBorder","styled","benefits"],"namespace":["articles","subTitle","TableLayout","tableStyle"],"searchable":true,"uid":false},{"label":"First column bolded + left aligned","name":"firstColBold","type":"boolean","required":false,"namespace":["articles","subTitle","TableLayout","firstColBold"],"searchable":true,"uid":false},{"type":"string","label":"Table Headers","name":"headers","list":true,"namespace":["articles","subTitle","TableLayout","headers"],"searchable":true,"uid":false},{"type":"object","label":"Rows","name":"rows","list":true,"fields":[{"type":"object","label":"Cells","name":"cells","list":true,"fields":[{"type":"string","label":"Value","name":"cellValue","required":true,"component":{"namespace":["page","beforeBody","TableLayout","rows","cells","cellValue",""]},"namespace":["company","subTitle","TableLayout","rows","cells","cellValue"]}],"ui":{},"namespace":["companyIndex","_body","TableLayout","rows","cells"]},{"type":"boolean","label":"Is Heading","name":"isHeader","required":false,"namespace":["companyIndex","_body","TableLayout","rows","isHeader"]}],"ui":{},"namespace":["articles","subTitle","TableLayout","rows"],"searchable":true,"uid":false}],"namespace":["articles","subTitle","TableLayout"]},{"name":"TestimonialsList","label":"Testimonials List","ui":{"previewSrc":"/images/thumbs/tina/testimonials.jpg"},"fields":[{"type":"object","label":"Exclude Categories","name":"excludedCategories","ui":{},"list":true,"fields":[{"type":"reference","label":"Category Name","name":"categoryName","collections":["testimonialCategories"],"namespace":["companyIndex","_body","TestimonialsList","excludedCategories","categoryName"]}],"namespace":["articles","subTitle","TestimonialsList","excludedCategories"],"searchable":true,"uid":false}],"namespace":["articles","subTitle","TestimonialsList"]},{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["articles","subTitle","UtilityButton","buttonText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"link","required":false,"namespace":["articles","subTitle","UtilityButton","link"],"searchable":true,"uid":false},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["articles","subTitle","UtilityButton","size"],"searchable":true,"uid":false},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["articles","subTitle","UtilityButton","btnIcon"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["articles","subTitle","UtilityButton","animated"],"searchable":true,"uid":false},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["articles","subTitle","UtilityButton","uncentered"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["articles","subTitle","UtilityButton","removeTopMargin"],"searchable":true,"uid":false},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["articles","subTitle","UtilityButton","openInNewTab"],"searchable":true,"uid":false}],"namespace":["articles","subTitle","UtilityButton"]},{"name":"VerticalImageLayout","label":"Vertical Image Layout","fields":[{"type":"image","label":"Image","name":"imageSrc","uploadDir":{"namespace":["page","beforeBody","VerticalImageLayout","imageSrc","uploadDir"]},"namespace":["articles","subTitle","VerticalImageLayout","imageSrc"],"searchable":false,"uid":false},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["articles","subTitle","VerticalImageLayout","altText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"imageLink","namespace":["articles","subTitle","VerticalImageLayout","imageLink"],"searchable":true,"uid":false},{"type":"number","label":"Height","name":"height","required":true,"namespace":["articles","subTitle","VerticalImageLayout","height"],"searchable":true,"uid":false},{"type":"number","label":"Width","name":"width","required":true,"namespace":["articles","subTitle","VerticalImageLayout","width"],"searchable":true,"uid":false},{"type":"rich-text","label":"Message","name":"message","required":true,"namespace":["articles","subTitle","VerticalImageLayout","message"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["articles","subTitle","VerticalImageLayout","sizes"],"searchable":true,"uid":false}],"namespace":["articles","subTitle","VerticalImageLayout"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["articles","subTitle","VideoEmbed","url"],"searchable":true,"uid":false},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["articles","subTitle","VideoEmbed","videoWidth"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["articles","subTitle","VideoEmbed","removeMargin"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["articles","subTitle","VideoEmbed","uncentre"],"searchable":true,"uid":false},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["articles","subTitle","VideoEmbed","overflow"],"searchable":true,"uid":false},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["articles","subTitle","VideoEmbed","caption"],"searchable":true,"uid":false},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["articles","subTitle","VideoEmbed","duration"],"searchable":true,"uid":false}],"namespace":["articles","subTitle","VideoEmbed"]}],"namespace":["articles","subTitle"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"reference","name":"author","label":"Author","description":"if you cannot see the Author here add them to 'Events - Presenters' in the list","collections":["presenter"],"namespace":["articles","author"],"searchable":true,"uid":false},{"type":"object","label":"Sidebar Panel Values","name":"sidebarPanel","required":false,"fields":[{"type":"string","label":"Title (70 characters)","name":"title","ui":{},"namespace":["articles","sidebarPanel","title"],"searchable":true,"uid":false},{"type":"string","label":"Description (500 characters)","name":"description","component":"textarea","ui":{},"namespace":["articles","sidebarPanel","description"],"searchable":true,"uid":false},{"type":"boolean","name":"showSidebarPanel","label":"Show Sidebar Panel","description":"Disable this if you don't want the sidebar for this article","required":false,"namespace":["articles","sidebarPanel","showSidebarPanel"],"searchable":true,"uid":false},{"type":"string","label":"Action URL","name":"actionUrl","namespace":["articles","sidebarPanel","actionUrl"],"searchable":true,"uid":false},{"type":"string","label":"Action text","name":"actionText","namespace":["articles","sidebarPanel","actionText"],"searchable":true,"uid":false}],"namespace":["articles","sidebarPanel"],"searchable":true,"uid":false},{"name":"callToAction","label":"Call to Action","description":"The call to action button for contacting SSW","type":"object","fields":[{"type":"string","label":"Title","name":"title","namespace":["articles","callToAction","title"],"searchable":true,"uid":false},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["articles","callToAction","subTitle"],"searchable":true,"uid":false},{"type":"boolean","label":"Show Call to Action","name":"showCallToAction","namespace":["articles","callToAction","showCallToAction"],"searchable":true,"uid":false},{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["articles","callToAction","buttonText"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","namespace":["articles","callToAction","animated"],"searchable":true,"uid":false},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["articles","callToAction","buttonSubtitle"],"searchable":true,"uid":false}],"namespace":["articles","callToAction"],"searchable":true,"uid":false}],"namespace":["articles"]},{"label":"Company - Index","name":"companyIndex","format":"mdx","path":"content/company/index","ui":{"allowedActions":{"create":false,"delete":false}},"fields":[{"type":"object","label":"Header Image","name":"headerImage","fields":[{"type":"image","label":"Hero Background","name":"heroBackground","uploadDir":{"namespace":["companyIndex","headerImage","heroBackground","uploadDir"]},"namespace":["companyIndex","headerImage","heroBackground"],"searchable":false,"uid":false},{"type":"string","label":"Alt Text","name":"altText","namespace":["companyIndex","headerImage","altText"],"searchable":true,"uid":false},{"type":"string","label":"Text Overlay","name":"txtOverlay","uploadDir":{"namespace":["companyIndex","headerImage","txtOverlay","uploadDir"]},"namespace":["companyIndex","headerImage","txtOverlay"],"searchable":true,"uid":false}],"namespace":["companyIndex","headerImage"],"searchable":true,"uid":false},{"type":"object","label":"SEO Values","name":"seo","fields":[{"type":"string","label":"Title (70 characters)","name":"title","ui":{},"namespace":["companyIndex","seo","title"],"searchable":true,"uid":false},{"type":"string","label":"Description (150 characters)","name":"description","component":"textarea","ui":{},"namespace":["companyIndex","seo","description"],"searchable":true,"uid":false},{"type":"string","label":"Canonical URL","name":"canonical","namespace":["companyIndex","seo","canonical"],"searchable":true,"uid":false},{"type":"boolean","name":"showBreadcrumb","label":"Show Breadcrumb","namespace":["companyIndex","seo","showBreadcrumb"],"searchable":true,"uid":false},{"label":"Images","name":"images","list":true,"type":"object","ui":{"defaultItem":{"url":"/images/ssw-default-og.jpg","width":1200,"height":630,"alt":"SSW Consulting - Enterprise Software Development"}},"fields":[{"type":"image","label":"Image Url","name":"url","require":true,"namespace":["company","seo","images","url"],"searchable":false,"uid":false},{"type":"number","label":"Width (px)","name":"width","namespace":["company","seo","images","width"],"searchable":true,"uid":false},{"type":"number","label":"Height (px)","name":"height","namespace":["company","seo","images","height"],"searchable":true,"uid":false},{"type":"string","label":"Image Alt Text","name":"alt","namespace":["company","seo","images","alt"],"searchable":true,"uid":false}],"namespace":["companyIndex","seo","images"],"searchable":true,"uid":false}],"namespace":["companyIndex","seo"],"searchable":true,"uid":false},{"type":"string","label":"Title","name":"title","namespace":["companyIndex","title"],"searchable":true,"uid":false},{"type":"rich-text","label":"Body","name":"_body","templates":[{"name":"AboutUs","label":"About Us","ui":{"previewSrc":"/images/thumbs/tina/about-us.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["companyIndex","_body","AboutUs","backgroundColor"],"searchable":true,"uid":false},{"type":"boolean","label":"Show Map","name":"showMap","required":false,"namespace":["companyIndex","_body","AboutUs","showMap"],"searchable":true,"uid":false}],"namespace":["companyIndex","_body","AboutUs"]},{"label":"Agenda","name":"Agenda","ui":{"previewSrc":"/images/thumbs/tina/agenda.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["companyIndex","_body","Agenda","header"],"searchable":true,"uid":false},{"type":"string","label":"Header Color","name":"textColor","options":[{"label":"Red","value":"red"},{"label":"Gray","value":"gray"},{"label":"Default","value":"default"}],"namespace":["companyIndex","_body","Agenda","textColor"],"searchable":true,"uid":false},{"type":"object","label":"Agenda Items","name":"agendaItemList","ui":{},"list":true,"fields":[{"type":"string","label":"Placeholder Text","name":"placeholder","namespace":["company","_body","Agenda","agendaItemList","placeholder"]},{"type":"rich-text","label":"Body","name":"body","templates":[{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["caseStudy","content","Agenda","agendaItemList","body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["caseStudy","content","Agenda","agendaItemList","body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["caseStudy","content","Agenda","agendaItemList","body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["caseStudy","content","Agenda","agendaItemList","body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["caseStudy","content","Agenda","agendaItemList","body","VerticalListItem","afterBody"]}],"namespace":["caseStudy","_body","Agenda","agendaItemList","body","VerticalListItem"]}],"namespace":["company","_body","Agenda","agendaItemList","body"]}],"namespace":["companyIndex","_body","Agenda","agendaItemList"],"searchable":true,"uid":false}],"namespace":["companyIndex","_body","Agenda"]},{"label":"Agreement Form","name":"AgreementForm","ui":{"previewSrc":"/images/thumbs/tina/agreement-form.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["companyIndex","_body","AgreementForm","backgroundColor"],"searchable":true,"uid":false},{"type":"object","label":"Form fields","name":"fields","list":true,"fields":[{"type":"string","label":"ID","name":"id","required":true,"namespace":["company","_body","AgreementForm","fields","id"]},{"type":"string","label":"Label","name":"label","required":true,"namespace":["company","_body","AgreementForm","fields","label"]},{"type":"string","label":"Placeholder","name":"placeholder","namespace":["company","_body","AgreementForm","fields","placeholder"]},{"type":"boolean","label":"Resizeable","name":"resizeable","required":true,"namespace":["company","_body","AgreementForm","fields","resizeable"]}],"namespace":["companyIndex","_body","AgreementForm","fields"],"searchable":true,"uid":false}],"namespace":["companyIndex","_body","AgreementForm"]},{"label":"Interest Form","name":"InterestForm","ui":{"previewSrc":"/images/thumbs/tina/interest-form.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["companyIndex","_body","InterestForm","buttonText"],"searchable":true,"uid":false}],"namespace":["companyIndex","_body","InterestForm"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["companyIndex","_body","BookingButton","buttonText"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","namespace":["companyIndex","_body","BookingButton","animated"],"searchable":true,"uid":false},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["companyIndex","_body","BookingButton","buttonSubtitle"],"searchable":true,"uid":false}],"namespace":["companyIndex","_body","BookingButton"]},{"name":"BuiltOnAzure","label":"Built on Azure","ui":{"previewSrc":"/images/thumbs/tina/built-on-azure.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["companyIndex","_body","BuiltOnAzure","backgroundColor"],"searchable":true,"uid":false}],"namespace":["companyIndex","_body","BuiltOnAzure"]},{"name":"Carousel","label":"Carousel","ui":{"previewSrc":"/images/thumbs/tina/carousel.jpg"},"fields":[{"label":"Items","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Item description","link":"/","openIn":"sameWindow"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["company","beforeBody","Carousel","items","label"]},{"type":"string","label":"URL","name":"link","description":"If link contains ssw.com.au, you can skip the full URL and just use the path. e.g. /services","namespace":["company","beforeBody","Carousel","items","link"]},{"type":"string","label":"Open in","name":"openIn","description":"If it is external link, please select 'New window' option.","options":[{"label":"Same window","value":"sameWindow"},{"label":"Modal","value":"modal"},{"label":"New window","value":"newWindow"}],"namespace":["company","beforeBody","Carousel","items","openIn"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","Carousel","items","imgSrc","uploadDir"]},"namespace":["company","beforeBody","Carousel","items","imgSrc"]}],"namespace":["companyIndex","_body","Carousel","items"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["companyIndex","_body","Carousel","backgroundColor"],"searchable":true,"uid":false},{"type":"number","label":"Delay (Seconds)","name":"delay","required":true,"namespace":["companyIndex","_body","Carousel","delay"],"searchable":true,"uid":false},{"type":"boolean","label":"Show on mobile devices","name":"showOnMobileDevices","namespace":["companyIndex","_body","Carousel","showOnMobileDevices"],"searchable":true,"uid":false}],"namespace":["companyIndex","_body","Carousel"]},{"name":"Citation","label":"Citation","fields":[{"type":"string","label":"author","name":"author","namespace":["companyIndex","_body","Citation","author"],"searchable":true,"uid":false},{"type":"string","label":"article","name":"article","required":true,"namespace":["companyIndex","_body","Citation","article"],"searchable":true,"uid":false}],"namespace":["companyIndex","_body","Citation"]},{"label":"Client List","name":"ClientList","ui":{"previewSrc":"/images/thumbs/tina/clients-list.jpg"},"fields":[{"type":"object","name":"categories","label":"Categories","list":true,"fields":[{"type":"reference","name":"category","label":"Category","collections":["clientCategories"],"namespace":["company","_body","ClientList","categories","category"]}],"ui":{},"namespace":["companyIndex","_body","ClientList","categories"],"searchable":true,"uid":false},{"type":"object","name":"clients","label":"Clients list","list":true,"ui":{"previewSrc":"/images/thumbs/tina/clients-list.jpg"},"fields":[{"type":"string","name":"name","label":"Name","namespace":["company","_body","ClientList","clients","name"]},{"type":"image","name":"logo","label":"Logo","namespace":["company","_body","ClientList","clients","logo"]},{"type":"string","name":"logoUrl","label":"Logo URL","namespace":["company","_body","ClientList","clients","logoUrl"]},{"type":"rich-text","name":"content","label":"Content","templates":[{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["caseStudy","content","ClientList","clients","content","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["caseStudy","content","ClientList","clients","content","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["caseStudy","content","ClientList","clients","content","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["caseStudy","content","ClientList","clients","content","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["caseStudy","content","ClientList","clients","content","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["caseStudy","content","ClientList","clients","content","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["caseStudy","content","ClientList","clients","content","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["caseStudy","content","ClientList","clients","content","UtilityButton","openInNewTab"]}],"namespace":["caseStudy","_body","ClientList","clients","content","UtilityButton"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["caseStudy","content","ClientList","clients","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["caseStudy","content","ClientList","clients","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["caseStudy","content","ClientList","clients","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["caseStudy","content","ClientList","clients","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["caseStudy","content","ClientList","clients","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["caseStudy","content","ClientList","clients","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["caseStudy","content","ClientList","clients","content","VideoEmbed","duration"]}],"namespace":["caseStudy","_body","ClientList","clients","content","VideoEmbed"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["caseStudy","content","ClientList","clients","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["caseStudy","content","ClientList","clients","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["caseStudy","content","ClientList","clients","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["caseStudy","content","ClientList","clients","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["caseStudy","content","ClientList","clients","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["caseStudy","content","ClientList","clients","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["caseStudy","content","ClientList","clients","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["caseStudy","content","ClientList","clients","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["caseStudy","content","ClientList","clients","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["caseStudy","content","ClientList","clients","content","CustomImage","sizes"]}],"namespace":["caseStudy","_body","ClientList","clients","content","CustomImage"]},{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["caseStudy","content","ClientList","clients","content","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["caseStudy","content","ClientList","clients","content","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["consulting","afterBody","ClientList","clients","content","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["consulting","afterBody","ClientList","clients","content","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["consulting","afterBody","ClientList","clients","content","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["consulting","afterBody","ClientList","clients","content","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["consulting","afterBody","ClientList","clients","content","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["consulting","afterBody","ClientList","clients","content","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["consulting","afterBody","ClientList","clients","content","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["consulting","afterBody","ClientList","clients","content","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["consulting","afterBody","ClientList","clients","content","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["consulting","afterBody","ClientList","clients","content","ContentCard","content","CustomImage","sizes"]}],"namespace":["consulting","_body","ClientList","clients","content","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["consulting","afterBody","ClientList","clients","content","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["consulting","afterBody","ClientList","clients","content","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["consulting","afterBody","ClientList","clients","content","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["consulting","afterBody","ClientList","clients","content","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["consulting","afterBody","ClientList","clients","content","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["consulting","_body","ClientList","clients","content","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["consulting","afterBody","ClientList","clients","content","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["consulting","afterBody","ClientList","clients","content","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["consulting","afterBody","ClientList","clients","content","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["consulting","afterBody","ClientList","clients","content","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["consulting","afterBody","ClientList","clients","content","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["consulting","afterBody","ClientList","clients","content","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["consulting","afterBody","ClientList","clients","content","ContentCard","content","VideoEmbed","duration"]}],"namespace":["consulting","_body","ClientList","clients","content","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["consulting","afterBody","ClientList","clients","content","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["consulting","afterBody","ClientList","clients","content","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["videoProduction","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["videoProduction","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["videoProduction","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["videoProduction","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["videoProduction","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["consulting","afterBody","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["consulting","_body","ClientList","clients","content","ContentCard","content","ColorBlock"]}],"namespace":["caseStudy","content","ClientList","clients","content","ContentCard","content"]}],"namespace":["caseStudy","_body","ClientList","clients","content","ContentCard"]}],"namespace":["company","_body","ClientList","clients","content"]},{"type":"string","name":"caseStudyUrl","label":"Case study URL","namespace":["company","_body","ClientList","clients","caseStudyUrl"]},{"type":"object","name":"categories","label":"Categories","list":true,"ui":{},"fields":[{"type":"reference","name":"category","label":"Category","collections":["clientCategories"],"namespace":["caseStudy","_body","ClientList","clients","categories","category"]}],"namespace":["company","_body","ClientList","clients","categories"]}],"namespace":["companyIndex","_body","ClientList","clients"],"searchable":true,"uid":false}],"namespace":["companyIndex","_body","ClientList"]},{"name":"ClientLogos","label":"Client Logos","ui":{"previewSrc":"/images/thumbs/tina/client-logos.jpg"},"fields":[{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["companyIndex","_body","ClientLogos","altText"],"searchable":true,"uid":false}],"namespace":["companyIndex","_body","ClientLogos"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["companyIndex","_body","ColorBlock","title"],"searchable":true,"uid":false},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["companyIndex","_body","ColorBlock","subTitle"],"searchable":true,"uid":false},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["company","subTitle","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["company","subTitle","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["company","subTitle","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["company","subTitle","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["company","subTitle","ColorBlock","colorRow","caption"]}],"namespace":["companyIndex","_body","ColorBlock","colorRow"],"searchable":true,"uid":false}],"namespace":["companyIndex","_body","ColorBlock"]},{"name":"ColorPalette","label":"Color Palette","ui":{"previewSrc":"/images/thumbs/tina/color-palette.jpg"},"fields":[{"type":"string","label":"Name","name":"name","namespace":["companyIndex","_body","ColorPalette","name"],"searchable":true,"uid":false}],"namespace":["companyIndex","_body","ColorPalette"]},{"name":"Content","label":"Content","ui":{"previewSrc":"/images/thumbs/tina/content.jpg","defaultItem":{"body":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["companyIndex","_body","Content","title"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["caseStudy","_body","Content","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["caseStudy","_body","Content","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["caseStudy","_body","Content","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["caseStudy","_body","Content","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["caseStudy","_body","Content","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["caseStudy","_body","Content","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["caseStudy","_body","Content","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["caseStudy","_body","Content","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["caseStudy","_body","Content","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["caseStudy","_body","Content","content","CustomImage","sizes"]}],"namespace":["company","_body","Content","content","CustomImage"]},{"name":"ClientLogos","label":"Client Logos","ui":{"previewSrc":"/images/thumbs/tina/client-logos.jpg"},"fields":[{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["caseStudy","_body","Content","content","ClientLogos","altText"]}],"namespace":["company","_body","Content","content","ClientLogos"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["caseStudy","_body","Content","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["caseStudy","_body","Content","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["caseStudy","_body","Content","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["caseStudy","_body","Content","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["caseStudy","_body","Content","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["caseStudy","_body","Content","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["caseStudy","_body","Content","content","VideoEmbed","duration"]}],"namespace":["company","_body","Content","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["caseStudy","_body","Content","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["caseStudy","_body","Content","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["caseStudy","content","Content","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["caseStudy","content","Content","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["caseStudy","content","Content","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["caseStudy","content","Content","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["caseStudy","content","Content","content","ColorBlock","colorRow","caption"]}],"namespace":["caseStudy","_body","Content","content","ColorBlock","colorRow"]}],"namespace":["company","_body","Content","content","ColorBlock"]}],"namespace":["companyIndex","_body","Content","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Container Padding","name":"paddingClass","options":["Mobile: No Padding","Mobile: No Top and Horizontal Padding"],"namespace":["companyIndex","_body","Content","paddingClass"],"searchable":true,"uid":false},{"type":"string","label":"Text size","name":"size","options":[{"label":"small","value":"sm"},{"label":"normal","value":"base"},{"label":"large","value":"lg"},{"label":"extra large","value":"xl"},{"label":"2x large","value":"2xl"}],"namespace":["companyIndex","_body","Content","size"],"searchable":true,"uid":false},{"type":"string","label":"Align","name":"align","options":[{"label":"Left","value":"left"},{"label":"Center","value":"center"},{"label":"Right","value":"right"}],"namespace":["companyIndex","_body","Content","align"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["companyIndex","_body","Content","backgroundColor"],"searchable":true,"uid":false}],"namespace":["companyIndex","_body","Content"]},{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["companyIndex","_body","ContentCard","prose"],"searchable":true,"uid":false},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["companyIndex","_body","ContentCard","centerAlignedText"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["caseStudy","_body","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["caseStudy","_body","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["caseStudy","_body","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["caseStudy","_body","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["caseStudy","_body","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["caseStudy","_body","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["caseStudy","_body","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["caseStudy","_body","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["caseStudy","_body","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["caseStudy","_body","ContentCard","content","CustomImage","sizes"]}],"namespace":["company","_body","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["caseStudy","_body","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["caseStudy","_body","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["caseStudy","_body","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["caseStudy","_body","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["caseStudy","_body","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["company","_body","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["caseStudy","_body","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["caseStudy","_body","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["caseStudy","_body","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["caseStudy","_body","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["caseStudy","_body","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["caseStudy","_body","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["caseStudy","_body","ContentCard","content","VideoEmbed","duration"]}],"namespace":["company","_body","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["caseStudy","_body","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["caseStudy","_body","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["caseStudy","content","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["caseStudy","content","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["caseStudy","content","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["caseStudy","content","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["caseStudy","content","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["caseStudy","_body","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["company","_body","ContentCard","content","ColorBlock"]}],"namespace":["companyIndex","_body","ContentCard","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["companyIndex","_body","ContentCard"]},{"name":"CustomDownloadButton","label":"Custom Download Button","ui":{"previewSrc":"/images/thumbs/tina/custom-download-button.jpg"},"fields":[{"type":"string","label":"Text","name":"btnText","namespace":["companyIndex","_body","CustomDownloadButton","btnText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"btnLink","namespace":["companyIndex","_body","CustomDownloadButton","btnLink"],"searchable":true,"uid":false}],"namespace":["companyIndex","_body","CustomDownloadButton"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["companyIndex","_body","CustomImage","src"],"searchable":false,"uid":false},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["companyIndex","_body","CustomImage","altText"],"searchable":true,"uid":false},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["companyIndex","_body","CustomImage","alignment"],"searchable":true,"uid":false},{"type":"number","label":"Height","name":"height","required":true,"namespace":["companyIndex","_body","CustomImage","height"],"searchable":true,"uid":false},{"type":"number","label":"Width","name":"width","required":true,"namespace":["companyIndex","_body","CustomImage","width"],"searchable":true,"uid":false},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["companyIndex","_body","CustomImage","link"],"searchable":true,"uid":false},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["companyIndex","_body","CustomImage","customClass"],"searchable":true,"uid":false},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["companyIndex","_body","CustomImage","caption"],"searchable":true,"uid":false},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["companyIndex","_body","CustomImage","captionColor"],"searchable":true,"uid":false},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["companyIndex","_body","CustomImage","sizes"],"searchable":true,"uid":false}],"namespace":["companyIndex","_body","CustomImage"]},{"name":"DomainFromQuery","label":"Domain from query","ui":{"previewSrc":"/images/thumbs/tina/domain-from-query.jpg"},"fields":[{"name":"title","label":"Title","type":"string","description":"This is a H1 heading","namespace":["companyIndex","_body","DomainFromQuery","title"],"searchable":true,"uid":false},{"name":"showDomain","label":"Show domain name","type":"boolean","description":"Query param in URL must have key of 'domain'","namespace":["companyIndex","_body","DomainFromQuery","showDomain"],"searchable":true,"uid":false}],"namespace":["companyIndex","_body","DomainFromQuery"]},{"name":"DownloadBlock","label":"Download Block","ui":{"previewSrc":"/images/thumbs/tina/download-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["companyIndex","_body","DownloadBlock","title"],"searchable":true,"uid":false},{"type":"object","label":"Downloads","name":"downloads","ui":{},"list":true,"fields":[{"type":"string","label":"Header","name":"header","namespace":["company","_body","DownloadBlock","downloads","header"]},{"type":"image","label":"Image","name":"img","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","img","uploadDir"]},"namespace":["company","_body","DownloadBlock","downloads","img"]},{"type":"string","label":"Image Background","name":"imgBackground","options":["black","grey","white","darkgrey","darkgreen"],"namespace":["company","_body","DownloadBlock","downloads","imgBackground"]},{"type":"string","label":"First Link Text","name":"firstLinkText","description":"Defaults to PNG","namespace":["company","_body","DownloadBlock","downloads","firstLinkText"]},{"type":"image","label":"First Link","name":"firstLink","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","firstLink","uploadDir"]},"namespace":["company","_body","DownloadBlock","downloads","firstLink"]},{"type":"string","label":"Second Link Text","name":"secondLinkText","description":"Defaults to PDF","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","secondLinkText","uploadDir"]},"namespace":["company","_body","DownloadBlock","downloads","secondLinkText"]},{"type":"image","label":"Second Link","name":"secondLink","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","secondLink","uploadDir"]},"namespace":["company","_body","DownloadBlock","downloads","secondLink"]}],"namespace":["companyIndex","_body","DownloadBlock","downloads"],"searchable":true,"uid":false},{"type":"boolean","label":"Bottom border","name":"bottomBorder","namespace":["companyIndex","_body","DownloadBlock","bottomBorder"],"searchable":true,"uid":false}],"namespace":["companyIndex","_body","DownloadBlock"]},{"name":"DynamicColumns","label":"Dynamic Column Layout","fields":[{"type":"rich-text","label":"Column text body","name":"colBody","required":true,"namespace":["companyIndex","_body","DynamicColumns","colBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"number","label":"Number of columns","name":"colCount","required":true,"ui":{},"namespace":["companyIndex","_body","DynamicColumns","colCount"],"searchable":true,"uid":false}],"namespace":["companyIndex","_body","DynamicColumns"]},{"name":"EventBooking","label":"Events Booking","ui":{"previewSrc":"/images/thumbs/tina/events-booking.jpg"},"fields":[{"type":"number","label":"Duration (In Days)","name":"eventDurationInDays","required":true,"namespace":["companyIndex","_body","EventBooking","eventDurationInDays"],"searchable":true,"uid":false},{"type":"number","label":"Price","name":"price","required":true,"namespace":["companyIndex","_body","EventBooking","price"],"searchable":true,"uid":false},{"type":"number","label":"Discount Price","name":"discountPrice","namespace":["companyIndex","_body","EventBooking","discountPrice"],"searchable":true,"uid":false},{"type":"string","name":"gstText","label":"Select GST Option","options":["inc GST","+ GST"],"required":true,"namespace":["companyIndex","_body","EventBooking","gstText"],"searchable":true,"uid":false},{"type":"string","label":"Discount Note","name":"discountNote","namespace":["companyIndex","_body","EventBooking","discountNote"],"searchable":true,"uid":false},{"type":"object","label":"Event","name":"eventList","ui":{},"list":true,"fields":[{"type":"string","label":"City","name":"city","namespace":["company","_body","EventBooking","eventList","city"]},{"type":"datetime","label":"Start Date","name":"date","ui":{},"namespace":["company","_body","EventBooking","eventList","date"]},{"type":"string","label":"Booking URL","name":"bookingURL","namespace":["company","_body","EventBooking","eventList","bookingURL"]},{"type":"reference","label":"Location","name":"location","collections":["locations"],"namespace":["company","_body","EventBooking","eventList","location"]}],"namespace":["companyIndex","_body","EventBooking","eventList"],"searchable":true,"uid":false}],"namespace":["companyIndex","_body","EventBooking"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["caseStudy","_body","EventLink","content","Flag","country"]}],"namespace":["company","_body","EventLink","content","Flag"]}],"namespace":["companyIndex","_body","EventLink","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Link","name":"link","namespace":["companyIndex","_body","EventLink","link"],"searchable":true,"uid":false},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["companyIndex","_body","EventLink","eventThumbnail"],"searchable":false,"uid":false},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["companyIndex","_body","EventLink","thumbnailAlt"],"searchable":true,"uid":false}],"namespace":["companyIndex","_body","EventLink"]},{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["companyIndex","_body","Flag","country"],"searchable":true,"uid":false}],"namespace":["companyIndex","_body","Flag"]},{"name":"FixedColumns","label":"Fixed Column Layout (2 columns)","ui":{"previewSrc":"/images/thumbs/tina/fixed-columns.jpg"},"fields":[{"type":"rich-text","label":"Header Section (Optional)","name":"headerSection","namespace":["companyIndex","_body","FixedColumns","headerSection"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"First column text","name":"firstColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["company","_body","FixedColumns","firstColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["company","_body","FixedColumns","firstColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["caseStudy","content","FixedColumns","firstColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["caseStudy","content","FixedColumns","firstColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["caseStudy","content","FixedColumns","firstColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["caseStudy","content","FixedColumns","firstColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["caseStudy","content","FixedColumns","firstColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["caseStudy","content","FixedColumns","firstColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["caseStudy","content","FixedColumns","firstColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["caseStudy","content","FixedColumns","firstColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["caseStudy","content","FixedColumns","firstColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["caseStudy","content","FixedColumns","firstColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["caseStudy","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["caseStudy","content","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["caseStudy","content","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["caseStudy","content","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["caseStudy","content","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["caseStudy","content","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["caseStudy","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["caseStudy","content","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["caseStudy","content","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["caseStudy","content","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["caseStudy","content","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["caseStudy","content","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["caseStudy","content","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["caseStudy","content","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["caseStudy","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["caseStudy","content","FixedColumns","firstColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["caseStudy","content","FixedColumns","firstColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["consulting","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["consulting","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["consulting","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["consulting","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["consulting","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["caseStudy","content","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["caseStudy","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock"]}],"namespace":["company","_body","FixedColumns","firstColBody","ContentCard","content"]}],"namespace":["company","subTitle","FixedColumns","firstColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["company","_body","FixedColumns","firstColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["company","_body","FixedColumns","firstColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["company","_body","FixedColumns","firstColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["company","_body","FixedColumns","firstColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["company","_body","FixedColumns","firstColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["company","_body","FixedColumns","firstColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["company","_body","FixedColumns","firstColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["company","_body","FixedColumns","firstColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["company","_body","FixedColumns","firstColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["company","_body","FixedColumns","firstColBody","CustomImage","sizes"]}],"namespace":["company","subTitle","FixedColumns","firstColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["caseStudy","content","FixedColumns","firstColBody","EventLink","content","Flag","country"]}],"namespace":["caseStudy","_body","FixedColumns","firstColBody","EventLink","content","Flag"]}],"namespace":["company","_body","FixedColumns","firstColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["company","_body","FixedColumns","firstColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["company","_body","FixedColumns","firstColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["company","_body","FixedColumns","firstColBody","EventLink","thumbnailAlt"]}],"namespace":["company","subTitle","FixedColumns","firstColBody","EventLink"]}],"namespace":["companyIndex","_body","FixedColumns","firstColBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"Second column text","name":"secondColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["company","_body","FixedColumns","secondColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["company","_body","FixedColumns","secondColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["caseStudy","content","FixedColumns","secondColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["caseStudy","content","FixedColumns","secondColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["caseStudy","content","FixedColumns","secondColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["caseStudy","content","FixedColumns","secondColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["caseStudy","content","FixedColumns","secondColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["caseStudy","content","FixedColumns","secondColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["caseStudy","content","FixedColumns","secondColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["caseStudy","content","FixedColumns","secondColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["caseStudy","content","FixedColumns","secondColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["caseStudy","content","FixedColumns","secondColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["caseStudy","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["caseStudy","content","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["caseStudy","content","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["caseStudy","content","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["caseStudy","content","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["caseStudy","content","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["caseStudy","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["caseStudy","content","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["caseStudy","content","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["caseStudy","content","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["caseStudy","content","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["caseStudy","content","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["caseStudy","content","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["caseStudy","content","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["caseStudy","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["caseStudy","content","FixedColumns","secondColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["caseStudy","content","FixedColumns","secondColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["consulting","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["consulting","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["consulting","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["consulting","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["consulting","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["caseStudy","content","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["caseStudy","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock"]}],"namespace":["company","_body","FixedColumns","secondColBody","ContentCard","content"]}],"namespace":["company","subTitle","FixedColumns","secondColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["company","_body","FixedColumns","secondColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["company","_body","FixedColumns","secondColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["company","_body","FixedColumns","secondColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["company","_body","FixedColumns","secondColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["company","_body","FixedColumns","secondColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["company","_body","FixedColumns","secondColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["company","_body","FixedColumns","secondColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["company","_body","FixedColumns","secondColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["company","_body","FixedColumns","secondColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["company","_body","FixedColumns","secondColBody","CustomImage","sizes"]}],"namespace":["company","subTitle","FixedColumns","secondColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["caseStudy","content","FixedColumns","secondColBody","EventLink","content","Flag","country"]}],"namespace":["caseStudy","_body","FixedColumns","secondColBody","EventLink","content","Flag"]}],"namespace":["company","_body","FixedColumns","secondColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["company","_body","FixedColumns","secondColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["company","_body","FixedColumns","secondColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["company","_body","FixedColumns","secondColBody","EventLink","thumbnailAlt"]}],"namespace":["company","subTitle","FixedColumns","secondColBody","EventLink"]}],"namespace":["companyIndex","_body","FixedColumns","secondColBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["companyIndex","_body","FixedColumns"]},{"name":"FixedTabsLayout","label":"Fixed Tabs Layout","ui":{"previewSrc":"/images/thumbs/tina/fixed-tabs-layout.jpg"},"fields":[{"type":"string","name":"firstTab","label":"First Tab","namespace":["companyIndex","_body","FixedTabsLayout","firstTab"],"searchable":true,"uid":false},{"type":"rich-text","name":"firstHeading","label":"First Heading","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["caseStudy","_body","FixedTabsLayout","firstHeading","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["caseStudy","_body","FixedTabsLayout","firstHeading","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["caseStudy","_body","FixedTabsLayout","firstHeading","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["caseStudy","_body","FixedTabsLayout","firstHeading","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["caseStudy","_body","FixedTabsLayout","firstHeading","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["caseStudy","_body","FixedTabsLayout","firstHeading","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["caseStudy","_body","FixedTabsLayout","firstHeading","VideoEmbed","duration"]}],"namespace":["company","_body","FixedTabsLayout","firstHeading","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["caseStudy","_body","FixedTabsLayout","firstHeading","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["caseStudy","_body","FixedTabsLayout","firstHeading","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["caseStudy","_body","FixedTabsLayout","firstHeading","BookingButton","buttonSubtitle"]}],"namespace":["company","_body","FixedTabsLayout","firstHeading","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["caseStudy","_body","FixedTabsLayout","firstHeading","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["caseStudy","content","FixedTabsLayout","firstHeading","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["caseStudy","content","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["caseStudy","content","FixedTabsLayout","firstHeading","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["caseStudy","content","FixedTabsLayout","firstHeading","ExpertBlock","expertList","skills"]}],"namespace":["caseStudy","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["caseStudy","content","FixedTabsLayout","firstHeading","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["caseStudy","content","FixedTabsLayout","firstHeading","ExpertBlock","link","url"]}],"namespace":["caseStudy","_body","FixedTabsLayout","firstHeading","ExpertBlock","link"]}],"namespace":["company","_body","FixedTabsLayout","firstHeading","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["caseStudy","content","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["caseStudy","content","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["caseStudy","content","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["consulting","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["consulting","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["consulting","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["caseStudy","content","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["caseStudy","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["company","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["caseStudy","_body","FixedTabsLayout","firstHeading","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["caseStudy","_body","FixedTabsLayout","firstHeading","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["caseStudy","_body","FixedTabsLayout","firstHeading","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["caseStudy","_body","FixedTabsLayout","firstHeading","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["caseStudy","_body","FixedTabsLayout","firstHeading","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["caseStudy","_body","FixedTabsLayout","firstHeading","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["caseStudy","_body","FixedTabsLayout","firstHeading","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["caseStudy","_body","FixedTabsLayout","firstHeading","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["caseStudy","_body","FixedTabsLayout","firstHeading","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["caseStudy","_body","FixedTabsLayout","firstHeading","CustomImage","sizes"]}],"namespace":["company","_body","FixedTabsLayout","firstHeading","CustomImage"]}],"namespace":["companyIndex","_body","FixedTabsLayout","firstHeading"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","name":"firstBody","label":"First Body","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["caseStudy","_body","FixedTabsLayout","firstBody","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["caseStudy","_body","FixedTabsLayout","firstBody","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["caseStudy","_body","FixedTabsLayout","firstBody","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["caseStudy","_body","FixedTabsLayout","firstBody","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["caseStudy","_body","FixedTabsLayout","firstBody","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["caseStudy","_body","FixedTabsLayout","firstBody","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["caseStudy","_body","FixedTabsLayout","firstBody","VideoEmbed","duration"]}],"namespace":["company","_body","FixedTabsLayout","firstBody","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["caseStudy","_body","FixedTabsLayout","firstBody","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["caseStudy","_body","FixedTabsLayout","firstBody","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["caseStudy","_body","FixedTabsLayout","firstBody","BookingButton","buttonSubtitle"]}],"namespace":["company","_body","FixedTabsLayout","firstBody","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["caseStudy","_body","FixedTabsLayout","firstBody","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["caseStudy","content","FixedTabsLayout","firstBody","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["caseStudy","content","FixedTabsLayout","firstBody","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["caseStudy","content","FixedTabsLayout","firstBody","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["caseStudy","content","FixedTabsLayout","firstBody","ExpertBlock","expertList","skills"]}],"namespace":["caseStudy","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["caseStudy","content","FixedTabsLayout","firstBody","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["caseStudy","content","FixedTabsLayout","firstBody","ExpertBlock","link","url"]}],"namespace":["caseStudy","_body","FixedTabsLayout","firstBody","ExpertBlock","link"]}],"namespace":["company","_body","FixedTabsLayout","firstBody","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["caseStudy","content","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["caseStudy","content","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["caseStudy","content","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["consulting","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["consulting","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["consulting","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["caseStudy","content","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["caseStudy","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["company","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["caseStudy","_body","FixedTabsLayout","firstBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["caseStudy","_body","FixedTabsLayout","firstBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["caseStudy","_body","FixedTabsLayout","firstBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["caseStudy","_body","FixedTabsLayout","firstBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["caseStudy","_body","FixedTabsLayout","firstBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["caseStudy","_body","FixedTabsLayout","firstBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["caseStudy","_body","FixedTabsLayout","firstBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["caseStudy","_body","FixedTabsLayout","firstBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["caseStudy","_body","FixedTabsLayout","firstBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["caseStudy","_body","FixedTabsLayout","firstBody","CustomImage","sizes"]}],"namespace":["company","_body","FixedTabsLayout","firstBody","CustomImage"]}],"namespace":["companyIndex","_body","FixedTabsLayout","firstBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","name":"secondTab","label":"Second Tab","namespace":["companyIndex","_body","FixedTabsLayout","secondTab"],"searchable":true,"uid":false},{"type":"rich-text","name":"secondHeading","label":"Second Heading","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["caseStudy","_body","FixedTabsLayout","secondHeading","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["caseStudy","_body","FixedTabsLayout","secondHeading","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["caseStudy","_body","FixedTabsLayout","secondHeading","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["caseStudy","_body","FixedTabsLayout","secondHeading","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["caseStudy","_body","FixedTabsLayout","secondHeading","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["caseStudy","_body","FixedTabsLayout","secondHeading","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["caseStudy","_body","FixedTabsLayout","secondHeading","VideoEmbed","duration"]}],"namespace":["company","_body","FixedTabsLayout","secondHeading","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["caseStudy","_body","FixedTabsLayout","secondHeading","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["caseStudy","_body","FixedTabsLayout","secondHeading","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["caseStudy","_body","FixedTabsLayout","secondHeading","BookingButton","buttonSubtitle"]}],"namespace":["company","_body","FixedTabsLayout","secondHeading","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["caseStudy","_body","FixedTabsLayout","secondHeading","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["caseStudy","content","FixedTabsLayout","secondHeading","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["caseStudy","content","FixedTabsLayout","secondHeading","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["caseStudy","content","FixedTabsLayout","secondHeading","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["caseStudy","content","FixedTabsLayout","secondHeading","ExpertBlock","expertList","skills"]}],"namespace":["caseStudy","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["caseStudy","content","FixedTabsLayout","secondHeading","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["caseStudy","content","FixedTabsLayout","secondHeading","ExpertBlock","link","url"]}],"namespace":["caseStudy","_body","FixedTabsLayout","secondHeading","ExpertBlock","link"]}],"namespace":["company","_body","FixedTabsLayout","secondHeading","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["caseStudy","content","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["caseStudy","content","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["caseStudy","content","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["consulting","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["consulting","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["consulting","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["caseStudy","content","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["caseStudy","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["company","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["caseStudy","_body","FixedTabsLayout","secondHeading","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["caseStudy","_body","FixedTabsLayout","secondHeading","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["caseStudy","_body","FixedTabsLayout","secondHeading","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["caseStudy","_body","FixedTabsLayout","secondHeading","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["caseStudy","_body","FixedTabsLayout","secondHeading","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["caseStudy","_body","FixedTabsLayout","secondHeading","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["caseStudy","_body","FixedTabsLayout","secondHeading","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["caseStudy","_body","FixedTabsLayout","secondHeading","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["caseStudy","_body","FixedTabsLayout","secondHeading","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["caseStudy","_body","FixedTabsLayout","secondHeading","CustomImage","sizes"]}],"namespace":["company","_body","FixedTabsLayout","secondHeading","CustomImage"]}],"namespace":["companyIndex","_body","FixedTabsLayout","secondHeading"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","name":"secondBody","label":"Second Body","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["caseStudy","_body","FixedTabsLayout","secondBody","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["caseStudy","_body","FixedTabsLayout","secondBody","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["caseStudy","_body","FixedTabsLayout","secondBody","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["caseStudy","_body","FixedTabsLayout","secondBody","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["caseStudy","_body","FixedTabsLayout","secondBody","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["caseStudy","_body","FixedTabsLayout","secondBody","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["caseStudy","_body","FixedTabsLayout","secondBody","VideoEmbed","duration"]}],"namespace":["company","_body","FixedTabsLayout","secondBody","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["caseStudy","_body","FixedTabsLayout","secondBody","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["caseStudy","_body","FixedTabsLayout","secondBody","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["caseStudy","_body","FixedTabsLayout","secondBody","BookingButton","buttonSubtitle"]}],"namespace":["company","_body","FixedTabsLayout","secondBody","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["caseStudy","_body","FixedTabsLayout","secondBody","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["caseStudy","content","FixedTabsLayout","secondBody","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["caseStudy","content","FixedTabsLayout","secondBody","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["caseStudy","content","FixedTabsLayout","secondBody","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["caseStudy","content","FixedTabsLayout","secondBody","ExpertBlock","expertList","skills"]}],"namespace":["caseStudy","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["caseStudy","content","FixedTabsLayout","secondBody","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["caseStudy","content","FixedTabsLayout","secondBody","ExpertBlock","link","url"]}],"namespace":["caseStudy","_body","FixedTabsLayout","secondBody","ExpertBlock","link"]}],"namespace":["company","_body","FixedTabsLayout","secondBody","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["caseStudy","content","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["caseStudy","content","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["caseStudy","content","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["consulting","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["consulting","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["consulting","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["caseStudy","content","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["caseStudy","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["company","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["caseStudy","_body","FixedTabsLayout","secondBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["caseStudy","_body","FixedTabsLayout","secondBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["caseStudy","_body","FixedTabsLayout","secondBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["caseStudy","_body","FixedTabsLayout","secondBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["caseStudy","_body","FixedTabsLayout","secondBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["caseStudy","_body","FixedTabsLayout","secondBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["caseStudy","_body","FixedTabsLayout","secondBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["caseStudy","_body","FixedTabsLayout","secondBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["caseStudy","_body","FixedTabsLayout","secondBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["caseStudy","_body","FixedTabsLayout","secondBody","CustomImage","sizes"]}],"namespace":["company","_body","FixedTabsLayout","secondBody","CustomImage"]}],"namespace":["companyIndex","_body","FixedTabsLayout","secondBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["companyIndex","_body","FixedTabsLayout"]},{"label":"Google Maps","name":"GoogleMaps","ui":{"previewSrc":"/images/thumbs/tina/google-maps.jpg"},"fields":[{"type":"string","label":"URL","name":"embedUrl","required":true,"namespace":["companyIndex","_body","GoogleMaps","embedUrl"],"searchable":true,"uid":false},{"type":"string","label":"Width","name":"embedWidth","namespace":["companyIndex","_body","GoogleMaps","embedWidth"],"searchable":true,"uid":false},{"type":"string","label":"Height","name":"embedHeight","namespace":["companyIndex","_body","GoogleMaps","embedHeight"],"searchable":true,"uid":false}],"namespace":["companyIndex","_body","GoogleMaps"]},{"label":"Grid Layout","name":"GridLayout","ui":{"previewSrc":"/images/thumbs/tina/grid-layout.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["companyIndex","_body","GridLayout","title"],"searchable":true,"uid":false},{"type":"object","list":true,"label":"Grid Items","name":"grids","ui":{},"fields":[{"type":"string","label":"Grid Title","name":"gridTitle","namespace":["company","_body","GridLayout","grids","gridTitle"]},{"type":"boolean","label":"Show Grid Title","name":"showGridTitle","namespace":["company","_body","GridLayout","grids","showGridTitle"]},{"type":"boolean","label":"Centered Grid Title","name":"centeredGridTitle","namespace":["company","_body","GridLayout","grids","centeredGridTitle"]},{"type":"boolean","label":"Show Header Divider","name":"showHeaderDivider","namespace":["company","_body","GridLayout","grids","showHeaderDivider"]},{"type":"boolean","label":"Offset Grid Start","name":"offsetGridStart","namespace":["company","_body","GridLayout","grids","offsetGridStart"]},{"type":"object","label":"Blocks","name":"blocks","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["caseStudy","_body","GridLayout","grids","blocks","title"]},{"type":"boolean","label":"Show Title","name":"showTitle","namespace":["caseStudy","_body","GridLayout","grids","blocks","showTitle"]},{"type":"image","label":"Image","name":"image","uploadDir":{"namespace":["page","beforeBody","GridLayout","grids","blocks","image","uploadDir"]},"namespace":["caseStudy","_body","GridLayout","grids","blocks","image"]},{"type":"image","label":"Related Image","name":"relatedImage","uploadDir":{"namespace":["page","beforeBody","GridLayout","grids","blocks","relatedImage","uploadDir"]},"namespace":["caseStudy","_body","GridLayout","grids","blocks","relatedImage"]},{"type":"rich-text","name":"linkContent","label":"Link Content","templates":[{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["consulting","_body","GridLayout","grids","blocks","linkContent","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["consulting","_body","GridLayout","grids","blocks","linkContent","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["consulting","_body","GridLayout","grids","blocks","linkContent","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["consulting","_body","GridLayout","grids","blocks","linkContent","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["consulting","_body","GridLayout","grids","blocks","linkContent","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["consulting","_body","GridLayout","grids","blocks","linkContent","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["consulting","_body","GridLayout","grids","blocks","linkContent","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["consulting","_body","GridLayout","grids","blocks","linkContent","UtilityButton","openInNewTab"]}],"namespace":["caseStudy","content","GridLayout","grids","blocks","linkContent","UtilityButton"]}],"namespace":["caseStudy","_body","GridLayout","grids","blocks","linkContent"]}],"namespace":["company","_body","GridLayout","grids","blocks"]}],"namespace":["companyIndex","_body","GridLayout","grids"],"searchable":true,"uid":false}],"namespace":["companyIndex","_body","GridLayout"]},{"name":"Hero","label":"Hero","ui":{"previewSrc":"/blocks/hero.png","defaultItem":{"tagline":"Here's some text above the other text","headline":"This Big Text is Totally Awesome","text":"Phasellus scelerisque, libero eu finibus rutrum, risus risus accumsan libero, nec molestie urna dui a leo."}},"fields":[{"type":"string","label":"Tagline","name":"tagline","namespace":["companyIndex","_body","Hero","tagline"],"searchable":true,"uid":false},{"type":"string","label":"Headline","name":"headline","namespace":["companyIndex","_body","Hero","headline"],"searchable":true,"uid":false},{"label":"Text","name":"text","type":"rich-text","namespace":["companyIndex","_body","Hero","text"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"label":"Actions","name":"actions","type":"object","list":true,"ui":{"defaultItem":{"label":"Action Label","type":"button","icon":true,"link":"/"}},"fields":[{"label":"Label","name":"label","type":"string","namespace":["company","_body","Hero","actions","label"]},{"label":"Type","name":"type","type":"string","options":[{"label":"Button","value":"button"},{"label":"Link","value":"link"}],"namespace":["company","_body","Hero","actions","type"]},{"label":"Icon","name":"icon","type":"boolean","namespace":["company","_body","Hero","actions","icon"]},{"label":"Link","name":"link","type":"string","namespace":["company","_body","Hero","actions","link"]}],"namespace":["companyIndex","_body","Hero","actions"],"searchable":true,"uid":false},{"type":"object","label":"Image","name":"image","fields":[{"name":"src","label":"Image Source","type":"image","namespace":["company","_body","Hero","image","src"]},{"name":"alt","label":"Alt Text","type":"string","namespace":["company","_body","Hero","image","alt"]}],"namespace":["companyIndex","_body","Hero","image"],"searchable":true,"uid":false},{"type":"string","label":"Color","name":"color","options":[{"label":"Default","value":"default"},{"label":"Tint","value":"tint"},{"label":"Primary","value":"primary"}],"namespace":["companyIndex","_body","Hero","color"],"searchable":true,"uid":false}],"namespace":["companyIndex","_body","Hero"]},{"name":"HorizontalCard","label":"Horizontal Card","ui":{"previewSrc":"/images/thumbs/tina/horizontal-card.jpg"},"fields":[{"type":"object","label":"Cards","name":"cardList","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["company","_body","HorizontalCard","cardList","title"]},{"type":"rich-text","label":"Content","name":"content","namespace":["company","_body","HorizontalCard","cardList","content"]},{"type":"image","label":"Thumbnail","name":"thumbnail","uploadDir":{"namespace":["page","beforeBody","HorizontalCard","cardList","thumbnail","uploadDir"]},"namespace":["company","_body","HorizontalCard","cardList","thumbnail"]},{"type":"string","label":"Link","name":"link","namespace":["company","_body","HorizontalCard","cardList","link"]}],"namespace":["companyIndex","_body","HorizontalCard","cardList"],"searchable":true,"uid":false},{"type":"object","label":"Button","name":"button","fields":[{"type":"string","label":"Text","name":"text","namespace":["company","_body","HorizontalCard","button","text"]},{"type":"string","label":"Link","name":"link","namespace":["company","_body","HorizontalCard","button","link"]}],"namespace":["companyIndex","_body","HorizontalCard","button"],"searchable":true,"uid":false}],"namespace":["companyIndex","_body","HorizontalCard"]},{"name":"InternalCarousel","label":"Internal Carousel","ui":{"previewSrc":"/images/thumbs/tina/internal-carousel.jpg"},"fields":[{"label":"Images","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Image description"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["company","_body","InternalCarousel","items","label"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","InternalCarousel","items","imgSrc","uploadDir"]},"namespace":["company","_body","InternalCarousel","items","imgSrc"]}],"namespace":["companyIndex","_body","InternalCarousel","items"],"searchable":true,"uid":false},{"type":"string","label":"Header","name":"header","namespace":["companyIndex","_body","InternalCarousel","header"],"searchable":true,"uid":false},{"type":"rich-text","label":"Text","name":"paragraph","isBody":false,"namespace":["companyIndex","_body","InternalCarousel","paragraph"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Website","name":"website","namespace":["companyIndex","_body","InternalCarousel","website"],"searchable":true,"uid":false},{"type":"object","label":"Technologies","name":"technologies","list":true,"ui":{},"fields":[{"type":"string","label":"Name","name":"name","namespace":["company","_body","InternalCarousel","technologies","name"]}],"namespace":["companyIndex","_body","InternalCarousel","technologies"],"searchable":true,"uid":false},{"type":"string","label":"Case Study","name":"caseStudyUrl","namespace":["companyIndex","_body","InternalCarousel","caseStudyUrl"],"searchable":true,"uid":false},{"type":"string","label":"Video URL","name":"videoUrl","namespace":["companyIndex","_body","InternalCarousel","videoUrl"],"searchable":true,"uid":false}],"namespace":["companyIndex","_body","InternalCarousel"]},{"label":"Join As Presenter","name":"joinAsPresenter","fields":[{"label":"Learn More Link","name":"link","type":"string","namespace":["companyIndex","_body","joinAsPresenter","link"],"searchable":true,"uid":false},{"label":"Image","name":"img","type":"image","namespace":["companyIndex","_body","joinAsPresenter","img"],"searchable":false,"uid":false}],"namespace":["companyIndex","_body","joinAsPresenter"]},{"label":"Join Github","name":"joinGithub","ui":{"previewSrc":"/images/thumbs/tina/join-github.jpg"},"fields":[{"label":"Title","name":"title","type":"string","namespace":["companyIndex","_body","joinGithub","title"],"searchable":true,"uid":false},{"label":"Join Github Link","name":"link","type":"string","namespace":["companyIndex","_body","joinGithub","link"],"searchable":true,"uid":false}],"namespace":["companyIndex","_body","joinGithub"]},{"name":"JotFormEmbed","label":"JotForm Embed","ui":{"previewSrc":"/images/thumbs/tina/jotform-embed.jpg"},"fields":[{"type":"string","name":"jotFormId","label":"JotForm Id","required":true,"namespace":["companyIndex","_body","JotFormEmbed","jotFormId"],"searchable":true,"uid":false},{"type":"string","label":"Button Text","name":"buttonText","namespace":["companyIndex","_body","JotFormEmbed","buttonText"],"searchable":true,"uid":false},{"type":"string","name":"containerClass","label":"Container Class","namespace":["companyIndex","_body","JotFormEmbed","containerClass"],"searchable":true,"uid":false},{"type":"string","label":"Button Class","name":"buttonClass","namespace":["companyIndex","_body","JotFormEmbed","buttonClass"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","namespace":["companyIndex","_body","JotFormEmbed","animated"],"searchable":true,"uid":false}],"namespace":["companyIndex","_body","JotFormEmbed"]},{"name":"LatestTech","label":"Latest Tech","ui":{"previewSrc":"/images/thumbs/tina/latest-tech.jpg"},"fields":[{"type":"reference","description":"Select a config file including a set of badges","collections":["userGroupGlobal"],"label":"Badges","name":"badges","namespace":["companyIndex","_body","LatestTech","badges"],"searchable":true,"uid":false}],"namespace":["companyIndex","_body","LatestTech"]},{"name":"LocationBlock","label":"Locations","ui":{"previewSrc":"/images/thumbs/tina/locations.jpg"},"fields":[{"type":"string","name":"title","label":"Title","namespace":["companyIndex","_body","LocationBlock","title"],"searchable":true,"uid":false},{"type":"object","label":"Location List","name":"locationList","list":true,"ui":{},"fields":[{"type":"reference","collections":["locations"],"label":"Location","name":"location","namespace":["company","_body","LocationBlock","locationList","location"]}],"namespace":["companyIndex","_body","LocationBlock","locationList"],"searchable":true,"uid":false},{"type":"object","name":"chapelWebsite","label":"Chapel Website","fields":[{"type":"string","name":"title","label":"Text","namespace":["company","_body","LocationBlock","chapelWebsite","title"]},{"type":"string","name":"URL","label":"URL","namespace":["company","_body","LocationBlock","chapelWebsite","URL"]}],"namespace":["companyIndex","_body","LocationBlock","chapelWebsite"],"searchable":true,"uid":false}],"namespace":["companyIndex","_body","LocationBlock"]},{"name":"NewslettersTable","label":"Newsletters Table","ui":{"previewSrc":"/images/thumbs/tina/newsletters-table.jpg"},"fields":[{"type":"string","label":"Header text","name":"headerText","namespace":["companyIndex","_body","NewslettersTable","headerText"],"searchable":true,"uid":false}],"namespace":["companyIndex","_body","NewslettersTable"]},{"label":"Organizer","name":"organizer","fields":[{"type":"image","label":"Profile Image","name":"profileImg","namespace":["companyIndex","_body","organizer","profileImg"],"searchable":false,"uid":false},{"type":"string","label":"Profile Link","name":"profileLink","namespace":["companyIndex","_body","organizer","profileLink"],"searchable":true,"uid":false},{"type":"string","label":"Name","name":"name","namespace":["companyIndex","_body","organizer","name"],"searchable":true,"uid":false},{"type":"string","label":"Position","name":"position","namespace":["companyIndex","_body","organizer","position"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","namespace":["companyIndex","_body","organizer","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["companyIndex","_body","organizer"]},{"label":"Payment Block","name":"paymentBlock","ui":{"previewSrc":"/images/thumbs/tina/payment-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["companyIndex","_body","paymentBlock","title"],"searchable":true,"uid":false},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["companyIndex","_body","paymentBlock","subTitle"],"searchable":true,"uid":false},{"type":"reference","label":"Payment Links","name":"payments","collections":["paymentDetails"],"namespace":["companyIndex","_body","paymentBlock","payments"],"searchable":true,"uid":false},{"type":"rich-text","label":"Footer","name":"footer","namespace":["companyIndex","_body","paymentBlock","footer"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"image","label":"Credit Cards Image","name":"creditImgSrc","namespace":["companyIndex","_body","paymentBlock","creditImgSrc"],"searchable":false,"uid":false},{"type":"string","label":"Alt Text","name":"altTxt","namespace":["companyIndex","_body","paymentBlock","altTxt"],"searchable":true,"uid":false}],"namespace":["companyIndex","_body","paymentBlock"]},{"name":"PresenterBlock","label":"Presenters","ui":{"previewSrc":"/images/thumbs/tina/presenters.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["companyIndex","_body","PresenterBlock","header"],"searchable":true,"uid":false},{"type":"object","name":"presenterList","label":"Presenters","list":true,"ui":{},"fields":[{"type":"reference","name":"presenter","label":"Presenters","collections":["presenter"],"namespace":["company","_body","PresenterBlock","presenterList","presenter"]}],"namespace":["companyIndex","_body","PresenterBlock","presenterList"],"searchable":true,"uid":false},{"type":"object","label":"Other Events","name":"otherEvent","fields":[{"type":"string","label":"Title","name":"title","namespace":["company","_body","PresenterBlock","otherEvent","title"]},{"type":"string","label":"URL","name":"eventURL","namespace":["company","_body","PresenterBlock","otherEvent","eventURL"]}],"namespace":["companyIndex","_body","PresenterBlock","otherEvent"],"searchable":true,"uid":false}],"namespace":["companyIndex","_body","PresenterBlock"]},{"label":"Recurring Event","name":"RecurringEvent","ui":{"previewSrc":"/images/thumbs/tina/recurring-event.jpg"},"fields":[{"type":"string","label":"Apply Link Redirect","name":"applyLinkRedirect","namespace":["companyIndex","_body","RecurringEvent","applyLinkRedirect"],"searchable":true,"uid":false},{"type":"string","label":"Day","name":"day","options":[{"label":"Monday","value":"monday"},{"label":"Tuesday","value":"tuesday"},{"label":"Wednesday","value":"wednesday"},{"label":"Thursday","value":"thursday"},{"label":"Friday","value":"friday"},{"label":"Saturday","value":"saturday"},{"label":"Sunday","value":"sunday"}],"required":true,"namespace":["companyIndex","_body","RecurringEvent","day"],"searchable":true,"uid":false}],"namespace":["companyIndex","_body","RecurringEvent"]},{"name":"SectionHeader","label":"Section Header","ui":{"previewSrc":"/images/thumbs/tina/section-header.jpg"},"fields":[{"type":"string","label":"Header Text","name":"headerText","namespace":["companyIndex","_body","SectionHeader","headerText"],"searchable":true,"uid":false}],"namespace":["companyIndex","_body","SectionHeader"]},{"name":"ServiceCards","label":"Service Cards","ui":{"previewSrc":"/images/thumbs/tina/services-cards.jpg"},"fields":[{"type":"string","label":"Big Cards Label","name":"bigCardsLabel","namespace":["companyIndex","_body","ServiceCards","bigCardsLabel"],"searchable":true,"uid":false},{"label":"Big Cards","name":"bigCards","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["company","_body","ServiceCards","bigCards","title"]},{"type":"string","label":"Description","component":"textarea","name":"description","namespace":["company","_body","ServiceCards","bigCards","description"]},{"type":"string","label":"URL","name":"link","namespace":["company","_body","ServiceCards","bigCards","link"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Red","value":"red"},{"label":"Light Gray","value":"lightgray"},{"label":"Medium Gray","value":"mediumgray"},{"label":"Dark Gray","value":"darkgray"}],"namespace":["company","_body","ServiceCards","bigCards","color"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","ServiceCards","bigCards","imgSrc","uploadDir"]},"namespace":["company","_body","ServiceCards","bigCards","imgSrc"]}],"namespace":["companyIndex","_body","ServiceCards","bigCards"],"searchable":true,"uid":false},{"type":"string","label":"Small Cards Label","name":"smallCardsLabel","namespace":["companyIndex","_body","ServiceCards","smallCardsLabel"],"searchable":true,"uid":false},{"label":"Small Cards","name":"smallCards","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["company","_body","ServiceCards","smallCards","title"]},{"type":"string","label":"URL","name":"link","namespace":["company","_body","ServiceCards","smallCards","link"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Red","value":"red"},{"label":"Light Gray","value":"lightgray"},{"label":"Medium Gray","value":"mediumgray"},{"label":"Dark Gray","value":"darkgray"}],"namespace":["company","_body","ServiceCards","smallCards","color"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","ServiceCards","smallCards","imgSrc","uploadDir"]},"namespace":["company","_body","ServiceCards","smallCards","imgSrc"]},{"type":"boolean","label":"External Page","description":"Select this if the link is not part of the website. This includes SSW.Rules, and SSW.People links","name":"isExternal","namespace":["company","_body","ServiceCards","smallCards","isExternal"]}],"namespace":["companyIndex","_body","ServiceCards","smallCards"],"searchable":true,"uid":false},{"label":"Links","name":"links","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["company","_body","ServiceCards","links","label"]},{"type":"string","label":"URL","name":"link","namespace":["company","_body","ServiceCards","links","link"]}],"namespace":["companyIndex","_body","ServiceCards","links"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["companyIndex","_body","ServiceCards","backgroundColor"],"searchable":true,"uid":false}],"namespace":["companyIndex","_body","ServiceCards"]},{"label":"Table Layout","name":"TableLayout","ui":{"previewSrc":"/images/thumbs/tina/table-layout.jpg"},"fields":[{"label":"Table Style","name":"tableStyle","type":"string","options":["none","basicBorder","styled","benefits"],"namespace":["companyIndex","_body","TableLayout","tableStyle"],"searchable":true,"uid":false},{"label":"First column bolded + left aligned","name":"firstColBold","type":"boolean","required":false,"namespace":["companyIndex","_body","TableLayout","firstColBold"],"searchable":true,"uid":false},{"type":"string","label":"Table Headers","name":"headers","list":true,"namespace":["companyIndex","_body","TableLayout","headers"],"searchable":true,"uid":false},{"type":"object","label":"Rows","name":"rows","list":true,"fields":[{"type":"object","label":"Cells","name":"cells","list":true,"fields":[{"type":"string","label":"Value","name":"cellValue","required":true,"component":{"namespace":["page","beforeBody","TableLayout","rows","cells","cellValue",""]},"namespace":["company","_body","TableLayout","rows","cells","cellValue"]}],"ui":{},"namespace":["company","subTitle","TableLayout","rows","cells"]},{"type":"boolean","label":"Is Heading","name":"isHeader","required":false,"namespace":["company","subTitle","TableLayout","rows","isHeader"]}],"ui":{},"namespace":["companyIndex","_body","TableLayout","rows"],"searchable":true,"uid":false}],"namespace":["companyIndex","_body","TableLayout"]},{"name":"TestimonialsList","label":"Testimonials List","ui":{"previewSrc":"/images/thumbs/tina/testimonials.jpg"},"fields":[{"type":"object","label":"Exclude Categories","name":"excludedCategories","ui":{},"list":true,"fields":[{"type":"reference","label":"Category Name","name":"categoryName","collections":["testimonialCategories"],"namespace":["company","subTitle","TestimonialsList","excludedCategories","categoryName"]}],"namespace":["companyIndex","_body","TestimonialsList","excludedCategories"],"searchable":true,"uid":false}],"namespace":["companyIndex","_body","TestimonialsList"]},{"label":"Training Information","name":"TrainingInformation","ui":{"previewSrc":"/images/thumbs/tina/training-information.jpg"},"fields":[{"type":"object","label":"Training Information Items","name":"trainingInformationItems","list":true,"fields":[{"type":"string","label":"Header","name":"header","namespace":["company","_body","TrainingInformation","trainingInformationItems","header"]},{"type":"rich-text","label":"Body","name":"body","templates":[{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["caseStudy","content","TrainingInformation","trainingInformationItems","body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["caseStudy","content","TrainingInformation","trainingInformationItems","body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["caseStudy","content","TrainingInformation","trainingInformationItems","body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["caseStudy","content","TrainingInformation","trainingInformationItems","body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["caseStudy","content","TrainingInformation","trainingInformationItems","body","VerticalListItem","afterBody"]}],"namespace":["caseStudy","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem"]},{"label":"Recurring Event","name":"RecurringEvent","ui":{"previewSrc":"/images/thumbs/tina/recurring-event.jpg"},"fields":[{"type":"string","label":"Apply Link Redirect","name":"applyLinkRedirect","namespace":["caseStudy","content","TrainingInformation","trainingInformationItems","body","RecurringEvent","applyLinkRedirect"]},{"type":"string","label":"Day","name":"day","options":[{"label":"Monday","value":"monday"},{"label":"Tuesday","value":"tuesday"},{"label":"Wednesday","value":"wednesday"},{"label":"Thursday","value":"thursday"},{"label":"Friday","value":"friday"},{"label":"Saturday","value":"saturday"},{"label":"Sunday","value":"sunday"}],"required":true,"namespace":["caseStudy","content","TrainingInformation","trainingInformationItems","body","RecurringEvent","day"]}],"namespace":["caseStudy","_body","TrainingInformation","trainingInformationItems","body","RecurringEvent"]}],"namespace":["company","_body","TrainingInformation","trainingInformationItems","body"]}],"namespace":["companyIndex","_body","TrainingInformation","trainingInformationItems"],"searchable":true,"uid":false}],"namespace":["companyIndex","_body","TrainingInformation"]},{"label":"Training Learning Outcomes","name":"TrainingLearningOutcome","ui":{"previewSrc":"/images/thumbs/tina/training-learning-outcomes.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["companyIndex","_body","TrainingLearningOutcome","header"],"searchable":true,"uid":false},{"type":"object","label":"List Items","name":"listItems","list":true,"fields":[{"type":"string","label":"Title","name":"title","namespace":["company","_body","TrainingLearningOutcome","listItems","title"]},{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["company","_body","TrainingLearningOutcome","listItems","content"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","TrainingLearningOutcome","listItems","icon","uploadDir"]},"namespace":["company","_body","TrainingLearningOutcome","listItems","icon"]}],"namespace":["companyIndex","_body","TrainingLearningOutcome","listItems"],"searchable":true,"uid":false}],"namespace":["companyIndex","_body","TrainingLearningOutcome"]},{"label":"Tweet Embed","name":"TweetEmbed","ui":{"previewSrc":"/images/thumbs/tina/tweet-embed.jpg"},"fields":[{"type":"string","name":"url","label":"Tweet URL","required":true,"namespace":["companyIndex","_body","TweetEmbed","url"],"searchable":true,"uid":false}],"namespace":["companyIndex","_body","TweetEmbed"]},{"name":"UpcomingEvents","label":"Upcoming Events","ui":{"previewSrc":"/images/thumbs/tina/upcoming-events.jpg","defaultItem":{"title":"Upcoming Events","numberOfEvents":30}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["companyIndex","_body","UpcomingEvents","title"],"searchable":true,"uid":false},{"type":"number","label":"Number of Events","name":"numberOfEvents","namespace":["companyIndex","_body","UpcomingEvents","numberOfEvents"],"searchable":true,"uid":false}],"namespace":["companyIndex","_body","UpcomingEvents"]},{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["companyIndex","_body","UtilityButton","buttonText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"link","required":false,"namespace":["companyIndex","_body","UtilityButton","link"],"searchable":true,"uid":false},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["companyIndex","_body","UtilityButton","size"],"searchable":true,"uid":false},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["companyIndex","_body","UtilityButton","btnIcon"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["companyIndex","_body","UtilityButton","animated"],"searchable":true,"uid":false},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["companyIndex","_body","UtilityButton","uncentered"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["companyIndex","_body","UtilityButton","removeTopMargin"],"searchable":true,"uid":false},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["companyIndex","_body","UtilityButton","openInNewTab"],"searchable":true,"uid":false}],"namespace":["companyIndex","_body","UtilityButton"]},{"name":"VerticalImageLayout","label":"Vertical Image Layout","fields":[{"type":"image","label":"Image","name":"imageSrc","uploadDir":{"namespace":["page","beforeBody","VerticalImageLayout","imageSrc","uploadDir"]},"namespace":["companyIndex","_body","VerticalImageLayout","imageSrc"],"searchable":false,"uid":false},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["companyIndex","_body","VerticalImageLayout","altText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"imageLink","namespace":["companyIndex","_body","VerticalImageLayout","imageLink"],"searchable":true,"uid":false},{"type":"number","label":"Height","name":"height","required":true,"namespace":["companyIndex","_body","VerticalImageLayout","height"],"searchable":true,"uid":false},{"type":"number","label":"Width","name":"width","required":true,"namespace":["companyIndex","_body","VerticalImageLayout","width"],"searchable":true,"uid":false},{"type":"rich-text","label":"Message","name":"message","required":true,"namespace":["companyIndex","_body","VerticalImageLayout","message"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["companyIndex","_body","VerticalImageLayout","sizes"],"searchable":true,"uid":false}],"namespace":["companyIndex","_body","VerticalImageLayout"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["companyIndex","_body","VerticalListItem","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"number","label":"Index number","name":"index","namespace":["companyIndex","_body","VerticalListItem","index"],"searchable":true,"uid":false},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["companyIndex","_body","VerticalListItem","icon"],"searchable":false,"uid":false},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["companyIndex","_body","VerticalListItem","iconScale"],"searchable":true,"uid":false},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["companyIndex","_body","VerticalListItem","afterBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["companyIndex","_body","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["companyIndex","_body","VideoEmbed","url"],"searchable":true,"uid":false},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["companyIndex","_body","VideoEmbed","videoWidth"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["companyIndex","_body","VideoEmbed","removeMargin"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["companyIndex","_body","VideoEmbed","uncentre"],"searchable":true,"uid":false},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["companyIndex","_body","VideoEmbed","overflow"],"searchable":true,"uid":false},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["companyIndex","_body","VideoEmbed","caption"],"searchable":true,"uid":false},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["companyIndex","_body","VideoEmbed","duration"],"searchable":true,"uid":false}],"namespace":["companyIndex","_body","VideoEmbed"]},{"name":"InlineJotForm","label":"In-line JotForm","ui":{"previewSrc":"/images/thumbs/tina/inline-jot-form.jpg"},"fields":[{"type":"string","name":"title","label":"Title","description":"Optional title for JotForm","namespace":["companyIndex","_body","InlineJotForm","title"],"searchable":true,"uid":false},{"type":"string","name":"jotFormId","label":"JotForm ID","required":true,"namespace":["companyIndex","_body","InlineJotForm","jotFormId"],"searchable":true,"uid":false},{"type":"string","name":"additionalClasses","label":"Additional classnames","description":"Optional styling for iframe element only","namespace":["companyIndex","_body","InlineJotForm","additionalClasses"],"searchable":true,"uid":false}],"namespace":["companyIndex","_body","InlineJotForm"]}],"isBody":true,"namespace":["companyIndex","_body"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"object","label":"Pages","description":"Cards for the timeline on the History page.","name":"companyPages","ui":{},"list":true,"fields":[{"type":"string","label":"Title","name":"title","namespace":["companyIndex","companyPages","title"],"searchable":true,"uid":false},{"type":"rich-text","label":"Body","name":"body","namespace":["companyIndex","companyPages","body"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Page URL","name":"pageURL","namespace":["companyIndex","companyPages","pageURL"],"searchable":true,"uid":false},{"type":"boolean","label":"External Page","description":"Select this if the link is not part of the website. This includes SSW.Rules, and SSW.People links","name":"isExternal","namespace":["companyIndex","companyPages","isExternal"],"searchable":true,"uid":false}],"namespace":["companyIndex","companyPages"],"searchable":true,"uid":false}],"namespace":["companyIndex"]},{"path":"content/company","name":"company","label":"Company - Pages","format":"mdx","match":{"exclude":"@(case-study|index|clientCategories)/*"},"ui":{},"fields":[{"type":"string","name":"tip","label":"Tip","ui":{},"namespace":["company","tip"],"searchable":true,"uid":false},{"type":"object","label":"SEO Values","name":"seo","fields":[{"type":"string","label":"Title (70 characters)","name":"title","ui":{},"namespace":["company","seo","title"],"searchable":true,"uid":false},{"type":"string","label":"Description (150 characters)","name":"description","component":"textarea","ui":{},"namespace":["company","seo","description"],"searchable":true,"uid":false},{"type":"string","label":"Canonical URL","name":"canonical","namespace":["company","seo","canonical"],"searchable":true,"uid":false},{"type":"boolean","name":"showBreadcrumb","label":"Show Breadcrumb","namespace":["company","seo","showBreadcrumb"],"searchable":true,"uid":false},{"label":"Images","name":"images","list":true,"type":"object","ui":{"defaultItem":{"url":"/images/ssw-default-og.jpg","width":1200,"height":630,"alt":"SSW Consulting - Enterprise Software Development"}},"fields":[{"type":"image","label":"Image Url","name":"url","require":true,"namespace":["caseStudy","seo","images","url"],"searchable":false,"uid":false},{"type":"number","label":"Width (px)","name":"width","namespace":["caseStudy","seo","images","width"],"searchable":true,"uid":false},{"type":"number","label":"Height (px)","name":"height","namespace":["caseStudy","seo","images","height"],"searchable":true,"uid":false},{"type":"string","label":"Image Alt Text","name":"alt","namespace":["caseStudy","seo","images","alt"],"searchable":true,"uid":false}],"namespace":["company","seo","images"],"searchable":true,"uid":false}],"namespace":["company","seo"],"searchable":true,"uid":false},{"type":"object","list":true,"name":"beforeBody","label":"Before body","ui":{"visualSelector":true},"templates":[{"name":"Carousel","label":"Carousel","ui":{"previewSrc":"/images/thumbs/tina/carousel.jpg"},"fields":[{"label":"Items","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Item description","link":"/","openIn":"sameWindow"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["company","subTitle","Carousel","items","label"]},{"type":"string","label":"URL","name":"link","description":"If link contains ssw.com.au, you can skip the full URL and just use the path. e.g. /services","namespace":["company","subTitle","Carousel","items","link"]},{"type":"string","label":"Open in","name":"openIn","description":"If it is external link, please select 'New window' option.","options":[{"label":"Same window","value":"sameWindow"},{"label":"Modal","value":"modal"},{"label":"New window","value":"newWindow"}],"namespace":["company","subTitle","Carousel","items","openIn"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","Carousel","items","imgSrc","uploadDir"]},"namespace":["company","subTitle","Carousel","items","imgSrc"]}],"namespace":["company","beforeBody","Carousel","items"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["company","beforeBody","Carousel","backgroundColor"],"searchable":true,"uid":false},{"type":"number","label":"Delay (Seconds)","name":"delay","required":true,"namespace":["company","beforeBody","Carousel","delay"],"searchable":true,"uid":false},{"type":"boolean","label":"Show on mobile devices","name":"showOnMobileDevices","namespace":["company","beforeBody","Carousel","showOnMobileDevices"],"searchable":true,"uid":false}],"namespace":["company","beforeBody","Carousel"]}],"namespace":["company","beforeBody"],"searchable":true,"uid":false},{"type":"string","name":"title","label":"Title","namespace":["company","title"],"searchable":true,"uid":false},{"type":"rich-text","name":"subTitle","label":"Body","templates":[{"name":"Carousel","label":"Carousel","ui":{"previewSrc":"/images/thumbs/tina/carousel.jpg"},"fields":[{"label":"Items","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Item description","link":"/","openIn":"sameWindow"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["company","_body","Carousel","items","label"]},{"type":"string","label":"URL","name":"link","description":"If link contains ssw.com.au, you can skip the full URL and just use the path. e.g. /services","namespace":["company","_body","Carousel","items","link"]},{"type":"string","label":"Open in","name":"openIn","description":"If it is external link, please select 'New window' option.","options":[{"label":"Same window","value":"sameWindow"},{"label":"Modal","value":"modal"},{"label":"New window","value":"newWindow"}],"namespace":["company","_body","Carousel","items","openIn"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","Carousel","items","imgSrc","uploadDir"]},"namespace":["company","_body","Carousel","items","imgSrc"]}],"namespace":["company","subTitle","Carousel","items"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["company","subTitle","Carousel","backgroundColor"],"searchable":true,"uid":false},{"type":"number","label":"Delay (Seconds)","name":"delay","required":true,"namespace":["company","subTitle","Carousel","delay"],"searchable":true,"uid":false},{"type":"boolean","label":"Show on mobile devices","name":"showOnMobileDevices","namespace":["company","subTitle","Carousel","showOnMobileDevices"],"searchable":true,"uid":false}],"namespace":["company","subTitle","Carousel"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["company","subTitle","ColorBlock","title"],"searchable":true,"uid":false},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["company","subTitle","ColorBlock","subTitle"],"searchable":true,"uid":false},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["company","_body","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["company","_body","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["company","_body","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["company","_body","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["company","_body","ColorBlock","colorRow","caption"]}],"namespace":["company","subTitle","ColorBlock","colorRow"],"searchable":true,"uid":false}],"namespace":["company","subTitle","ColorBlock"]},{"name":"ColorPalette","label":"Color Palette","ui":{"previewSrc":"/images/thumbs/tina/color-palette.jpg"},"fields":[{"type":"string","label":"Name","name":"name","namespace":["company","subTitle","ColorPalette","name"],"searchable":true,"uid":false}],"namespace":["company","subTitle","ColorPalette"]},{"name":"CustomDownloadButton","label":"Custom Download Button","ui":{"previewSrc":"/images/thumbs/tina/custom-download-button.jpg"},"fields":[{"type":"string","label":"Text","name":"btnText","namespace":["company","subTitle","CustomDownloadButton","btnText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"btnLink","namespace":["company","subTitle","CustomDownloadButton","btnLink"],"searchable":true,"uid":false}],"namespace":["company","subTitle","CustomDownloadButton"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["company","subTitle","CustomImage","src"],"searchable":false,"uid":false},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["company","subTitle","CustomImage","altText"],"searchable":true,"uid":false},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["company","subTitle","CustomImage","alignment"],"searchable":true,"uid":false},{"type":"number","label":"Height","name":"height","required":true,"namespace":["company","subTitle","CustomImage","height"],"searchable":true,"uid":false},{"type":"number","label":"Width","name":"width","required":true,"namespace":["company","subTitle","CustomImage","width"],"searchable":true,"uid":false},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["company","subTitle","CustomImage","link"],"searchable":true,"uid":false},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["company","subTitle","CustomImage","customClass"],"searchable":true,"uid":false},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["company","subTitle","CustomImage","caption"],"searchable":true,"uid":false},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["company","subTitle","CustomImage","captionColor"],"searchable":true,"uid":false},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["company","subTitle","CustomImage","sizes"],"searchable":true,"uid":false}],"namespace":["company","subTitle","CustomImage"]},{"name":"DynamicCardGridBlock","label":"Dynamic Card Grid Block","fields":[{"type":"string","label":"Grid Columns Layout","name":"gridLayout","description":"Default 3 columns","options":["single","double","triple","four"],"namespace":["company","subTitle","DynamicCardGridBlock","gridLayout"],"searchable":true,"uid":false},{"type":"object","label":"Image List","name":"imageList","ui":{},"list":true,"fields":[{"type":"string","label":"Title","name":"title","required":true,"namespace":["company","subTitle","DynamicCardGridBlock","imageList","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["company","subTitle","DynamicCardGridBlock","imageList","subTitle"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"URL","name":"url","required":true,"namespace":["company","subTitle","DynamicCardGridBlock","imageList","link","url"]},{"type":"string","label":"Label","name":"label","required":true,"namespace":["company","subTitle","DynamicCardGridBlock","imageList","link","label"]}],"namespace":["company","subTitle","DynamicCardGridBlock","imageList","link"]},{"type":"string","label":"Alt Text","name":"altText","required":true,"namespace":["company","subTitle","DynamicCardGridBlock","imageList","altText"]},{"type":"number","name":"height","label":"Height","description":"Default 150px","namespace":["company","subTitle","DynamicCardGridBlock","imageList","height"]},{"type":"number","name":"width","label":"Width","description":"Default 150px","namespace":["company","subTitle","DynamicCardGridBlock","imageList","width"]},{"type":"image","label":"Image","name":"imageSrc","required":true,"uploadDir":{"namespace":["articles","subTitle","DynamicCardGridBlock","imageList","imageSrc","uploadDir"]},"namespace":["company","subTitle","DynamicCardGridBlock","imageList","imageSrc"]}],"namespace":["company","subTitle","DynamicCardGridBlock","imageList"],"searchable":true,"uid":false}],"namespace":["company","subTitle","DynamicCardGridBlock"]},{"name":"FixedColumns","label":"Fixed Column Layout (2 columns)","ui":{"previewSrc":"/images/thumbs/tina/fixed-columns.jpg"},"fields":[{"type":"rich-text","label":"Header Section (Optional)","name":"headerSection","namespace":["company","subTitle","FixedColumns","headerSection"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"First column text","name":"firstColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["caseStudy","_body","FixedColumns","firstColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["caseStudy","_body","FixedColumns","firstColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["consulting","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["consulting","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["consulting","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["consulting","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["consulting","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["consulting","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["consulting","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["consulting","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["consulting","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["consulting","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["caseStudy","content","FixedColumns","firstColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["consulting","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["consulting","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["consulting","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["consulting","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["consulting","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["caseStudy","content","FixedColumns","firstColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["consulting","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["consulting","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["consulting","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["consulting","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["consulting","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["consulting","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["consulting","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["caseStudy","content","FixedColumns","firstColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["consulting","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["consulting","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["consulting","afterBody","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["consulting","afterBody","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["consulting","afterBody","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["consulting","afterBody","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["consulting","afterBody","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["consulting","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["caseStudy","content","FixedColumns","firstColBody","ContentCard","content","ColorBlock"]}],"namespace":["caseStudy","_body","FixedColumns","firstColBody","ContentCard","content"]}],"namespace":["company","_body","FixedColumns","firstColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["caseStudy","_body","FixedColumns","firstColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["caseStudy","_body","FixedColumns","firstColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["caseStudy","_body","FixedColumns","firstColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["caseStudy","_body","FixedColumns","firstColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["caseStudy","_body","FixedColumns","firstColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["caseStudy","_body","FixedColumns","firstColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["caseStudy","_body","FixedColumns","firstColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["caseStudy","_body","FixedColumns","firstColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["caseStudy","_body","FixedColumns","firstColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["caseStudy","_body","FixedColumns","firstColBody","CustomImage","sizes"]}],"namespace":["company","_body","FixedColumns","firstColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["consulting","_body","FixedColumns","firstColBody","EventLink","content","Flag","country"]}],"namespace":["caseStudy","content","FixedColumns","firstColBody","EventLink","content","Flag"]}],"namespace":["caseStudy","_body","FixedColumns","firstColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["caseStudy","_body","FixedColumns","firstColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["caseStudy","_body","FixedColumns","firstColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["caseStudy","_body","FixedColumns","firstColBody","EventLink","thumbnailAlt"]}],"namespace":["company","_body","FixedColumns","firstColBody","EventLink"]}],"namespace":["company","subTitle","FixedColumns","firstColBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"Second column text","name":"secondColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["caseStudy","_body","FixedColumns","secondColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["caseStudy","_body","FixedColumns","secondColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["consulting","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["consulting","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["consulting","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["consulting","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["consulting","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["consulting","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["consulting","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["consulting","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["consulting","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["consulting","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["caseStudy","content","FixedColumns","secondColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["consulting","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["consulting","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["consulting","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["consulting","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["consulting","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["caseStudy","content","FixedColumns","secondColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["consulting","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["consulting","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["consulting","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["consulting","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["consulting","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["consulting","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["consulting","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["caseStudy","content","FixedColumns","secondColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["consulting","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["consulting","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["consulting","afterBody","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["consulting","afterBody","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["consulting","afterBody","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["consulting","afterBody","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["consulting","afterBody","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["consulting","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["caseStudy","content","FixedColumns","secondColBody","ContentCard","content","ColorBlock"]}],"namespace":["caseStudy","_body","FixedColumns","secondColBody","ContentCard","content"]}],"namespace":["company","_body","FixedColumns","secondColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["caseStudy","_body","FixedColumns","secondColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["caseStudy","_body","FixedColumns","secondColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["caseStudy","_body","FixedColumns","secondColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["caseStudy","_body","FixedColumns","secondColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["caseStudy","_body","FixedColumns","secondColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["caseStudy","_body","FixedColumns","secondColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["caseStudy","_body","FixedColumns","secondColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["caseStudy","_body","FixedColumns","secondColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["caseStudy","_body","FixedColumns","secondColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["caseStudy","_body","FixedColumns","secondColBody","CustomImage","sizes"]}],"namespace":["company","_body","FixedColumns","secondColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["consulting","_body","FixedColumns","secondColBody","EventLink","content","Flag","country"]}],"namespace":["caseStudy","content","FixedColumns","secondColBody","EventLink","content","Flag"]}],"namespace":["caseStudy","_body","FixedColumns","secondColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["caseStudy","_body","FixedColumns","secondColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["caseStudy","_body","FixedColumns","secondColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["caseStudy","_body","FixedColumns","secondColBody","EventLink","thumbnailAlt"]}],"namespace":["company","_body","FixedColumns","secondColBody","EventLink"]}],"namespace":["company","subTitle","FixedColumns","secondColBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["company","subTitle","FixedColumns"]},{"name":"SectionHeader","label":"Section Header","ui":{"previewSrc":"/images/thumbs/tina/section-header.jpg"},"fields":[{"type":"string","label":"Header Text","name":"headerText","namespace":["company","subTitle","SectionHeader","headerText"],"searchable":true,"uid":false}],"namespace":["company","subTitle","SectionHeader"]},{"label":"Table Layout","name":"TableLayout","ui":{"previewSrc":"/images/thumbs/tina/table-layout.jpg"},"fields":[{"label":"Table Style","name":"tableStyle","type":"string","options":["none","basicBorder","styled","benefits"],"namespace":["company","subTitle","TableLayout","tableStyle"],"searchable":true,"uid":false},{"label":"First column bolded + left aligned","name":"firstColBold","type":"boolean","required":false,"namespace":["company","subTitle","TableLayout","firstColBold"],"searchable":true,"uid":false},{"type":"string","label":"Table Headers","name":"headers","list":true,"namespace":["company","subTitle","TableLayout","headers"],"searchable":true,"uid":false},{"type":"object","label":"Rows","name":"rows","list":true,"fields":[{"type":"object","label":"Cells","name":"cells","list":true,"fields":[{"type":"string","label":"Value","name":"cellValue","required":true,"component":{"namespace":["page","beforeBody","TableLayout","rows","cells","cellValue",""]},"namespace":["caseStudy","_body","TableLayout","rows","cells","cellValue"]}],"ui":{},"namespace":["company","_body","TableLayout","rows","cells"]},{"type":"boolean","label":"Is Heading","name":"isHeader","required":false,"namespace":["company","_body","TableLayout","rows","isHeader"]}],"ui":{},"namespace":["company","subTitle","TableLayout","rows"],"searchable":true,"uid":false}],"namespace":["company","subTitle","TableLayout"]},{"name":"TestimonialsList","label":"Testimonials List","ui":{"previewSrc":"/images/thumbs/tina/testimonials.jpg"},"fields":[{"type":"object","label":"Exclude Categories","name":"excludedCategories","ui":{},"list":true,"fields":[{"type":"reference","label":"Category Name","name":"categoryName","collections":["testimonialCategories"],"namespace":["company","_body","TestimonialsList","excludedCategories","categoryName"]}],"namespace":["company","subTitle","TestimonialsList","excludedCategories"],"searchable":true,"uid":false}],"namespace":["company","subTitle","TestimonialsList"]},{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["company","subTitle","UtilityButton","buttonText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"link","required":false,"namespace":["company","subTitle","UtilityButton","link"],"searchable":true,"uid":false},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["company","subTitle","UtilityButton","size"],"searchable":true,"uid":false},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["company","subTitle","UtilityButton","btnIcon"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["company","subTitle","UtilityButton","animated"],"searchable":true,"uid":false},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["company","subTitle","UtilityButton","uncentered"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["company","subTitle","UtilityButton","removeTopMargin"],"searchable":true,"uid":false},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["company","subTitle","UtilityButton","openInNewTab"],"searchable":true,"uid":false}],"namespace":["company","subTitle","UtilityButton"]},{"name":"VerticalImageLayout","label":"Vertical Image Layout","fields":[{"type":"image","label":"Image","name":"imageSrc","uploadDir":{"namespace":["page","beforeBody","VerticalImageLayout","imageSrc","uploadDir"]},"namespace":["company","subTitle","VerticalImageLayout","imageSrc"],"searchable":false,"uid":false},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["company","subTitle","VerticalImageLayout","altText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"imageLink","namespace":["company","subTitle","VerticalImageLayout","imageLink"],"searchable":true,"uid":false},{"type":"number","label":"Height","name":"height","required":true,"namespace":["company","subTitle","VerticalImageLayout","height"],"searchable":true,"uid":false},{"type":"number","label":"Width","name":"width","required":true,"namespace":["company","subTitle","VerticalImageLayout","width"],"searchable":true,"uid":false},{"type":"rich-text","label":"Message","name":"message","required":true,"namespace":["company","subTitle","VerticalImageLayout","message"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["company","subTitle","VerticalImageLayout","sizes"],"searchable":true,"uid":false}],"namespace":["company","subTitle","VerticalImageLayout"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["company","subTitle","VideoEmbed","url"],"searchable":true,"uid":false},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["company","subTitle","VideoEmbed","videoWidth"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["company","subTitle","VideoEmbed","removeMargin"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["company","subTitle","VideoEmbed","uncentre"],"searchable":true,"uid":false},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["company","subTitle","VideoEmbed","overflow"],"searchable":true,"uid":false},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["company","subTitle","VideoEmbed","caption"],"searchable":true,"uid":false},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["company","subTitle","VideoEmbed","duration"],"searchable":true,"uid":false}],"namespace":["company","subTitle","VideoEmbed"]}],"namespace":["company","subTitle"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"boolean","name":"fullWidthBody","label":"Full Width Body","namespace":["company","fullWidthBody"],"searchable":true,"uid":false},{"type":"rich-text","name":"sidebar","label":"Sidebar","required":false,"templates":[{"name":"MicrosoftPanel","label":"Microsoft Panel","fields":[{"type":"string","label":"No need to fill this in - placeholder field","name":"altText","required":false,"namespace":["company","sidebar","MicrosoftPanel","altText"],"searchable":true,"uid":false}],"namespace":["company","sidebar","MicrosoftPanel"]}],"namespace":["company","sidebar"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"boolean","name":"hideSidebarOnMobile","label":"Hide sidebar on mobile","namespace":["company","hideSidebarOnMobile"],"searchable":true,"uid":false},{"type":"boolean","name":"fixedWidthSidebar","label":"Fixed width sidebar","namespace":["company","fixedWidthSidebar"],"searchable":true,"uid":false},{"type":"string","name":"sidebarTestimonial","label":"Sidebar Testimonial","options":[{"value":"niru verma","label":"Niru Verma - Mercury Information Security Services"},{"value":"shawn rosewarne","label":"Shawn Rosewarne - Ceridian"},{"value":"andrew j clark","label":"Andrew J Clark - The Logistics Linchpin"},{"value":"peter dimaridis","label":"Peter Dimaridis - AuctionsPlus"},{"value":"bill johnson","label":"Bill Johnson - InfoMet Pty Ltd"},{"value":"justin stafford","label":"Justin Stafford - Blueshift"},{"value":"bo searle","label":"Bo Searle - Vault - Secure Sovereign Community Cloud"},{"value":"ian newmarch","label":"Ian Newmarch - Twana"},{"value":"peter coombe","label":"Peter Coombe - Berkley"},{"value":"yun lu","label":"Yun Lu - LUQI Tech"},{"value":"dr. xingjun ma","label":"Dr. Xingjun Ma - Fudan University"},{"value":"neil roodyn","label":"Neil Roodyn - nsquared solutions"},{"value":"christine chang","label":"Christine Chang - Tapp Group Limited"},{"value":"mark pigram","label":"Mark Pigram - Contracts Online"},{"value":"daniel murtagh","label":"Daniel Murtagh - Bell Shakespeare"},{"value":"david blacketer","label":"David Blacketer - Berkley IT in Asia Pacific"},{"value":"eugeniu jalba","label":"Eugeniu Jalba - SSW Event Attendee"},{"value":"francine binns","label":"Francine Binns - IPWEA NSW & ACT"},{"value":"francis kirby","label":"Francis Kirby - BioCurate"},{"value":"glenn","label":"Glenn - Australian Government Organization"},{"value":"grant bloxham","label":"Grant Bloxham - Bstar"},{"value":"kiriana\tmeha bettison","label":"Kiriana\tMeha Bettison - Hearing Australia"},{"value":"yalal cakir","label":"Yalal Cakir - "},{"value":"jom co","label":"Jom Co - "},{"value":"jeoffrey fischer","label":"Jeoffrey Fischer - "},{"value":"ben neoh","label":"Ben Neoh - "},{"value":"brady stroud","label":"Brady Stroud - "},{"value":"kathryn elegino","label":"Kathryn Elegino - "},{"value":"ken salan","label":"Ken Salan - AuctionsPlus"},{"value":"louise ridlen","label":"Louise Ridlen - Gem Training Solutions"},{"value":"mark pigram","label":"Mark Pigram - Contracts Online"},{"value":"peter mccurdy","label":"Peter McCurdy - PDS"},{"value":"kiri stejko","label":"Kiri Stejko - Parents At Work"},{"value":"peter dimaridis","label":"Peter Dimaridis - AuctionsPlus"},{"value":"project manager","label":"Project Manager - Major International Holiday Company"},{"value":"royce milmlow","label":"Royce Milmlow - Delta Elcom"},{"value":"s. somasegar","label":"S. Somasegar - Microsoft"},{"value":"sarah elliott","label":"Sarah Elliott - Smart Group"},{"value":"seth daily","label":"Seth Daily - SSW"},{"value":"susan harkins","label":"Susan Harkins - SQL Access to SQL Server"},{"value":"philip uren","label":"Philip Uren - System77"},{"value":"todd northrop","label":"Todd Northrop - Speednet Group"},{"value":"jeff atwood","label":"Jeff Atwood - "},{"value":"nick wienholt","label":"Nick Wienholt - "},{"value":"troy magennis","label":"Troy Magennis - "},{"value":"tylah kapa","label":"Tylah Kapa - SSW"}],"namespace":["company","sidebarTestimonial"],"searchable":true,"uid":false},{"type":"boolean","name":"showRdPanel","label":"Show Regional Director Panel","required":false,"namespace":["company","showRdPanel"],"searchable":true,"uid":false},{"type":"boolean","name":"showTechUpgradeBlock","label":"Show Tech Upgrade Block","required":false,"namespace":["company","showTechUpgradeBlock"],"searchable":true,"uid":false},{"type":"object","list":true,"name":"_body","label":"Blocks","templates":[{"name":"AboutUs","label":"About Us","ui":{"previewSrc":"/images/thumbs/tina/about-us.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["company","_body","AboutUs","backgroundColor"],"searchable":true,"uid":false},{"type":"boolean","label":"Show Map","name":"showMap","required":false,"namespace":["company","_body","AboutUs","showMap"],"searchable":true,"uid":false}],"namespace":["company","_body","AboutUs"]},{"label":"Agenda","name":"Agenda","ui":{"previewSrc":"/images/thumbs/tina/agenda.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["company","_body","Agenda","header"],"searchable":true,"uid":false},{"type":"string","label":"Header Color","name":"textColor","options":[{"label":"Red","value":"red"},{"label":"Gray","value":"gray"},{"label":"Default","value":"default"}],"namespace":["company","_body","Agenda","textColor"],"searchable":true,"uid":false},{"type":"object","label":"Agenda Items","name":"agendaItemList","ui":{},"list":true,"fields":[{"type":"string","label":"Placeholder Text","name":"placeholder","namespace":["caseStudy","_body","Agenda","agendaItemList","placeholder"]},{"type":"rich-text","label":"Body","name":"body","templates":[{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["consulting","_body","Agenda","agendaItemList","body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["consulting","_body","Agenda","agendaItemList","body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["consulting","_body","Agenda","agendaItemList","body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["consulting","_body","Agenda","agendaItemList","body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["consulting","_body","Agenda","agendaItemList","body","VerticalListItem","afterBody"]}],"namespace":["caseStudy","content","Agenda","agendaItemList","body","VerticalListItem"]}],"namespace":["caseStudy","_body","Agenda","agendaItemList","body"]}],"namespace":["company","_body","Agenda","agendaItemList"],"searchable":true,"uid":false}],"namespace":["company","_body","Agenda"]},{"label":"Agreement Form","name":"AgreementForm","ui":{"previewSrc":"/images/thumbs/tina/agreement-form.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["company","_body","AgreementForm","backgroundColor"],"searchable":true,"uid":false},{"type":"object","label":"Form fields","name":"fields","list":true,"fields":[{"type":"string","label":"ID","name":"id","required":true,"namespace":["caseStudy","_body","AgreementForm","fields","id"]},{"type":"string","label":"Label","name":"label","required":true,"namespace":["caseStudy","_body","AgreementForm","fields","label"]},{"type":"string","label":"Placeholder","name":"placeholder","namespace":["caseStudy","_body","AgreementForm","fields","placeholder"]},{"type":"boolean","label":"Resizeable","name":"resizeable","required":true,"namespace":["caseStudy","_body","AgreementForm","fields","resizeable"]}],"namespace":["company","_body","AgreementForm","fields"],"searchable":true,"uid":false}],"namespace":["company","_body","AgreementForm"]},{"label":"Interest Form","name":"InterestForm","ui":{"previewSrc":"/images/thumbs/tina/interest-form.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["company","_body","InterestForm","buttonText"],"searchable":true,"uid":false}],"namespace":["company","_body","InterestForm"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["company","_body","BookingButton","buttonText"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","namespace":["company","_body","BookingButton","animated"],"searchable":true,"uid":false},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["company","_body","BookingButton","buttonSubtitle"],"searchable":true,"uid":false}],"namespace":["company","_body","BookingButton"]},{"name":"BuiltOnAzure","label":"Built on Azure","ui":{"previewSrc":"/images/thumbs/tina/built-on-azure.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["company","_body","BuiltOnAzure","backgroundColor"],"searchable":true,"uid":false}],"namespace":["company","_body","BuiltOnAzure"]},{"name":"Carousel","label":"Carousel","ui":{"previewSrc":"/images/thumbs/tina/carousel.jpg"},"fields":[{"label":"Items","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Item description","link":"/","openIn":"sameWindow"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["caseStudy","_body","Carousel","items","label"]},{"type":"string","label":"URL","name":"link","description":"If link contains ssw.com.au, you can skip the full URL and just use the path. e.g. /services","namespace":["caseStudy","_body","Carousel","items","link"]},{"type":"string","label":"Open in","name":"openIn","description":"If it is external link, please select 'New window' option.","options":[{"label":"Same window","value":"sameWindow"},{"label":"Modal","value":"modal"},{"label":"New window","value":"newWindow"}],"namespace":["caseStudy","_body","Carousel","items","openIn"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","Carousel","items","imgSrc","uploadDir"]},"namespace":["caseStudy","_body","Carousel","items","imgSrc"]}],"namespace":["company","_body","Carousel","items"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["company","_body","Carousel","backgroundColor"],"searchable":true,"uid":false},{"type":"number","label":"Delay (Seconds)","name":"delay","required":true,"namespace":["company","_body","Carousel","delay"],"searchable":true,"uid":false},{"type":"boolean","label":"Show on mobile devices","name":"showOnMobileDevices","namespace":["company","_body","Carousel","showOnMobileDevices"],"searchable":true,"uid":false}],"namespace":["company","_body","Carousel"]},{"name":"Citation","label":"Citation","fields":[{"type":"string","label":"author","name":"author","namespace":["company","_body","Citation","author"],"searchable":true,"uid":false},{"type":"string","label":"article","name":"article","required":true,"namespace":["company","_body","Citation","article"],"searchable":true,"uid":false}],"namespace":["company","_body","Citation"]},{"label":"Client List","name":"ClientList","ui":{"previewSrc":"/images/thumbs/tina/clients-list.jpg"},"fields":[{"type":"object","name":"categories","label":"Categories","list":true,"fields":[{"type":"reference","name":"category","label":"Category","collections":["clientCategories"],"namespace":["caseStudy","_body","ClientList","categories","category"]}],"ui":{},"namespace":["company","_body","ClientList","categories"],"searchable":true,"uid":false},{"type":"object","name":"clients","label":"Clients list","list":true,"ui":{"previewSrc":"/images/thumbs/tina/clients-list.jpg"},"fields":[{"type":"string","name":"name","label":"Name","namespace":["caseStudy","_body","ClientList","clients","name"]},{"type":"image","name":"logo","label":"Logo","namespace":["caseStudy","_body","ClientList","clients","logo"]},{"type":"string","name":"logoUrl","label":"Logo URL","namespace":["caseStudy","_body","ClientList","clients","logoUrl"]},{"type":"rich-text","name":"content","label":"Content","templates":[{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["consulting","_body","ClientList","clients","content","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["consulting","_body","ClientList","clients","content","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["consulting","_body","ClientList","clients","content","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["consulting","_body","ClientList","clients","content","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["consulting","_body","ClientList","clients","content","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["consulting","_body","ClientList","clients","content","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["consulting","_body","ClientList","clients","content","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["consulting","_body","ClientList","clients","content","UtilityButton","openInNewTab"]}],"namespace":["caseStudy","content","ClientList","clients","content","UtilityButton"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["consulting","_body","ClientList","clients","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["consulting","_body","ClientList","clients","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["consulting","_body","ClientList","clients","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["consulting","_body","ClientList","clients","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["consulting","_body","ClientList","clients","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["consulting","_body","ClientList","clients","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["consulting","_body","ClientList","clients","content","VideoEmbed","duration"]}],"namespace":["caseStudy","content","ClientList","clients","content","VideoEmbed"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["consulting","_body","ClientList","clients","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["consulting","_body","ClientList","clients","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["consulting","_body","ClientList","clients","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["consulting","_body","ClientList","clients","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["consulting","_body","ClientList","clients","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["consulting","_body","ClientList","clients","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["consulting","_body","ClientList","clients","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["consulting","_body","ClientList","clients","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["consulting","_body","ClientList","clients","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["consulting","_body","ClientList","clients","content","CustomImage","sizes"]}],"namespace":["caseStudy","content","ClientList","clients","content","CustomImage"]},{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["consulting","_body","ClientList","clients","content","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["consulting","_body","ClientList","clients","content","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["videoProduction","_body","ClientList","clients","content","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["videoProduction","_body","ClientList","clients","content","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["videoProduction","_body","ClientList","clients","content","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["videoProduction","_body","ClientList","clients","content","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["videoProduction","_body","ClientList","clients","content","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["videoProduction","_body","ClientList","clients","content","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["videoProduction","_body","ClientList","clients","content","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["videoProduction","_body","ClientList","clients","content","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["videoProduction","_body","ClientList","clients","content","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["videoProduction","_body","ClientList","clients","content","ContentCard","content","CustomImage","sizes"]}],"namespace":["consulting","afterBody","ClientList","clients","content","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["videoProduction","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["videoProduction","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["videoProduction","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["videoProduction","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["videoProduction","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["consulting","afterBody","ClientList","clients","content","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["videoProduction","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["videoProduction","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["videoProduction","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["videoProduction","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["videoProduction","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["videoProduction","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["videoProduction","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","duration"]}],"namespace":["consulting","afterBody","ClientList","clients","content","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["videoProduction","_body","ClientList","clients","content","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["videoProduction","_body","ClientList","clients","content","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["videoProduction","afterBody","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["videoProduction","afterBody","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["videoProduction","afterBody","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["videoProduction","afterBody","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["videoProduction","afterBody","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["videoProduction","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["consulting","afterBody","ClientList","clients","content","ContentCard","content","ColorBlock"]}],"namespace":["consulting","_body","ClientList","clients","content","ContentCard","content"]}],"namespace":["caseStudy","content","ClientList","clients","content","ContentCard"]}],"namespace":["caseStudy","_body","ClientList","clients","content"]},{"type":"string","name":"caseStudyUrl","label":"Case study URL","namespace":["caseStudy","_body","ClientList","clients","caseStudyUrl"]},{"type":"object","name":"categories","label":"Categories","list":true,"ui":{},"fields":[{"type":"reference","name":"category","label":"Category","collections":["clientCategories"],"namespace":["caseStudy","content","ClientList","clients","categories","category"]}],"namespace":["caseStudy","_body","ClientList","clients","categories"]}],"namespace":["company","_body","ClientList","clients"],"searchable":true,"uid":false}],"namespace":["company","_body","ClientList"]},{"name":"ClientLogos","label":"Client Logos","ui":{"previewSrc":"/images/thumbs/tina/client-logos.jpg"},"fields":[{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["company","_body","ClientLogos","altText"],"searchable":true,"uid":false}],"namespace":["company","_body","ClientLogos"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["company","_body","ColorBlock","title"],"searchable":true,"uid":false},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["company","_body","ColorBlock","subTitle"],"searchable":true,"uid":false},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["caseStudy","_body","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["caseStudy","_body","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["caseStudy","_body","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["caseStudy","_body","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["caseStudy","_body","ColorBlock","colorRow","caption"]}],"namespace":["company","_body","ColorBlock","colorRow"],"searchable":true,"uid":false}],"namespace":["company","_body","ColorBlock"]},{"name":"ColorPalette","label":"Color Palette","ui":{"previewSrc":"/images/thumbs/tina/color-palette.jpg"},"fields":[{"type":"string","label":"Name","name":"name","namespace":["company","_body","ColorPalette","name"],"searchable":true,"uid":false}],"namespace":["company","_body","ColorPalette"]},{"name":"Content","label":"Content","ui":{"previewSrc":"/images/thumbs/tina/content.jpg","defaultItem":{"body":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["company","_body","Content","title"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["caseStudy","content","Content","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["caseStudy","content","Content","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["caseStudy","content","Content","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["caseStudy","content","Content","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["caseStudy","content","Content","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["caseStudy","content","Content","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["caseStudy","content","Content","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["caseStudy","content","Content","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["caseStudy","content","Content","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["caseStudy","content","Content","content","CustomImage","sizes"]}],"namespace":["caseStudy","_body","Content","content","CustomImage"]},{"name":"ClientLogos","label":"Client Logos","ui":{"previewSrc":"/images/thumbs/tina/client-logos.jpg"},"fields":[{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["caseStudy","content","Content","content","ClientLogos","altText"]}],"namespace":["caseStudy","_body","Content","content","ClientLogos"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["caseStudy","content","Content","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["caseStudy","content","Content","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["caseStudy","content","Content","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["caseStudy","content","Content","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["caseStudy","content","Content","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["caseStudy","content","Content","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["caseStudy","content","Content","content","VideoEmbed","duration"]}],"namespace":["caseStudy","_body","Content","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["caseStudy","content","Content","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["caseStudy","content","Content","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["consulting","_body","Content","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["consulting","_body","Content","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["consulting","_body","Content","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["consulting","_body","Content","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["consulting","_body","Content","content","ColorBlock","colorRow","caption"]}],"namespace":["caseStudy","content","Content","content","ColorBlock","colorRow"]}],"namespace":["caseStudy","_body","Content","content","ColorBlock"]}],"namespace":["company","_body","Content","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Container Padding","name":"paddingClass","options":["Mobile: No Padding","Mobile: No Top and Horizontal Padding"],"namespace":["company","_body","Content","paddingClass"],"searchable":true,"uid":false},{"type":"string","label":"Text size","name":"size","options":[{"label":"small","value":"sm"},{"label":"normal","value":"base"},{"label":"large","value":"lg"},{"label":"extra large","value":"xl"},{"label":"2x large","value":"2xl"}],"namespace":["company","_body","Content","size"],"searchable":true,"uid":false},{"type":"string","label":"Align","name":"align","options":[{"label":"Left","value":"left"},{"label":"Center","value":"center"},{"label":"Right","value":"right"}],"namespace":["company","_body","Content","align"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["company","_body","Content","backgroundColor"],"searchable":true,"uid":false}],"namespace":["company","_body","Content"]},{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["company","_body","ContentCard","prose"],"searchable":true,"uid":false},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["company","_body","ContentCard","centerAlignedText"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["caseStudy","content","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["caseStudy","content","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["caseStudy","content","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["caseStudy","content","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["caseStudy","content","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["caseStudy","content","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["caseStudy","content","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["caseStudy","content","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["caseStudy","content","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["caseStudy","content","ContentCard","content","CustomImage","sizes"]}],"namespace":["caseStudy","_body","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["caseStudy","content","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["caseStudy","content","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["caseStudy","content","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["caseStudy","content","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["caseStudy","content","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["caseStudy","_body","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["caseStudy","content","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["caseStudy","content","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["caseStudy","content","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["caseStudy","content","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["caseStudy","content","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["caseStudy","content","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["caseStudy","content","ContentCard","content","VideoEmbed","duration"]}],"namespace":["caseStudy","_body","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["caseStudy","content","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["caseStudy","content","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["consulting","_body","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["consulting","_body","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["consulting","_body","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["consulting","_body","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["consulting","_body","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["caseStudy","content","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["caseStudy","_body","ContentCard","content","ColorBlock"]}],"namespace":["company","_body","ContentCard","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["company","_body","ContentCard"]},{"name":"CustomDownloadButton","label":"Custom Download Button","ui":{"previewSrc":"/images/thumbs/tina/custom-download-button.jpg"},"fields":[{"type":"string","label":"Text","name":"btnText","namespace":["company","_body","CustomDownloadButton","btnText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"btnLink","namespace":["company","_body","CustomDownloadButton","btnLink"],"searchable":true,"uid":false}],"namespace":["company","_body","CustomDownloadButton"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["company","_body","CustomImage","src"],"searchable":false,"uid":false},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["company","_body","CustomImage","altText"],"searchable":true,"uid":false},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["company","_body","CustomImage","alignment"],"searchable":true,"uid":false},{"type":"number","label":"Height","name":"height","required":true,"namespace":["company","_body","CustomImage","height"],"searchable":true,"uid":false},{"type":"number","label":"Width","name":"width","required":true,"namespace":["company","_body","CustomImage","width"],"searchable":true,"uid":false},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["company","_body","CustomImage","link"],"searchable":true,"uid":false},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["company","_body","CustomImage","customClass"],"searchable":true,"uid":false},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["company","_body","CustomImage","caption"],"searchable":true,"uid":false},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["company","_body","CustomImage","captionColor"],"searchable":true,"uid":false},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["company","_body","CustomImage","sizes"],"searchable":true,"uid":false}],"namespace":["company","_body","CustomImage"]},{"name":"DomainFromQuery","label":"Domain from query","ui":{"previewSrc":"/images/thumbs/tina/domain-from-query.jpg"},"fields":[{"name":"title","label":"Title","type":"string","description":"This is a H1 heading","namespace":["company","_body","DomainFromQuery","title"],"searchable":true,"uid":false},{"name":"showDomain","label":"Show domain name","type":"boolean","description":"Query param in URL must have key of 'domain'","namespace":["company","_body","DomainFromQuery","showDomain"],"searchable":true,"uid":false}],"namespace":["company","_body","DomainFromQuery"]},{"name":"DownloadBlock","label":"Download Block","ui":{"previewSrc":"/images/thumbs/tina/download-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["company","_body","DownloadBlock","title"],"searchable":true,"uid":false},{"type":"object","label":"Downloads","name":"downloads","ui":{},"list":true,"fields":[{"type":"string","label":"Header","name":"header","namespace":["caseStudy","_body","DownloadBlock","downloads","header"]},{"type":"image","label":"Image","name":"img","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","img","uploadDir"]},"namespace":["caseStudy","_body","DownloadBlock","downloads","img"]},{"type":"string","label":"Image Background","name":"imgBackground","options":["black","grey","white","darkgrey","darkgreen"],"namespace":["caseStudy","_body","DownloadBlock","downloads","imgBackground"]},{"type":"string","label":"First Link Text","name":"firstLinkText","description":"Defaults to PNG","namespace":["caseStudy","_body","DownloadBlock","downloads","firstLinkText"]},{"type":"image","label":"First Link","name":"firstLink","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","firstLink","uploadDir"]},"namespace":["caseStudy","_body","DownloadBlock","downloads","firstLink"]},{"type":"string","label":"Second Link Text","name":"secondLinkText","description":"Defaults to PDF","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","secondLinkText","uploadDir"]},"namespace":["caseStudy","_body","DownloadBlock","downloads","secondLinkText"]},{"type":"image","label":"Second Link","name":"secondLink","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","secondLink","uploadDir"]},"namespace":["caseStudy","_body","DownloadBlock","downloads","secondLink"]}],"namespace":["company","_body","DownloadBlock","downloads"],"searchable":true,"uid":false},{"type":"boolean","label":"Bottom border","name":"bottomBorder","namespace":["company","_body","DownloadBlock","bottomBorder"],"searchable":true,"uid":false}],"namespace":["company","_body","DownloadBlock"]},{"name":"DynamicColumns","label":"Dynamic Column Layout","fields":[{"type":"rich-text","label":"Column text body","name":"colBody","required":true,"namespace":["company","_body","DynamicColumns","colBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"number","label":"Number of columns","name":"colCount","required":true,"ui":{},"namespace":["company","_body","DynamicColumns","colCount"],"searchable":true,"uid":false}],"namespace":["company","_body","DynamicColumns"]},{"name":"EventBooking","label":"Events Booking","ui":{"previewSrc":"/images/thumbs/tina/events-booking.jpg"},"fields":[{"type":"number","label":"Duration (In Days)","name":"eventDurationInDays","required":true,"namespace":["company","_body","EventBooking","eventDurationInDays"],"searchable":true,"uid":false},{"type":"number","label":"Price","name":"price","required":true,"namespace":["company","_body","EventBooking","price"],"searchable":true,"uid":false},{"type":"number","label":"Discount Price","name":"discountPrice","namespace":["company","_body","EventBooking","discountPrice"],"searchable":true,"uid":false},{"type":"string","name":"gstText","label":"Select GST Option","options":["inc GST","+ GST"],"required":true,"namespace":["company","_body","EventBooking","gstText"],"searchable":true,"uid":false},{"type":"string","label":"Discount Note","name":"discountNote","namespace":["company","_body","EventBooking","discountNote"],"searchable":true,"uid":false},{"type":"object","label":"Event","name":"eventList","ui":{},"list":true,"fields":[{"type":"string","label":"City","name":"city","namespace":["caseStudy","_body","EventBooking","eventList","city"]},{"type":"datetime","label":"Start Date","name":"date","ui":{},"namespace":["caseStudy","_body","EventBooking","eventList","date"]},{"type":"string","label":"Booking URL","name":"bookingURL","namespace":["caseStudy","_body","EventBooking","eventList","bookingURL"]},{"type":"reference","label":"Location","name":"location","collections":["locations"],"namespace":["caseStudy","_body","EventBooking","eventList","location"]}],"namespace":["company","_body","EventBooking","eventList"],"searchable":true,"uid":false}],"namespace":["company","_body","EventBooking"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["caseStudy","content","EventLink","content","Flag","country"]}],"namespace":["caseStudy","_body","EventLink","content","Flag"]}],"namespace":["company","_body","EventLink","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Link","name":"link","namespace":["company","_body","EventLink","link"],"searchable":true,"uid":false},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["company","_body","EventLink","eventThumbnail"],"searchable":false,"uid":false},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["company","_body","EventLink","thumbnailAlt"],"searchable":true,"uid":false}],"namespace":["company","_body","EventLink"]},{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["company","_body","Flag","country"],"searchable":true,"uid":false}],"namespace":["company","_body","Flag"]},{"name":"FixedColumns","label":"Fixed Column Layout (2 columns)","ui":{"previewSrc":"/images/thumbs/tina/fixed-columns.jpg"},"fields":[{"type":"rich-text","label":"Header Section (Optional)","name":"headerSection","namespace":["company","_body","FixedColumns","headerSection"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"First column text","name":"firstColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["caseStudy","content","FixedColumns","firstColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["caseStudy","content","FixedColumns","firstColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["consulting","afterBody","FixedColumns","firstColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["consulting","afterBody","FixedColumns","firstColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["consulting","afterBody","FixedColumns","firstColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["consulting","afterBody","FixedColumns","firstColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["consulting","afterBody","FixedColumns","firstColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["consulting","afterBody","FixedColumns","firstColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["consulting","afterBody","FixedColumns","firstColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["consulting","afterBody","FixedColumns","firstColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["consulting","afterBody","FixedColumns","firstColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["consulting","afterBody","FixedColumns","firstColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["consulting","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["consulting","afterBody","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["consulting","afterBody","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["consulting","afterBody","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["consulting","afterBody","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["consulting","afterBody","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["consulting","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["consulting","afterBody","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["consulting","afterBody","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["consulting","afterBody","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["consulting","afterBody","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["consulting","afterBody","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["consulting","afterBody","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["consulting","afterBody","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["consulting","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["consulting","afterBody","FixedColumns","firstColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["consulting","afterBody","FixedColumns","firstColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["videoProduction","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["videoProduction","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["videoProduction","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["videoProduction","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["videoProduction","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["consulting","afterBody","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["consulting","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock"]}],"namespace":["caseStudy","content","FixedColumns","firstColBody","ContentCard","content"]}],"namespace":["caseStudy","_body","FixedColumns","firstColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["caseStudy","content","FixedColumns","firstColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["caseStudy","content","FixedColumns","firstColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["caseStudy","content","FixedColumns","firstColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["caseStudy","content","FixedColumns","firstColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["caseStudy","content","FixedColumns","firstColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["caseStudy","content","FixedColumns","firstColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["caseStudy","content","FixedColumns","firstColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["caseStudy","content","FixedColumns","firstColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["caseStudy","content","FixedColumns","firstColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["caseStudy","content","FixedColumns","firstColBody","CustomImage","sizes"]}],"namespace":["caseStudy","_body","FixedColumns","firstColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["consulting","afterBody","FixedColumns","firstColBody","EventLink","content","Flag","country"]}],"namespace":["consulting","_body","FixedColumns","firstColBody","EventLink","content","Flag"]}],"namespace":["caseStudy","content","FixedColumns","firstColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["caseStudy","content","FixedColumns","firstColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["caseStudy","content","FixedColumns","firstColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["caseStudy","content","FixedColumns","firstColBody","EventLink","thumbnailAlt"]}],"namespace":["caseStudy","_body","FixedColumns","firstColBody","EventLink"]}],"namespace":["company","_body","FixedColumns","firstColBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"Second column text","name":"secondColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["caseStudy","content","FixedColumns","secondColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["caseStudy","content","FixedColumns","secondColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["consulting","afterBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["consulting","afterBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["consulting","afterBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["consulting","afterBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["consulting","afterBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["consulting","afterBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["consulting","afterBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["consulting","afterBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["consulting","afterBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["consulting","afterBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["consulting","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["consulting","afterBody","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["consulting","afterBody","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["consulting","afterBody","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["consulting","afterBody","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["consulting","afterBody","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["consulting","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["consulting","afterBody","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["consulting","afterBody","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["consulting","afterBody","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["consulting","afterBody","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["consulting","afterBody","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["consulting","afterBody","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["consulting","afterBody","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["consulting","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["consulting","afterBody","FixedColumns","secondColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["consulting","afterBody","FixedColumns","secondColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["videoProduction","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["videoProduction","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["videoProduction","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["videoProduction","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["videoProduction","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["consulting","afterBody","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["consulting","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock"]}],"namespace":["caseStudy","content","FixedColumns","secondColBody","ContentCard","content"]}],"namespace":["caseStudy","_body","FixedColumns","secondColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["caseStudy","content","FixedColumns","secondColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["caseStudy","content","FixedColumns","secondColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["caseStudy","content","FixedColumns","secondColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["caseStudy","content","FixedColumns","secondColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["caseStudy","content","FixedColumns","secondColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["caseStudy","content","FixedColumns","secondColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["caseStudy","content","FixedColumns","secondColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["caseStudy","content","FixedColumns","secondColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["caseStudy","content","FixedColumns","secondColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["caseStudy","content","FixedColumns","secondColBody","CustomImage","sizes"]}],"namespace":["caseStudy","_body","FixedColumns","secondColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["consulting","afterBody","FixedColumns","secondColBody","EventLink","content","Flag","country"]}],"namespace":["consulting","_body","FixedColumns","secondColBody","EventLink","content","Flag"]}],"namespace":["caseStudy","content","FixedColumns","secondColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["caseStudy","content","FixedColumns","secondColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["caseStudy","content","FixedColumns","secondColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["caseStudy","content","FixedColumns","secondColBody","EventLink","thumbnailAlt"]}],"namespace":["caseStudy","_body","FixedColumns","secondColBody","EventLink"]}],"namespace":["company","_body","FixedColumns","secondColBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["company","_body","FixedColumns"]},{"name":"FixedTabsLayout","label":"Fixed Tabs Layout","ui":{"previewSrc":"/images/thumbs/tina/fixed-tabs-layout.jpg"},"fields":[{"type":"string","name":"firstTab","label":"First Tab","namespace":["company","_body","FixedTabsLayout","firstTab"],"searchable":true,"uid":false},{"type":"rich-text","name":"firstHeading","label":"First Heading","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["caseStudy","content","FixedTabsLayout","firstHeading","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["caseStudy","content","FixedTabsLayout","firstHeading","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["caseStudy","content","FixedTabsLayout","firstHeading","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["caseStudy","content","FixedTabsLayout","firstHeading","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["caseStudy","content","FixedTabsLayout","firstHeading","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["caseStudy","content","FixedTabsLayout","firstHeading","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["caseStudy","content","FixedTabsLayout","firstHeading","VideoEmbed","duration"]}],"namespace":["caseStudy","_body","FixedTabsLayout","firstHeading","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["caseStudy","content","FixedTabsLayout","firstHeading","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["caseStudy","content","FixedTabsLayout","firstHeading","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["caseStudy","content","FixedTabsLayout","firstHeading","BookingButton","buttonSubtitle"]}],"namespace":["caseStudy","_body","FixedTabsLayout","firstHeading","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["caseStudy","content","FixedTabsLayout","firstHeading","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["consulting","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["consulting","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["consulting","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["consulting","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList","skills"]}],"namespace":["caseStudy","content","FixedTabsLayout","firstHeading","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["consulting","_body","FixedTabsLayout","firstHeading","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["consulting","_body","FixedTabsLayout","firstHeading","ExpertBlock","link","url"]}],"namespace":["caseStudy","content","FixedTabsLayout","firstHeading","ExpertBlock","link"]}],"namespace":["caseStudy","_body","FixedTabsLayout","firstHeading","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["consulting","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["consulting","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["consulting","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["consulting","afterBody","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["consulting","afterBody","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["consulting","afterBody","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["consulting","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["caseStudy","content","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["caseStudy","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["caseStudy","content","FixedTabsLayout","firstHeading","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["caseStudy","content","FixedTabsLayout","firstHeading","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["caseStudy","content","FixedTabsLayout","firstHeading","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["caseStudy","content","FixedTabsLayout","firstHeading","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["caseStudy","content","FixedTabsLayout","firstHeading","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["caseStudy","content","FixedTabsLayout","firstHeading","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["caseStudy","content","FixedTabsLayout","firstHeading","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["caseStudy","content","FixedTabsLayout","firstHeading","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["caseStudy","content","FixedTabsLayout","firstHeading","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["caseStudy","content","FixedTabsLayout","firstHeading","CustomImage","sizes"]}],"namespace":["caseStudy","_body","FixedTabsLayout","firstHeading","CustomImage"]}],"namespace":["company","_body","FixedTabsLayout","firstHeading"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","name":"firstBody","label":"First Body","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["caseStudy","content","FixedTabsLayout","firstBody","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["caseStudy","content","FixedTabsLayout","firstBody","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["caseStudy","content","FixedTabsLayout","firstBody","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["caseStudy","content","FixedTabsLayout","firstBody","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["caseStudy","content","FixedTabsLayout","firstBody","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["caseStudy","content","FixedTabsLayout","firstBody","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["caseStudy","content","FixedTabsLayout","firstBody","VideoEmbed","duration"]}],"namespace":["caseStudy","_body","FixedTabsLayout","firstBody","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["caseStudy","content","FixedTabsLayout","firstBody","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["caseStudy","content","FixedTabsLayout","firstBody","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["caseStudy","content","FixedTabsLayout","firstBody","BookingButton","buttonSubtitle"]}],"namespace":["caseStudy","_body","FixedTabsLayout","firstBody","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["caseStudy","content","FixedTabsLayout","firstBody","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["consulting","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["consulting","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["consulting","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["consulting","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList","skills"]}],"namespace":["caseStudy","content","FixedTabsLayout","firstBody","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["consulting","_body","FixedTabsLayout","firstBody","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["consulting","_body","FixedTabsLayout","firstBody","ExpertBlock","link","url"]}],"namespace":["caseStudy","content","FixedTabsLayout","firstBody","ExpertBlock","link"]}],"namespace":["caseStudy","_body","FixedTabsLayout","firstBody","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["consulting","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["consulting","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["consulting","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["consulting","afterBody","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["consulting","afterBody","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["consulting","afterBody","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["consulting","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["caseStudy","content","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["caseStudy","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["caseStudy","content","FixedTabsLayout","firstBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["caseStudy","content","FixedTabsLayout","firstBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["caseStudy","content","FixedTabsLayout","firstBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["caseStudy","content","FixedTabsLayout","firstBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["caseStudy","content","FixedTabsLayout","firstBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["caseStudy","content","FixedTabsLayout","firstBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["caseStudy","content","FixedTabsLayout","firstBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["caseStudy","content","FixedTabsLayout","firstBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["caseStudy","content","FixedTabsLayout","firstBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["caseStudy","content","FixedTabsLayout","firstBody","CustomImage","sizes"]}],"namespace":["caseStudy","_body","FixedTabsLayout","firstBody","CustomImage"]}],"namespace":["company","_body","FixedTabsLayout","firstBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","name":"secondTab","label":"Second Tab","namespace":["company","_body","FixedTabsLayout","secondTab"],"searchable":true,"uid":false},{"type":"rich-text","name":"secondHeading","label":"Second Heading","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["caseStudy","content","FixedTabsLayout","secondHeading","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["caseStudy","content","FixedTabsLayout","secondHeading","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["caseStudy","content","FixedTabsLayout","secondHeading","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["caseStudy","content","FixedTabsLayout","secondHeading","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["caseStudy","content","FixedTabsLayout","secondHeading","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["caseStudy","content","FixedTabsLayout","secondHeading","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["caseStudy","content","FixedTabsLayout","secondHeading","VideoEmbed","duration"]}],"namespace":["caseStudy","_body","FixedTabsLayout","secondHeading","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["caseStudy","content","FixedTabsLayout","secondHeading","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["caseStudy","content","FixedTabsLayout","secondHeading","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["caseStudy","content","FixedTabsLayout","secondHeading","BookingButton","buttonSubtitle"]}],"namespace":["caseStudy","_body","FixedTabsLayout","secondHeading","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["caseStudy","content","FixedTabsLayout","secondHeading","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["consulting","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["consulting","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["consulting","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["consulting","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList","skills"]}],"namespace":["caseStudy","content","FixedTabsLayout","secondHeading","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["consulting","_body","FixedTabsLayout","secondHeading","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["consulting","_body","FixedTabsLayout","secondHeading","ExpertBlock","link","url"]}],"namespace":["caseStudy","content","FixedTabsLayout","secondHeading","ExpertBlock","link"]}],"namespace":["caseStudy","_body","FixedTabsLayout","secondHeading","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["consulting","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["consulting","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["consulting","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["consulting","afterBody","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["consulting","afterBody","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["consulting","afterBody","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["consulting","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["caseStudy","content","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["caseStudy","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["caseStudy","content","FixedTabsLayout","secondHeading","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["caseStudy","content","FixedTabsLayout","secondHeading","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["caseStudy","content","FixedTabsLayout","secondHeading","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["caseStudy","content","FixedTabsLayout","secondHeading","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["caseStudy","content","FixedTabsLayout","secondHeading","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["caseStudy","content","FixedTabsLayout","secondHeading","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["caseStudy","content","FixedTabsLayout","secondHeading","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["caseStudy","content","FixedTabsLayout","secondHeading","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["caseStudy","content","FixedTabsLayout","secondHeading","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["caseStudy","content","FixedTabsLayout","secondHeading","CustomImage","sizes"]}],"namespace":["caseStudy","_body","FixedTabsLayout","secondHeading","CustomImage"]}],"namespace":["company","_body","FixedTabsLayout","secondHeading"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","name":"secondBody","label":"Second Body","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["caseStudy","content","FixedTabsLayout","secondBody","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["caseStudy","content","FixedTabsLayout","secondBody","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["caseStudy","content","FixedTabsLayout","secondBody","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["caseStudy","content","FixedTabsLayout","secondBody","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["caseStudy","content","FixedTabsLayout","secondBody","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["caseStudy","content","FixedTabsLayout","secondBody","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["caseStudy","content","FixedTabsLayout","secondBody","VideoEmbed","duration"]}],"namespace":["caseStudy","_body","FixedTabsLayout","secondBody","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["caseStudy","content","FixedTabsLayout","secondBody","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["caseStudy","content","FixedTabsLayout","secondBody","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["caseStudy","content","FixedTabsLayout","secondBody","BookingButton","buttonSubtitle"]}],"namespace":["caseStudy","_body","FixedTabsLayout","secondBody","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["caseStudy","content","FixedTabsLayout","secondBody","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["consulting","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["consulting","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["consulting","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["consulting","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList","skills"]}],"namespace":["caseStudy","content","FixedTabsLayout","secondBody","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["consulting","_body","FixedTabsLayout","secondBody","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["consulting","_body","FixedTabsLayout","secondBody","ExpertBlock","link","url"]}],"namespace":["caseStudy","content","FixedTabsLayout","secondBody","ExpertBlock","link"]}],"namespace":["caseStudy","_body","FixedTabsLayout","secondBody","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["consulting","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["consulting","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["consulting","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["consulting","afterBody","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["consulting","afterBody","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["consulting","afterBody","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["consulting","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["caseStudy","content","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["caseStudy","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["caseStudy","content","FixedTabsLayout","secondBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["caseStudy","content","FixedTabsLayout","secondBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["caseStudy","content","FixedTabsLayout","secondBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["caseStudy","content","FixedTabsLayout","secondBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["caseStudy","content","FixedTabsLayout","secondBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["caseStudy","content","FixedTabsLayout","secondBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["caseStudy","content","FixedTabsLayout","secondBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["caseStudy","content","FixedTabsLayout","secondBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["caseStudy","content","FixedTabsLayout","secondBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["caseStudy","content","FixedTabsLayout","secondBody","CustomImage","sizes"]}],"namespace":["caseStudy","_body","FixedTabsLayout","secondBody","CustomImage"]}],"namespace":["company","_body","FixedTabsLayout","secondBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["company","_body","FixedTabsLayout"]},{"label":"Google Maps","name":"GoogleMaps","ui":{"previewSrc":"/images/thumbs/tina/google-maps.jpg"},"fields":[{"type":"string","label":"URL","name":"embedUrl","required":true,"namespace":["company","_body","GoogleMaps","embedUrl"],"searchable":true,"uid":false},{"type":"string","label":"Width","name":"embedWidth","namespace":["company","_body","GoogleMaps","embedWidth"],"searchable":true,"uid":false},{"type":"string","label":"Height","name":"embedHeight","namespace":["company","_body","GoogleMaps","embedHeight"],"searchable":true,"uid":false}],"namespace":["company","_body","GoogleMaps"]},{"label":"Grid Layout","name":"GridLayout","ui":{"previewSrc":"/images/thumbs/tina/grid-layout.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["company","_body","GridLayout","title"],"searchable":true,"uid":false},{"type":"object","list":true,"label":"Grid Items","name":"grids","ui":{},"fields":[{"type":"string","label":"Grid Title","name":"gridTitle","namespace":["caseStudy","_body","GridLayout","grids","gridTitle"]},{"type":"boolean","label":"Show Grid Title","name":"showGridTitle","namespace":["caseStudy","_body","GridLayout","grids","showGridTitle"]},{"type":"boolean","label":"Centered Grid Title","name":"centeredGridTitle","namespace":["caseStudy","_body","GridLayout","grids","centeredGridTitle"]},{"type":"boolean","label":"Show Header Divider","name":"showHeaderDivider","namespace":["caseStudy","_body","GridLayout","grids","showHeaderDivider"]},{"type":"boolean","label":"Offset Grid Start","name":"offsetGridStart","namespace":["caseStudy","_body","GridLayout","grids","offsetGridStart"]},{"type":"object","label":"Blocks","name":"blocks","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["caseStudy","content","GridLayout","grids","blocks","title"]},{"type":"boolean","label":"Show Title","name":"showTitle","namespace":["caseStudy","content","GridLayout","grids","blocks","showTitle"]},{"type":"image","label":"Image","name":"image","uploadDir":{"namespace":["page","beforeBody","GridLayout","grids","blocks","image","uploadDir"]},"namespace":["caseStudy","content","GridLayout","grids","blocks","image"]},{"type":"image","label":"Related Image","name":"relatedImage","uploadDir":{"namespace":["page","beforeBody","GridLayout","grids","blocks","relatedImage","uploadDir"]},"namespace":["caseStudy","content","GridLayout","grids","blocks","relatedImage"]},{"type":"rich-text","name":"linkContent","label":"Link Content","templates":[{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["consulting","afterBody","GridLayout","grids","blocks","linkContent","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["consulting","afterBody","GridLayout","grids","blocks","linkContent","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["consulting","afterBody","GridLayout","grids","blocks","linkContent","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["consulting","afterBody","GridLayout","grids","blocks","linkContent","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["consulting","afterBody","GridLayout","grids","blocks","linkContent","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["consulting","afterBody","GridLayout","grids","blocks","linkContent","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["consulting","afterBody","GridLayout","grids","blocks","linkContent","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["consulting","afterBody","GridLayout","grids","blocks","linkContent","UtilityButton","openInNewTab"]}],"namespace":["consulting","_body","GridLayout","grids","blocks","linkContent","UtilityButton"]}],"namespace":["caseStudy","content","GridLayout","grids","blocks","linkContent"]}],"namespace":["caseStudy","_body","GridLayout","grids","blocks"]}],"namespace":["company","_body","GridLayout","grids"],"searchable":true,"uid":false}],"namespace":["company","_body","GridLayout"]},{"name":"Hero","label":"Hero","ui":{"previewSrc":"/blocks/hero.png","defaultItem":{"tagline":"Here's some text above the other text","headline":"This Big Text is Totally Awesome","text":"Phasellus scelerisque, libero eu finibus rutrum, risus risus accumsan libero, nec molestie urna dui a leo."}},"fields":[{"type":"string","label":"Tagline","name":"tagline","namespace":["company","_body","Hero","tagline"],"searchable":true,"uid":false},{"type":"string","label":"Headline","name":"headline","namespace":["company","_body","Hero","headline"],"searchable":true,"uid":false},{"label":"Text","name":"text","type":"rich-text","namespace":["company","_body","Hero","text"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"label":"Actions","name":"actions","type":"object","list":true,"ui":{"defaultItem":{"label":"Action Label","type":"button","icon":true,"link":"/"}},"fields":[{"label":"Label","name":"label","type":"string","namespace":["caseStudy","_body","Hero","actions","label"]},{"label":"Type","name":"type","type":"string","options":[{"label":"Button","value":"button"},{"label":"Link","value":"link"}],"namespace":["caseStudy","_body","Hero","actions","type"]},{"label":"Icon","name":"icon","type":"boolean","namespace":["caseStudy","_body","Hero","actions","icon"]},{"label":"Link","name":"link","type":"string","namespace":["caseStudy","_body","Hero","actions","link"]}],"namespace":["company","_body","Hero","actions"],"searchable":true,"uid":false},{"type":"object","label":"Image","name":"image","fields":[{"name":"src","label":"Image Source","type":"image","namespace":["caseStudy","_body","Hero","image","src"]},{"name":"alt","label":"Alt Text","type":"string","namespace":["caseStudy","_body","Hero","image","alt"]}],"namespace":["company","_body","Hero","image"],"searchable":true,"uid":false},{"type":"string","label":"Color","name":"color","options":[{"label":"Default","value":"default"},{"label":"Tint","value":"tint"},{"label":"Primary","value":"primary"}],"namespace":["company","_body","Hero","color"],"searchable":true,"uid":false}],"namespace":["company","_body","Hero"]},{"name":"HorizontalCard","label":"Horizontal Card","ui":{"previewSrc":"/images/thumbs/tina/horizontal-card.jpg"},"fields":[{"type":"object","label":"Cards","name":"cardList","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["caseStudy","_body","HorizontalCard","cardList","title"]},{"type":"rich-text","label":"Content","name":"content","namespace":["caseStudy","_body","HorizontalCard","cardList","content"]},{"type":"image","label":"Thumbnail","name":"thumbnail","uploadDir":{"namespace":["page","beforeBody","HorizontalCard","cardList","thumbnail","uploadDir"]},"namespace":["caseStudy","_body","HorizontalCard","cardList","thumbnail"]},{"type":"string","label":"Link","name":"link","namespace":["caseStudy","_body","HorizontalCard","cardList","link"]}],"namespace":["company","_body","HorizontalCard","cardList"],"searchable":true,"uid":false},{"type":"object","label":"Button","name":"button","fields":[{"type":"string","label":"Text","name":"text","namespace":["caseStudy","_body","HorizontalCard","button","text"]},{"type":"string","label":"Link","name":"link","namespace":["caseStudy","_body","HorizontalCard","button","link"]}],"namespace":["company","_body","HorizontalCard","button"],"searchable":true,"uid":false}],"namespace":["company","_body","HorizontalCard"]},{"name":"InternalCarousel","label":"Internal Carousel","ui":{"previewSrc":"/images/thumbs/tina/internal-carousel.jpg"},"fields":[{"label":"Images","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Image description"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["caseStudy","_body","InternalCarousel","items","label"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","InternalCarousel","items","imgSrc","uploadDir"]},"namespace":["caseStudy","_body","InternalCarousel","items","imgSrc"]}],"namespace":["company","_body","InternalCarousel","items"],"searchable":true,"uid":false},{"type":"string","label":"Header","name":"header","namespace":["company","_body","InternalCarousel","header"],"searchable":true,"uid":false},{"type":"rich-text","label":"Text","name":"paragraph","isBody":false,"namespace":["company","_body","InternalCarousel","paragraph"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Website","name":"website","namespace":["company","_body","InternalCarousel","website"],"searchable":true,"uid":false},{"type":"object","label":"Technologies","name":"technologies","list":true,"ui":{},"fields":[{"type":"string","label":"Name","name":"name","namespace":["caseStudy","_body","InternalCarousel","technologies","name"]}],"namespace":["company","_body","InternalCarousel","technologies"],"searchable":true,"uid":false},{"type":"string","label":"Case Study","name":"caseStudyUrl","namespace":["company","_body","InternalCarousel","caseStudyUrl"],"searchable":true,"uid":false},{"type":"string","label":"Video URL","name":"videoUrl","namespace":["company","_body","InternalCarousel","videoUrl"],"searchable":true,"uid":false}],"namespace":["company","_body","InternalCarousel"]},{"label":"Join As Presenter","name":"joinAsPresenter","fields":[{"label":"Learn More Link","name":"link","type":"string","namespace":["company","_body","joinAsPresenter","link"],"searchable":true,"uid":false},{"label":"Image","name":"img","type":"image","namespace":["company","_body","joinAsPresenter","img"],"searchable":false,"uid":false}],"namespace":["company","_body","joinAsPresenter"]},{"label":"Join Github","name":"joinGithub","ui":{"previewSrc":"/images/thumbs/tina/join-github.jpg"},"fields":[{"label":"Title","name":"title","type":"string","namespace":["company","_body","joinGithub","title"],"searchable":true,"uid":false},{"label":"Join Github Link","name":"link","type":"string","namespace":["company","_body","joinGithub","link"],"searchable":true,"uid":false}],"namespace":["company","_body","joinGithub"]},{"name":"JotFormEmbed","label":"JotForm Embed","ui":{"previewSrc":"/images/thumbs/tina/jotform-embed.jpg"},"fields":[{"type":"string","name":"jotFormId","label":"JotForm Id","required":true,"namespace":["company","_body","JotFormEmbed","jotFormId"],"searchable":true,"uid":false},{"type":"string","label":"Button Text","name":"buttonText","namespace":["company","_body","JotFormEmbed","buttonText"],"searchable":true,"uid":false},{"type":"string","name":"containerClass","label":"Container Class","namespace":["company","_body","JotFormEmbed","containerClass"],"searchable":true,"uid":false},{"type":"string","label":"Button Class","name":"buttonClass","namespace":["company","_body","JotFormEmbed","buttonClass"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","namespace":["company","_body","JotFormEmbed","animated"],"searchable":true,"uid":false}],"namespace":["company","_body","JotFormEmbed"]},{"name":"LatestTech","label":"Latest Tech","ui":{"previewSrc":"/images/thumbs/tina/latest-tech.jpg"},"fields":[{"type":"reference","description":"Select a config file including a set of badges","collections":["userGroupGlobal"],"label":"Badges","name":"badges","namespace":["company","_body","LatestTech","badges"],"searchable":true,"uid":false}],"namespace":["company","_body","LatestTech"]},{"name":"LocationBlock","label":"Locations","ui":{"previewSrc":"/images/thumbs/tina/locations.jpg"},"fields":[{"type":"string","name":"title","label":"Title","namespace":["company","_body","LocationBlock","title"],"searchable":true,"uid":false},{"type":"object","label":"Location List","name":"locationList","list":true,"ui":{},"fields":[{"type":"reference","collections":["locations"],"label":"Location","name":"location","namespace":["caseStudy","_body","LocationBlock","locationList","location"]}],"namespace":["company","_body","LocationBlock","locationList"],"searchable":true,"uid":false},{"type":"object","name":"chapelWebsite","label":"Chapel Website","fields":[{"type":"string","name":"title","label":"Text","namespace":["caseStudy","_body","LocationBlock","chapelWebsite","title"]},{"type":"string","name":"URL","label":"URL","namespace":["caseStudy","_body","LocationBlock","chapelWebsite","URL"]}],"namespace":["company","_body","LocationBlock","chapelWebsite"],"searchable":true,"uid":false}],"namespace":["company","_body","LocationBlock"]},{"name":"NewslettersTable","label":"Newsletters Table","ui":{"previewSrc":"/images/thumbs/tina/newsletters-table.jpg"},"fields":[{"type":"string","label":"Header text","name":"headerText","namespace":["company","_body","NewslettersTable","headerText"],"searchable":true,"uid":false}],"namespace":["company","_body","NewslettersTable"]},{"label":"Organizer","name":"organizer","fields":[{"type":"image","label":"Profile Image","name":"profileImg","namespace":["company","_body","organizer","profileImg"],"searchable":false,"uid":false},{"type":"string","label":"Profile Link","name":"profileLink","namespace":["company","_body","organizer","profileLink"],"searchable":true,"uid":false},{"type":"string","label":"Name","name":"name","namespace":["company","_body","organizer","name"],"searchable":true,"uid":false},{"type":"string","label":"Position","name":"position","namespace":["company","_body","organizer","position"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","namespace":["company","_body","organizer","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["company","_body","organizer"]},{"label":"Payment Block","name":"paymentBlock","ui":{"previewSrc":"/images/thumbs/tina/payment-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["company","_body","paymentBlock","title"],"searchable":true,"uid":false},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["company","_body","paymentBlock","subTitle"],"searchable":true,"uid":false},{"type":"reference","label":"Payment Links","name":"payments","collections":["paymentDetails"],"namespace":["company","_body","paymentBlock","payments"],"searchable":true,"uid":false},{"type":"rich-text","label":"Footer","name":"footer","namespace":["company","_body","paymentBlock","footer"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"image","label":"Credit Cards Image","name":"creditImgSrc","namespace":["company","_body","paymentBlock","creditImgSrc"],"searchable":false,"uid":false},{"type":"string","label":"Alt Text","name":"altTxt","namespace":["company","_body","paymentBlock","altTxt"],"searchable":true,"uid":false}],"namespace":["company","_body","paymentBlock"]},{"name":"PresenterBlock","label":"Presenters","ui":{"previewSrc":"/images/thumbs/tina/presenters.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["company","_body","PresenterBlock","header"],"searchable":true,"uid":false},{"type":"object","name":"presenterList","label":"Presenters","list":true,"ui":{},"fields":[{"type":"reference","name":"presenter","label":"Presenters","collections":["presenter"],"namespace":["caseStudy","_body","PresenterBlock","presenterList","presenter"]}],"namespace":["company","_body","PresenterBlock","presenterList"],"searchable":true,"uid":false},{"type":"object","label":"Other Events","name":"otherEvent","fields":[{"type":"string","label":"Title","name":"title","namespace":["caseStudy","_body","PresenterBlock","otherEvent","title"]},{"type":"string","label":"URL","name":"eventURL","namespace":["caseStudy","_body","PresenterBlock","otherEvent","eventURL"]}],"namespace":["company","_body","PresenterBlock","otherEvent"],"searchable":true,"uid":false}],"namespace":["company","_body","PresenterBlock"]},{"label":"Recurring Event","name":"RecurringEvent","ui":{"previewSrc":"/images/thumbs/tina/recurring-event.jpg"},"fields":[{"type":"string","label":"Apply Link Redirect","name":"applyLinkRedirect","namespace":["company","_body","RecurringEvent","applyLinkRedirect"],"searchable":true,"uid":false},{"type":"string","label":"Day","name":"day","options":[{"label":"Monday","value":"monday"},{"label":"Tuesday","value":"tuesday"},{"label":"Wednesday","value":"wednesday"},{"label":"Thursday","value":"thursday"},{"label":"Friday","value":"friday"},{"label":"Saturday","value":"saturday"},{"label":"Sunday","value":"sunday"}],"required":true,"namespace":["company","_body","RecurringEvent","day"],"searchable":true,"uid":false}],"namespace":["company","_body","RecurringEvent"]},{"name":"SectionHeader","label":"Section Header","ui":{"previewSrc":"/images/thumbs/tina/section-header.jpg"},"fields":[{"type":"string","label":"Header Text","name":"headerText","namespace":["company","_body","SectionHeader","headerText"],"searchable":true,"uid":false}],"namespace":["company","_body","SectionHeader"]},{"name":"ServiceCards","label":"Service Cards","ui":{"previewSrc":"/images/thumbs/tina/services-cards.jpg"},"fields":[{"type":"string","label":"Big Cards Label","name":"bigCardsLabel","namespace":["company","_body","ServiceCards","bigCardsLabel"],"searchable":true,"uid":false},{"label":"Big Cards","name":"bigCards","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["caseStudy","_body","ServiceCards","bigCards","title"]},{"type":"string","label":"Description","component":"textarea","name":"description","namespace":["caseStudy","_body","ServiceCards","bigCards","description"]},{"type":"string","label":"URL","name":"link","namespace":["caseStudy","_body","ServiceCards","bigCards","link"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Red","value":"red"},{"label":"Light Gray","value":"lightgray"},{"label":"Medium Gray","value":"mediumgray"},{"label":"Dark Gray","value":"darkgray"}],"namespace":["caseStudy","_body","ServiceCards","bigCards","color"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","ServiceCards","bigCards","imgSrc","uploadDir"]},"namespace":["caseStudy","_body","ServiceCards","bigCards","imgSrc"]}],"namespace":["company","_body","ServiceCards","bigCards"],"searchable":true,"uid":false},{"type":"string","label":"Small Cards Label","name":"smallCardsLabel","namespace":["company","_body","ServiceCards","smallCardsLabel"],"searchable":true,"uid":false},{"label":"Small Cards","name":"smallCards","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["caseStudy","_body","ServiceCards","smallCards","title"]},{"type":"string","label":"URL","name":"link","namespace":["caseStudy","_body","ServiceCards","smallCards","link"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Red","value":"red"},{"label":"Light Gray","value":"lightgray"},{"label":"Medium Gray","value":"mediumgray"},{"label":"Dark Gray","value":"darkgray"}],"namespace":["caseStudy","_body","ServiceCards","smallCards","color"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","ServiceCards","smallCards","imgSrc","uploadDir"]},"namespace":["caseStudy","_body","ServiceCards","smallCards","imgSrc"]},{"type":"boolean","label":"External Page","description":"Select this if the link is not part of the website. This includes SSW.Rules, and SSW.People links","name":"isExternal","namespace":["caseStudy","_body","ServiceCards","smallCards","isExternal"]}],"namespace":["company","_body","ServiceCards","smallCards"],"searchable":true,"uid":false},{"label":"Links","name":"links","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["caseStudy","_body","ServiceCards","links","label"]},{"type":"string","label":"URL","name":"link","namespace":["caseStudy","_body","ServiceCards","links","link"]}],"namespace":["company","_body","ServiceCards","links"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["company","_body","ServiceCards","backgroundColor"],"searchable":true,"uid":false}],"namespace":["company","_body","ServiceCards"]},{"label":"Table Layout","name":"TableLayout","ui":{"previewSrc":"/images/thumbs/tina/table-layout.jpg"},"fields":[{"label":"Table Style","name":"tableStyle","type":"string","options":["none","basicBorder","styled","benefits"],"namespace":["company","_body","TableLayout","tableStyle"],"searchable":true,"uid":false},{"label":"First column bolded + left aligned","name":"firstColBold","type":"boolean","required":false,"namespace":["company","_body","TableLayout","firstColBold"],"searchable":true,"uid":false},{"type":"string","label":"Table Headers","name":"headers","list":true,"namespace":["company","_body","TableLayout","headers"],"searchable":true,"uid":false},{"type":"object","label":"Rows","name":"rows","list":true,"fields":[{"type":"object","label":"Cells","name":"cells","list":true,"fields":[{"type":"string","label":"Value","name":"cellValue","required":true,"component":{"namespace":["page","beforeBody","TableLayout","rows","cells","cellValue",""]},"namespace":["caseStudy","content","TableLayout","rows","cells","cellValue"]}],"ui":{},"namespace":["caseStudy","_body","TableLayout","rows","cells"]},{"type":"boolean","label":"Is Heading","name":"isHeader","required":false,"namespace":["caseStudy","_body","TableLayout","rows","isHeader"]}],"ui":{},"namespace":["company","_body","TableLayout","rows"],"searchable":true,"uid":false}],"namespace":["company","_body","TableLayout"]},{"name":"TestimonialsList","label":"Testimonials List","ui":{"previewSrc":"/images/thumbs/tina/testimonials.jpg"},"fields":[{"type":"object","label":"Exclude Categories","name":"excludedCategories","ui":{},"list":true,"fields":[{"type":"reference","label":"Category Name","name":"categoryName","collections":["testimonialCategories"],"namespace":["caseStudy","_body","TestimonialsList","excludedCategories","categoryName"]}],"namespace":["company","_body","TestimonialsList","excludedCategories"],"searchable":true,"uid":false}],"namespace":["company","_body","TestimonialsList"]},{"label":"Training Information","name":"TrainingInformation","ui":{"previewSrc":"/images/thumbs/tina/training-information.jpg"},"fields":[{"type":"object","label":"Training Information Items","name":"trainingInformationItems","list":true,"fields":[{"type":"string","label":"Header","name":"header","namespace":["caseStudy","_body","TrainingInformation","trainingInformationItems","header"]},{"type":"rich-text","label":"Body","name":"body","templates":[{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["consulting","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["consulting","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["consulting","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["consulting","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["consulting","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","afterBody"]}],"namespace":["caseStudy","content","TrainingInformation","trainingInformationItems","body","VerticalListItem"]},{"label":"Recurring Event","name":"RecurringEvent","ui":{"previewSrc":"/images/thumbs/tina/recurring-event.jpg"},"fields":[{"type":"string","label":"Apply Link Redirect","name":"applyLinkRedirect","namespace":["consulting","_body","TrainingInformation","trainingInformationItems","body","RecurringEvent","applyLinkRedirect"]},{"type":"string","label":"Day","name":"day","options":[{"label":"Monday","value":"monday"},{"label":"Tuesday","value":"tuesday"},{"label":"Wednesday","value":"wednesday"},{"label":"Thursday","value":"thursday"},{"label":"Friday","value":"friday"},{"label":"Saturday","value":"saturday"},{"label":"Sunday","value":"sunday"}],"required":true,"namespace":["consulting","_body","TrainingInformation","trainingInformationItems","body","RecurringEvent","day"]}],"namespace":["caseStudy","content","TrainingInformation","trainingInformationItems","body","RecurringEvent"]}],"namespace":["caseStudy","_body","TrainingInformation","trainingInformationItems","body"]}],"namespace":["company","_body","TrainingInformation","trainingInformationItems"],"searchable":true,"uid":false}],"namespace":["company","_body","TrainingInformation"]},{"label":"Training Learning Outcomes","name":"TrainingLearningOutcome","ui":{"previewSrc":"/images/thumbs/tina/training-learning-outcomes.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["company","_body","TrainingLearningOutcome","header"],"searchable":true,"uid":false},{"type":"object","label":"List Items","name":"listItems","list":true,"fields":[{"type":"string","label":"Title","name":"title","namespace":["caseStudy","_body","TrainingLearningOutcome","listItems","title"]},{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["caseStudy","_body","TrainingLearningOutcome","listItems","content"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","TrainingLearningOutcome","listItems","icon","uploadDir"]},"namespace":["caseStudy","_body","TrainingLearningOutcome","listItems","icon"]}],"namespace":["company","_body","TrainingLearningOutcome","listItems"],"searchable":true,"uid":false}],"namespace":["company","_body","TrainingLearningOutcome"]},{"label":"Tweet Embed","name":"TweetEmbed","ui":{"previewSrc":"/images/thumbs/tina/tweet-embed.jpg"},"fields":[{"type":"string","name":"url","label":"Tweet URL","required":true,"namespace":["company","_body","TweetEmbed","url"],"searchable":true,"uid":false}],"namespace":["company","_body","TweetEmbed"]},{"name":"UpcomingEvents","label":"Upcoming Events","ui":{"previewSrc":"/images/thumbs/tina/upcoming-events.jpg","defaultItem":{"title":"Upcoming Events","numberOfEvents":30}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["company","_body","UpcomingEvents","title"],"searchable":true,"uid":false},{"type":"number","label":"Number of Events","name":"numberOfEvents","namespace":["company","_body","UpcomingEvents","numberOfEvents"],"searchable":true,"uid":false}],"namespace":["company","_body","UpcomingEvents"]},{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["company","_body","UtilityButton","buttonText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"link","required":false,"namespace":["company","_body","UtilityButton","link"],"searchable":true,"uid":false},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["company","_body","UtilityButton","size"],"searchable":true,"uid":false},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["company","_body","UtilityButton","btnIcon"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["company","_body","UtilityButton","animated"],"searchable":true,"uid":false},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["company","_body","UtilityButton","uncentered"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["company","_body","UtilityButton","removeTopMargin"],"searchable":true,"uid":false},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["company","_body","UtilityButton","openInNewTab"],"searchable":true,"uid":false}],"namespace":["company","_body","UtilityButton"]},{"name":"VerticalImageLayout","label":"Vertical Image Layout","fields":[{"type":"image","label":"Image","name":"imageSrc","uploadDir":{"namespace":["page","beforeBody","VerticalImageLayout","imageSrc","uploadDir"]},"namespace":["company","_body","VerticalImageLayout","imageSrc"],"searchable":false,"uid":false},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["company","_body","VerticalImageLayout","altText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"imageLink","namespace":["company","_body","VerticalImageLayout","imageLink"],"searchable":true,"uid":false},{"type":"number","label":"Height","name":"height","required":true,"namespace":["company","_body","VerticalImageLayout","height"],"searchable":true,"uid":false},{"type":"number","label":"Width","name":"width","required":true,"namespace":["company","_body","VerticalImageLayout","width"],"searchable":true,"uid":false},{"type":"rich-text","label":"Message","name":"message","required":true,"namespace":["company","_body","VerticalImageLayout","message"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["company","_body","VerticalImageLayout","sizes"],"searchable":true,"uid":false}],"namespace":["company","_body","VerticalImageLayout"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["company","_body","VerticalListItem","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"number","label":"Index number","name":"index","namespace":["company","_body","VerticalListItem","index"],"searchable":true,"uid":false},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["company","_body","VerticalListItem","icon"],"searchable":false,"uid":false},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["company","_body","VerticalListItem","iconScale"],"searchable":true,"uid":false},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["company","_body","VerticalListItem","afterBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["company","_body","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["company","_body","VideoEmbed","url"],"searchable":true,"uid":false},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["company","_body","VideoEmbed","videoWidth"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["company","_body","VideoEmbed","removeMargin"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["company","_body","VideoEmbed","uncentre"],"searchable":true,"uid":false},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["company","_body","VideoEmbed","overflow"],"searchable":true,"uid":false},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["company","_body","VideoEmbed","caption"],"searchable":true,"uid":false},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["company","_body","VideoEmbed","duration"],"searchable":true,"uid":false}],"namespace":["company","_body","VideoEmbed"]},{"name":"InlineJotForm","label":"In-line JotForm","ui":{"previewSrc":"/images/thumbs/tina/inline-jot-form.jpg"},"fields":[{"type":"string","name":"title","label":"Title","description":"Optional title for JotForm","namespace":["company","_body","InlineJotForm","title"],"searchable":true,"uid":false},{"type":"string","name":"jotFormId","label":"JotForm ID","required":true,"namespace":["company","_body","InlineJotForm","jotFormId"],"searchable":true,"uid":false},{"type":"string","name":"additionalClasses","label":"Additional classnames","description":"Optional styling for iframe element only","namespace":["company","_body","InlineJotForm","additionalClasses"],"searchable":true,"uid":false}],"namespace":["company","_body","InlineJotForm"]}],"ui":{"visualSelector":true},"namespace":["company","_body"],"searchable":true,"uid":false},{"type":"object","label":"History Cards","description":"Cards for the timeline on the History page.","name":"historyCards","ui":{},"list":true,"fields":[{"type":"number","label":"Year","name":"year","namespace":["company","historyCards","year"],"searchable":true,"uid":false},{"type":"string","label":"Title","name":"title","namespace":["company","historyCards","title"],"searchable":true,"uid":false},{"type":"string","label":"Location","name":"location","options":[{"value":"Australia","label":"Australia"},{"value":"France","label":"France"},{"value":"China","label":"China"}],"namespace":["company","historyCards","location"],"searchable":true,"uid":false},{"type":"rich-text","label":"Description","name":"description","namespace":["company","historyCards","description"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["company","historyCards"],"searchable":true,"uid":false}],"namespace":["company"]},{"label":"Company - Client Categories","name":"clientCategories","path":"content/company/clientCategories","format":"json","fields":[{"type":"string","label":"Name","name":"name","namespace":["clientCategories","name"],"searchable":true,"uid":false}],"namespace":["clientCategories"]},{"label":"Company - Payment Details","name":"paymentDetails","format":"mdx","path":"content/payments","fields":[{"type":"string","name":"tip","label":"Tip","ui":{},"namespace":["paymentDetails","tip"],"searchable":true,"uid":false},{"type":"string","label":"Bank Name","name":"bankName","namespace":["paymentDetails","bankName"],"searchable":true,"uid":false},{"type":"string","label":"Account Name","name":"accountName","namespace":["paymentDetails","accountName"],"searchable":true,"uid":false},{"type":"string","label":"BSB Number","name":"bsbNumber","namespace":["paymentDetails","bsbNumber"],"searchable":true,"uid":false},{"type":"string","label":"Account Number","name":"accountNumber","namespace":["paymentDetails","accountNumber"],"searchable":true,"uid":false},{"type":"string","label":"SWIFT Number","name":"swiftNumber","namespace":["paymentDetails","swiftNumber"],"searchable":true,"uid":false},{"type":"string","label":"ABN","name":"abn","namespace":["paymentDetails","abn"],"searchable":true,"uid":false},{"type":"string","label":"ACN","name":"acn","namespace":["paymentDetails","acn"],"searchable":true,"uid":false}],"namespace":["paymentDetails"]},{"name":"caseStudy","label":"Company - Case Studies","format":"mdx","path":"content/company/case-study","ui":{},"fields":[{"type":"string","name":"tip","label":"Tip","ui":{},"namespace":["caseStudy","tip"],"searchable":true,"uid":false},{"type":"object","label":"SEO Values","name":"seo","fields":[{"type":"string","label":"Title (70 characters)","name":"title","ui":{},"namespace":["caseStudy","seo","title"],"searchable":true,"uid":false},{"type":"string","label":"Description (150 characters)","name":"description","component":"textarea","ui":{},"namespace":["caseStudy","seo","description"],"searchable":true,"uid":false},{"type":"string","label":"Canonical URL","name":"canonical","namespace":["caseStudy","seo","canonical"],"searchable":true,"uid":false},{"type":"boolean","name":"showBreadcrumb","label":"Show Breadcrumb","namespace":["caseStudy","seo","showBreadcrumb"],"searchable":true,"uid":false},{"label":"Images","name":"images","list":true,"type":"object","ui":{"defaultItem":{"url":"/images/ssw-default-og.jpg","width":1200,"height":630,"alt":"SSW Consulting - Enterprise Software Development"}},"fields":[{"type":"image","label":"Image Url","name":"url","require":true,"namespace":["consultingIndex","seo","images","url"],"searchable":false,"uid":false},{"type":"number","label":"Width (px)","name":"width","namespace":["consultingIndex","seo","images","width"],"searchable":true,"uid":false},{"type":"number","label":"Height (px)","name":"height","namespace":["consultingIndex","seo","images","height"],"searchable":true,"uid":false},{"type":"string","label":"Image Alt Text","name":"alt","namespace":["consultingIndex","seo","images","alt"],"searchable":true,"uid":false}],"namespace":["caseStudy","seo","images"],"searchable":true,"uid":false}],"namespace":["caseStudy","seo"],"searchable":true,"uid":false},{"type":"string","label":"Heading","name":"heading","namespace":["caseStudy","heading"],"searchable":true,"uid":false},{"type":"string","label":"Sub Heading","name":"subHeading","namespace":["caseStudy","subHeading"],"searchable":true,"uid":false},{"type":"object","list":true,"name":"_body","label":"Body","ui":{"visualSelector":true},"templates":[{"name":"AboutUs","label":"About Us","ui":{"previewSrc":"/images/thumbs/tina/about-us.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["caseStudy","_body","AboutUs","backgroundColor"],"searchable":true,"uid":false},{"type":"boolean","label":"Show Map","name":"showMap","required":false,"namespace":["caseStudy","_body","AboutUs","showMap"],"searchable":true,"uid":false}],"namespace":["caseStudy","_body","AboutUs"]},{"label":"Agenda","name":"Agenda","ui":{"previewSrc":"/images/thumbs/tina/agenda.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["caseStudy","_body","Agenda","header"],"searchable":true,"uid":false},{"type":"string","label":"Header Color","name":"textColor","options":[{"label":"Red","value":"red"},{"label":"Gray","value":"gray"},{"label":"Default","value":"default"}],"namespace":["caseStudy","_body","Agenda","textColor"],"searchable":true,"uid":false},{"type":"object","label":"Agenda Items","name":"agendaItemList","ui":{},"list":true,"fields":[{"type":"string","label":"Placeholder Text","name":"placeholder","namespace":["caseStudy","content","Agenda","agendaItemList","placeholder"]},{"type":"rich-text","label":"Body","name":"body","templates":[{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["consulting","afterBody","Agenda","agendaItemList","body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["consulting","afterBody","Agenda","agendaItemList","body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["consulting","afterBody","Agenda","agendaItemList","body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["consulting","afterBody","Agenda","agendaItemList","body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["consulting","afterBody","Agenda","agendaItemList","body","VerticalListItem","afterBody"]}],"namespace":["consulting","_body","Agenda","agendaItemList","body","VerticalListItem"]}],"namespace":["caseStudy","content","Agenda","agendaItemList","body"]}],"namespace":["caseStudy","_body","Agenda","agendaItemList"],"searchable":true,"uid":false}],"namespace":["caseStudy","_body","Agenda"]},{"label":"Agreement Form","name":"AgreementForm","ui":{"previewSrc":"/images/thumbs/tina/agreement-form.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["caseStudy","_body","AgreementForm","backgroundColor"],"searchable":true,"uid":false},{"type":"object","label":"Form fields","name":"fields","list":true,"fields":[{"type":"string","label":"ID","name":"id","required":true,"namespace":["caseStudy","content","AgreementForm","fields","id"]},{"type":"string","label":"Label","name":"label","required":true,"namespace":["caseStudy","content","AgreementForm","fields","label"]},{"type":"string","label":"Placeholder","name":"placeholder","namespace":["caseStudy","content","AgreementForm","fields","placeholder"]},{"type":"boolean","label":"Resizeable","name":"resizeable","required":true,"namespace":["caseStudy","content","AgreementForm","fields","resizeable"]}],"namespace":["caseStudy","_body","AgreementForm","fields"],"searchable":true,"uid":false}],"namespace":["caseStudy","_body","AgreementForm"]},{"label":"Interest Form","name":"InterestForm","ui":{"previewSrc":"/images/thumbs/tina/interest-form.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["caseStudy","_body","InterestForm","buttonText"],"searchable":true,"uid":false}],"namespace":["caseStudy","_body","InterestForm"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["caseStudy","_body","BookingButton","buttonText"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","namespace":["caseStudy","_body","BookingButton","animated"],"searchable":true,"uid":false},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["caseStudy","_body","BookingButton","buttonSubtitle"],"searchable":true,"uid":false}],"namespace":["caseStudy","_body","BookingButton"]},{"name":"BuiltOnAzure","label":"Built on Azure","ui":{"previewSrc":"/images/thumbs/tina/built-on-azure.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["caseStudy","_body","BuiltOnAzure","backgroundColor"],"searchable":true,"uid":false}],"namespace":["caseStudy","_body","BuiltOnAzure"]},{"name":"Carousel","label":"Carousel","ui":{"previewSrc":"/images/thumbs/tina/carousel.jpg"},"fields":[{"label":"Items","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Item description","link":"/","openIn":"sameWindow"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["caseStudy","content","Carousel","items","label"]},{"type":"string","label":"URL","name":"link","description":"If link contains ssw.com.au, you can skip the full URL and just use the path. e.g. /services","namespace":["caseStudy","content","Carousel","items","link"]},{"type":"string","label":"Open in","name":"openIn","description":"If it is external link, please select 'New window' option.","options":[{"label":"Same window","value":"sameWindow"},{"label":"Modal","value":"modal"},{"label":"New window","value":"newWindow"}],"namespace":["caseStudy","content","Carousel","items","openIn"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","Carousel","items","imgSrc","uploadDir"]},"namespace":["caseStudy","content","Carousel","items","imgSrc"]}],"namespace":["caseStudy","_body","Carousel","items"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["caseStudy","_body","Carousel","backgroundColor"],"searchable":true,"uid":false},{"type":"number","label":"Delay (Seconds)","name":"delay","required":true,"namespace":["caseStudy","_body","Carousel","delay"],"searchable":true,"uid":false},{"type":"boolean","label":"Show on mobile devices","name":"showOnMobileDevices","namespace":["caseStudy","_body","Carousel","showOnMobileDevices"],"searchable":true,"uid":false}],"namespace":["caseStudy","_body","Carousel"]},{"name":"Citation","label":"Citation","fields":[{"type":"string","label":"author","name":"author","namespace":["caseStudy","_body","Citation","author"],"searchable":true,"uid":false},{"type":"string","label":"article","name":"article","required":true,"namespace":["caseStudy","_body","Citation","article"],"searchable":true,"uid":false}],"namespace":["caseStudy","_body","Citation"]},{"label":"Client List","name":"ClientList","ui":{"previewSrc":"/images/thumbs/tina/clients-list.jpg"},"fields":[{"type":"object","name":"categories","label":"Categories","list":true,"fields":[{"type":"reference","name":"category","label":"Category","collections":["clientCategories"],"namespace":["caseStudy","content","ClientList","categories","category"]}],"ui":{},"namespace":["caseStudy","_body","ClientList","categories"],"searchable":true,"uid":false},{"type":"object","name":"clients","label":"Clients list","list":true,"ui":{"previewSrc":"/images/thumbs/tina/clients-list.jpg"},"fields":[{"type":"string","name":"name","label":"Name","namespace":["caseStudy","content","ClientList","clients","name"]},{"type":"image","name":"logo","label":"Logo","namespace":["caseStudy","content","ClientList","clients","logo"]},{"type":"string","name":"logoUrl","label":"Logo URL","namespace":["caseStudy","content","ClientList","clients","logoUrl"]},{"type":"rich-text","name":"content","label":"Content","templates":[{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["consulting","afterBody","ClientList","clients","content","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["consulting","afterBody","ClientList","clients","content","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["consulting","afterBody","ClientList","clients","content","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["consulting","afterBody","ClientList","clients","content","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["consulting","afterBody","ClientList","clients","content","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["consulting","afterBody","ClientList","clients","content","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["consulting","afterBody","ClientList","clients","content","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["consulting","afterBody","ClientList","clients","content","UtilityButton","openInNewTab"]}],"namespace":["consulting","_body","ClientList","clients","content","UtilityButton"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["consulting","afterBody","ClientList","clients","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["consulting","afterBody","ClientList","clients","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["consulting","afterBody","ClientList","clients","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["consulting","afterBody","ClientList","clients","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["consulting","afterBody","ClientList","clients","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["consulting","afterBody","ClientList","clients","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["consulting","afterBody","ClientList","clients","content","VideoEmbed","duration"]}],"namespace":["consulting","_body","ClientList","clients","content","VideoEmbed"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["consulting","afterBody","ClientList","clients","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["consulting","afterBody","ClientList","clients","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["consulting","afterBody","ClientList","clients","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["consulting","afterBody","ClientList","clients","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["consulting","afterBody","ClientList","clients","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["consulting","afterBody","ClientList","clients","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["consulting","afterBody","ClientList","clients","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["consulting","afterBody","ClientList","clients","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["consulting","afterBody","ClientList","clients","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["consulting","afterBody","ClientList","clients","content","CustomImage","sizes"]}],"namespace":["consulting","_body","ClientList","clients","content","CustomImage"]},{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["consulting","afterBody","ClientList","clients","content","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["consulting","afterBody","ClientList","clients","content","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["videoProduction","afterBody","ClientList","clients","content","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["videoProduction","afterBody","ClientList","clients","content","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["videoProduction","afterBody","ClientList","clients","content","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["videoProduction","afterBody","ClientList","clients","content","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["videoProduction","afterBody","ClientList","clients","content","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["videoProduction","afterBody","ClientList","clients","content","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["videoProduction","afterBody","ClientList","clients","content","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["videoProduction","afterBody","ClientList","clients","content","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["videoProduction","afterBody","ClientList","clients","content","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["videoProduction","afterBody","ClientList","clients","content","ContentCard","content","CustomImage","sizes"]}],"namespace":["videoProduction","_body","ClientList","clients","content","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["videoProduction","afterBody","ClientList","clients","content","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["videoProduction","afterBody","ClientList","clients","content","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["videoProduction","afterBody","ClientList","clients","content","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["videoProduction","afterBody","ClientList","clients","content","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["videoProduction","afterBody","ClientList","clients","content","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["videoProduction","_body","ClientList","clients","content","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["videoProduction","afterBody","ClientList","clients","content","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["videoProduction","afterBody","ClientList","clients","content","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["videoProduction","afterBody","ClientList","clients","content","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["videoProduction","afterBody","ClientList","clients","content","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["videoProduction","afterBody","ClientList","clients","content","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["videoProduction","afterBody","ClientList","clients","content","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["videoProduction","afterBody","ClientList","clients","content","ContentCard","content","VideoEmbed","duration"]}],"namespace":["videoProduction","_body","ClientList","clients","content","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["videoProduction","afterBody","ClientList","clients","content","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["videoProduction","afterBody","ClientList","clients","content","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["employment","booking","bookingBody","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["employment","booking","bookingBody","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["employment","booking","bookingBody","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["employment","booking","bookingBody","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["employment","booking","bookingBody","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["videoProduction","afterBody","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["videoProduction","_body","ClientList","clients","content","ContentCard","content","ColorBlock"]}],"namespace":["consulting","afterBody","ClientList","clients","content","ContentCard","content"]}],"namespace":["consulting","_body","ClientList","clients","content","ContentCard"]}],"namespace":["caseStudy","content","ClientList","clients","content"]},{"type":"string","name":"caseStudyUrl","label":"Case study URL","namespace":["caseStudy","content","ClientList","clients","caseStudyUrl"]},{"type":"object","name":"categories","label":"Categories","list":true,"ui":{},"fields":[{"type":"reference","name":"category","label":"Category","collections":["clientCategories"],"namespace":["consulting","_body","ClientList","clients","categories","category"]}],"namespace":["caseStudy","content","ClientList","clients","categories"]}],"namespace":["caseStudy","_body","ClientList","clients"],"searchable":true,"uid":false}],"namespace":["caseStudy","_body","ClientList"]},{"name":"ClientLogos","label":"Client Logos","ui":{"previewSrc":"/images/thumbs/tina/client-logos.jpg"},"fields":[{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["caseStudy","_body","ClientLogos","altText"],"searchable":true,"uid":false}],"namespace":["caseStudy","_body","ClientLogos"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["caseStudy","_body","ColorBlock","title"],"searchable":true,"uid":false},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["caseStudy","_body","ColorBlock","subTitle"],"searchable":true,"uid":false},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["caseStudy","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["caseStudy","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["caseStudy","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["caseStudy","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["caseStudy","content","ColorBlock","colorRow","caption"]}],"namespace":["caseStudy","_body","ColorBlock","colorRow"],"searchable":true,"uid":false}],"namespace":["caseStudy","_body","ColorBlock"]},{"name":"ColorPalette","label":"Color Palette","ui":{"previewSrc":"/images/thumbs/tina/color-palette.jpg"},"fields":[{"type":"string","label":"Name","name":"name","namespace":["caseStudy","_body","ColorPalette","name"],"searchable":true,"uid":false}],"namespace":["caseStudy","_body","ColorPalette"]},{"name":"Content","label":"Content","ui":{"previewSrc":"/images/thumbs/tina/content.jpg","defaultItem":{"body":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["caseStudy","_body","Content","title"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["consulting","_body","Content","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["consulting","_body","Content","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["consulting","_body","Content","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["consulting","_body","Content","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["consulting","_body","Content","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["consulting","_body","Content","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["consulting","_body","Content","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["consulting","_body","Content","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["consulting","_body","Content","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["consulting","_body","Content","content","CustomImage","sizes"]}],"namespace":["caseStudy","content","Content","content","CustomImage"]},{"name":"ClientLogos","label":"Client Logos","ui":{"previewSrc":"/images/thumbs/tina/client-logos.jpg"},"fields":[{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["consulting","_body","Content","content","ClientLogos","altText"]}],"namespace":["caseStudy","content","Content","content","ClientLogos"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["consulting","_body","Content","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["consulting","_body","Content","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["consulting","_body","Content","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["consulting","_body","Content","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["consulting","_body","Content","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["consulting","_body","Content","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["consulting","_body","Content","content","VideoEmbed","duration"]}],"namespace":["caseStudy","content","Content","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["consulting","_body","Content","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["consulting","_body","Content","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["consulting","afterBody","Content","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["consulting","afterBody","Content","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["consulting","afterBody","Content","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["consulting","afterBody","Content","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["consulting","afterBody","Content","content","ColorBlock","colorRow","caption"]}],"namespace":["consulting","_body","Content","content","ColorBlock","colorRow"]}],"namespace":["caseStudy","content","Content","content","ColorBlock"]}],"namespace":["caseStudy","_body","Content","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Container Padding","name":"paddingClass","options":["Mobile: No Padding","Mobile: No Top and Horizontal Padding"],"namespace":["caseStudy","_body","Content","paddingClass"],"searchable":true,"uid":false},{"type":"string","label":"Text size","name":"size","options":[{"label":"small","value":"sm"},{"label":"normal","value":"base"},{"label":"large","value":"lg"},{"label":"extra large","value":"xl"},{"label":"2x large","value":"2xl"}],"namespace":["caseStudy","_body","Content","size"],"searchable":true,"uid":false},{"type":"string","label":"Align","name":"align","options":[{"label":"Left","value":"left"},{"label":"Center","value":"center"},{"label":"Right","value":"right"}],"namespace":["caseStudy","_body","Content","align"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["caseStudy","_body","Content","backgroundColor"],"searchable":true,"uid":false}],"namespace":["caseStudy","_body","Content"]},{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["caseStudy","_body","ContentCard","prose"],"searchable":true,"uid":false},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["caseStudy","_body","ContentCard","centerAlignedText"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["consulting","_body","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["consulting","_body","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["consulting","_body","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["consulting","_body","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["consulting","_body","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["consulting","_body","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["consulting","_body","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["consulting","_body","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["consulting","_body","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["consulting","_body","ContentCard","content","CustomImage","sizes"]}],"namespace":["caseStudy","content","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["consulting","_body","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["consulting","_body","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["consulting","_body","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["consulting","_body","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["consulting","_body","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["caseStudy","content","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["consulting","_body","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["consulting","_body","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["consulting","_body","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["consulting","_body","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["consulting","_body","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["consulting","_body","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["consulting","_body","ContentCard","content","VideoEmbed","duration"]}],"namespace":["caseStudy","content","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["consulting","_body","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["consulting","_body","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["consulting","afterBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["consulting","afterBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["consulting","afterBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["consulting","afterBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["consulting","afterBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["consulting","_body","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["caseStudy","content","ContentCard","content","ColorBlock"]}],"namespace":["caseStudy","_body","ContentCard","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["caseStudy","_body","ContentCard"]},{"name":"CustomDownloadButton","label":"Custom Download Button","ui":{"previewSrc":"/images/thumbs/tina/custom-download-button.jpg"},"fields":[{"type":"string","label":"Text","name":"btnText","namespace":["caseStudy","_body","CustomDownloadButton","btnText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"btnLink","namespace":["caseStudy","_body","CustomDownloadButton","btnLink"],"searchable":true,"uid":false}],"namespace":["caseStudy","_body","CustomDownloadButton"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["caseStudy","_body","CustomImage","src"],"searchable":false,"uid":false},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["caseStudy","_body","CustomImage","altText"],"searchable":true,"uid":false},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["caseStudy","_body","CustomImage","alignment"],"searchable":true,"uid":false},{"type":"number","label":"Height","name":"height","required":true,"namespace":["caseStudy","_body","CustomImage","height"],"searchable":true,"uid":false},{"type":"number","label":"Width","name":"width","required":true,"namespace":["caseStudy","_body","CustomImage","width"],"searchable":true,"uid":false},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["caseStudy","_body","CustomImage","link"],"searchable":true,"uid":false},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["caseStudy","_body","CustomImage","customClass"],"searchable":true,"uid":false},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["caseStudy","_body","CustomImage","caption"],"searchable":true,"uid":false},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["caseStudy","_body","CustomImage","captionColor"],"searchable":true,"uid":false},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["caseStudy","_body","CustomImage","sizes"],"searchable":true,"uid":false}],"namespace":["caseStudy","_body","CustomImage"]},{"name":"DomainFromQuery","label":"Domain from query","ui":{"previewSrc":"/images/thumbs/tina/domain-from-query.jpg"},"fields":[{"name":"title","label":"Title","type":"string","description":"This is a H1 heading","namespace":["caseStudy","_body","DomainFromQuery","title"],"searchable":true,"uid":false},{"name":"showDomain","label":"Show domain name","type":"boolean","description":"Query param in URL must have key of 'domain'","namespace":["caseStudy","_body","DomainFromQuery","showDomain"],"searchable":true,"uid":false}],"namespace":["caseStudy","_body","DomainFromQuery"]},{"name":"DownloadBlock","label":"Download Block","ui":{"previewSrc":"/images/thumbs/tina/download-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["caseStudy","_body","DownloadBlock","title"],"searchable":true,"uid":false},{"type":"object","label":"Downloads","name":"downloads","ui":{},"list":true,"fields":[{"type":"string","label":"Header","name":"header","namespace":["caseStudy","content","DownloadBlock","downloads","header"]},{"type":"image","label":"Image","name":"img","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","img","uploadDir"]},"namespace":["caseStudy","content","DownloadBlock","downloads","img"]},{"type":"string","label":"Image Background","name":"imgBackground","options":["black","grey","white","darkgrey","darkgreen"],"namespace":["caseStudy","content","DownloadBlock","downloads","imgBackground"]},{"type":"string","label":"First Link Text","name":"firstLinkText","description":"Defaults to PNG","namespace":["caseStudy","content","DownloadBlock","downloads","firstLinkText"]},{"type":"image","label":"First Link","name":"firstLink","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","firstLink","uploadDir"]},"namespace":["caseStudy","content","DownloadBlock","downloads","firstLink"]},{"type":"string","label":"Second Link Text","name":"secondLinkText","description":"Defaults to PDF","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","secondLinkText","uploadDir"]},"namespace":["caseStudy","content","DownloadBlock","downloads","secondLinkText"]},{"type":"image","label":"Second Link","name":"secondLink","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","secondLink","uploadDir"]},"namespace":["caseStudy","content","DownloadBlock","downloads","secondLink"]}],"namespace":["caseStudy","_body","DownloadBlock","downloads"],"searchable":true,"uid":false},{"type":"boolean","label":"Bottom border","name":"bottomBorder","namespace":["caseStudy","_body","DownloadBlock","bottomBorder"],"searchable":true,"uid":false}],"namespace":["caseStudy","_body","DownloadBlock"]},{"name":"DynamicColumns","label":"Dynamic Column Layout","fields":[{"type":"rich-text","label":"Column text body","name":"colBody","required":true,"namespace":["caseStudy","_body","DynamicColumns","colBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"number","label":"Number of columns","name":"colCount","required":true,"ui":{},"namespace":["caseStudy","_body","DynamicColumns","colCount"],"searchable":true,"uid":false}],"namespace":["caseStudy","_body","DynamicColumns"]},{"name":"EventBooking","label":"Events Booking","ui":{"previewSrc":"/images/thumbs/tina/events-booking.jpg"},"fields":[{"type":"number","label":"Duration (In Days)","name":"eventDurationInDays","required":true,"namespace":["caseStudy","_body","EventBooking","eventDurationInDays"],"searchable":true,"uid":false},{"type":"number","label":"Price","name":"price","required":true,"namespace":["caseStudy","_body","EventBooking","price"],"searchable":true,"uid":false},{"type":"number","label":"Discount Price","name":"discountPrice","namespace":["caseStudy","_body","EventBooking","discountPrice"],"searchable":true,"uid":false},{"type":"string","name":"gstText","label":"Select GST Option","options":["inc GST","+ GST"],"required":true,"namespace":["caseStudy","_body","EventBooking","gstText"],"searchable":true,"uid":false},{"type":"string","label":"Discount Note","name":"discountNote","namespace":["caseStudy","_body","EventBooking","discountNote"],"searchable":true,"uid":false},{"type":"object","label":"Event","name":"eventList","ui":{},"list":true,"fields":[{"type":"string","label":"City","name":"city","namespace":["caseStudy","content","EventBooking","eventList","city"]},{"type":"datetime","label":"Start Date","name":"date","ui":{},"namespace":["caseStudy","content","EventBooking","eventList","date"]},{"type":"string","label":"Booking URL","name":"bookingURL","namespace":["caseStudy","content","EventBooking","eventList","bookingURL"]},{"type":"reference","label":"Location","name":"location","collections":["locations"],"namespace":["caseStudy","content","EventBooking","eventList","location"]}],"namespace":["caseStudy","_body","EventBooking","eventList"],"searchable":true,"uid":false}],"namespace":["caseStudy","_body","EventBooking"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["consulting","_body","EventLink","content","Flag","country"]}],"namespace":["caseStudy","content","EventLink","content","Flag"]}],"namespace":["caseStudy","_body","EventLink","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Link","name":"link","namespace":["caseStudy","_body","EventLink","link"],"searchable":true,"uid":false},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["caseStudy","_body","EventLink","eventThumbnail"],"searchable":false,"uid":false},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["caseStudy","_body","EventLink","thumbnailAlt"],"searchable":true,"uid":false}],"namespace":["caseStudy","_body","EventLink"]},{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["caseStudy","_body","Flag","country"],"searchable":true,"uid":false}],"namespace":["caseStudy","_body","Flag"]},{"name":"FixedColumns","label":"Fixed Column Layout (2 columns)","ui":{"previewSrc":"/images/thumbs/tina/fixed-columns.jpg"},"fields":[{"type":"rich-text","label":"Header Section (Optional)","name":"headerSection","namespace":["caseStudy","_body","FixedColumns","headerSection"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"First column text","name":"firstColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["consulting","_body","FixedColumns","firstColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["consulting","_body","FixedColumns","firstColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["videoProduction","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["videoProduction","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["videoProduction","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["videoProduction","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["videoProduction","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["videoProduction","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["videoProduction","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["videoProduction","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["videoProduction","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["videoProduction","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["consulting","afterBody","FixedColumns","firstColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["videoProduction","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["videoProduction","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["videoProduction","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["videoProduction","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["videoProduction","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["consulting","afterBody","FixedColumns","firstColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["videoProduction","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["videoProduction","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["videoProduction","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["videoProduction","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["videoProduction","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["videoProduction","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["videoProduction","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["consulting","afterBody","FixedColumns","firstColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["videoProduction","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["videoProduction","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["videoProduction","afterBody","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["videoProduction","afterBody","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["videoProduction","afterBody","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["videoProduction","afterBody","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["videoProduction","afterBody","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["videoProduction","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["consulting","afterBody","FixedColumns","firstColBody","ContentCard","content","ColorBlock"]}],"namespace":["consulting","_body","FixedColumns","firstColBody","ContentCard","content"]}],"namespace":["caseStudy","content","FixedColumns","firstColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["consulting","_body","FixedColumns","firstColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["consulting","_body","FixedColumns","firstColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["consulting","_body","FixedColumns","firstColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["consulting","_body","FixedColumns","firstColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["consulting","_body","FixedColumns","firstColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["consulting","_body","FixedColumns","firstColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["consulting","_body","FixedColumns","firstColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["consulting","_body","FixedColumns","firstColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["consulting","_body","FixedColumns","firstColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["consulting","_body","FixedColumns","firstColBody","CustomImage","sizes"]}],"namespace":["caseStudy","content","FixedColumns","firstColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["videoProduction","_body","FixedColumns","firstColBody","EventLink","content","Flag","country"]}],"namespace":["consulting","afterBody","FixedColumns","firstColBody","EventLink","content","Flag"]}],"namespace":["consulting","_body","FixedColumns","firstColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["consulting","_body","FixedColumns","firstColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["consulting","_body","FixedColumns","firstColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["consulting","_body","FixedColumns","firstColBody","EventLink","thumbnailAlt"]}],"namespace":["caseStudy","content","FixedColumns","firstColBody","EventLink"]}],"namespace":["caseStudy","_body","FixedColumns","firstColBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"Second column text","name":"secondColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["consulting","_body","FixedColumns","secondColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["consulting","_body","FixedColumns","secondColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["videoProduction","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["videoProduction","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["videoProduction","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["videoProduction","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["videoProduction","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["videoProduction","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["videoProduction","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["videoProduction","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["videoProduction","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["videoProduction","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["consulting","afterBody","FixedColumns","secondColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["videoProduction","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["videoProduction","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["videoProduction","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["videoProduction","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["videoProduction","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["consulting","afterBody","FixedColumns","secondColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["videoProduction","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["videoProduction","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["videoProduction","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["videoProduction","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["videoProduction","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["videoProduction","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["videoProduction","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["consulting","afterBody","FixedColumns","secondColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["videoProduction","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["videoProduction","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["videoProduction","afterBody","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["videoProduction","afterBody","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["videoProduction","afterBody","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["videoProduction","afterBody","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["videoProduction","afterBody","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["videoProduction","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["consulting","afterBody","FixedColumns","secondColBody","ContentCard","content","ColorBlock"]}],"namespace":["consulting","_body","FixedColumns","secondColBody","ContentCard","content"]}],"namespace":["caseStudy","content","FixedColumns","secondColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["consulting","_body","FixedColumns","secondColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["consulting","_body","FixedColumns","secondColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["consulting","_body","FixedColumns","secondColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["consulting","_body","FixedColumns","secondColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["consulting","_body","FixedColumns","secondColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["consulting","_body","FixedColumns","secondColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["consulting","_body","FixedColumns","secondColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["consulting","_body","FixedColumns","secondColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["consulting","_body","FixedColumns","secondColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["consulting","_body","FixedColumns","secondColBody","CustomImage","sizes"]}],"namespace":["caseStudy","content","FixedColumns","secondColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["videoProduction","_body","FixedColumns","secondColBody","EventLink","content","Flag","country"]}],"namespace":["consulting","afterBody","FixedColumns","secondColBody","EventLink","content","Flag"]}],"namespace":["consulting","_body","FixedColumns","secondColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["consulting","_body","FixedColumns","secondColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["consulting","_body","FixedColumns","secondColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["consulting","_body","FixedColumns","secondColBody","EventLink","thumbnailAlt"]}],"namespace":["caseStudy","content","FixedColumns","secondColBody","EventLink"]}],"namespace":["caseStudy","_body","FixedColumns","secondColBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["caseStudy","_body","FixedColumns"]},{"name":"FixedTabsLayout","label":"Fixed Tabs Layout","ui":{"previewSrc":"/images/thumbs/tina/fixed-tabs-layout.jpg"},"fields":[{"type":"string","name":"firstTab","label":"First Tab","namespace":["caseStudy","_body","FixedTabsLayout","firstTab"],"searchable":true,"uid":false},{"type":"rich-text","name":"firstHeading","label":"First Heading","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["consulting","_body","FixedTabsLayout","firstHeading","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["consulting","_body","FixedTabsLayout","firstHeading","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["consulting","_body","FixedTabsLayout","firstHeading","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["consulting","_body","FixedTabsLayout","firstHeading","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["consulting","_body","FixedTabsLayout","firstHeading","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["consulting","_body","FixedTabsLayout","firstHeading","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["consulting","_body","FixedTabsLayout","firstHeading","VideoEmbed","duration"]}],"namespace":["caseStudy","content","FixedTabsLayout","firstHeading","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["consulting","_body","FixedTabsLayout","firstHeading","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["consulting","_body","FixedTabsLayout","firstHeading","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["consulting","_body","FixedTabsLayout","firstHeading","BookingButton","buttonSubtitle"]}],"namespace":["caseStudy","content","FixedTabsLayout","firstHeading","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["consulting","_body","FixedTabsLayout","firstHeading","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["consulting","afterBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["consulting","afterBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["consulting","afterBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["consulting","afterBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","skills"]}],"namespace":["consulting","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["consulting","afterBody","FixedTabsLayout","firstHeading","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["consulting","afterBody","FixedTabsLayout","firstHeading","ExpertBlock","link","url"]}],"namespace":["consulting","_body","FixedTabsLayout","firstHeading","ExpertBlock","link"]}],"namespace":["caseStudy","content","FixedTabsLayout","firstHeading","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["consulting","afterBody","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["consulting","afterBody","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["consulting","afterBody","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["videoProduction","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["videoProduction","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["videoProduction","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["consulting","afterBody","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["consulting","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["caseStudy","content","FixedTabsLayout","firstHeading","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["consulting","_body","FixedTabsLayout","firstHeading","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["consulting","_body","FixedTabsLayout","firstHeading","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["consulting","_body","FixedTabsLayout","firstHeading","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["consulting","_body","FixedTabsLayout","firstHeading","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["consulting","_body","FixedTabsLayout","firstHeading","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["consulting","_body","FixedTabsLayout","firstHeading","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["consulting","_body","FixedTabsLayout","firstHeading","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["consulting","_body","FixedTabsLayout","firstHeading","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["consulting","_body","FixedTabsLayout","firstHeading","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["consulting","_body","FixedTabsLayout","firstHeading","CustomImage","sizes"]}],"namespace":["caseStudy","content","FixedTabsLayout","firstHeading","CustomImage"]}],"namespace":["caseStudy","_body","FixedTabsLayout","firstHeading"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","name":"firstBody","label":"First Body","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["consulting","_body","FixedTabsLayout","firstBody","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["consulting","_body","FixedTabsLayout","firstBody","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["consulting","_body","FixedTabsLayout","firstBody","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["consulting","_body","FixedTabsLayout","firstBody","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["consulting","_body","FixedTabsLayout","firstBody","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["consulting","_body","FixedTabsLayout","firstBody","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["consulting","_body","FixedTabsLayout","firstBody","VideoEmbed","duration"]}],"namespace":["caseStudy","content","FixedTabsLayout","firstBody","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["consulting","_body","FixedTabsLayout","firstBody","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["consulting","_body","FixedTabsLayout","firstBody","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["consulting","_body","FixedTabsLayout","firstBody","BookingButton","buttonSubtitle"]}],"namespace":["caseStudy","content","FixedTabsLayout","firstBody","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["consulting","_body","FixedTabsLayout","firstBody","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["consulting","afterBody","FixedTabsLayout","firstBody","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["consulting","afterBody","FixedTabsLayout","firstBody","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["consulting","afterBody","FixedTabsLayout","firstBody","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["consulting","afterBody","FixedTabsLayout","firstBody","ExpertBlock","expertList","skills"]}],"namespace":["consulting","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["consulting","afterBody","FixedTabsLayout","firstBody","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["consulting","afterBody","FixedTabsLayout","firstBody","ExpertBlock","link","url"]}],"namespace":["consulting","_body","FixedTabsLayout","firstBody","ExpertBlock","link"]}],"namespace":["caseStudy","content","FixedTabsLayout","firstBody","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["consulting","afterBody","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["consulting","afterBody","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["consulting","afterBody","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["videoProduction","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["videoProduction","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["videoProduction","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["consulting","afterBody","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["consulting","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["caseStudy","content","FixedTabsLayout","firstBody","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["consulting","_body","FixedTabsLayout","firstBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["consulting","_body","FixedTabsLayout","firstBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["consulting","_body","FixedTabsLayout","firstBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["consulting","_body","FixedTabsLayout","firstBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["consulting","_body","FixedTabsLayout","firstBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["consulting","_body","FixedTabsLayout","firstBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["consulting","_body","FixedTabsLayout","firstBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["consulting","_body","FixedTabsLayout","firstBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["consulting","_body","FixedTabsLayout","firstBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["consulting","_body","FixedTabsLayout","firstBody","CustomImage","sizes"]}],"namespace":["caseStudy","content","FixedTabsLayout","firstBody","CustomImage"]}],"namespace":["caseStudy","_body","FixedTabsLayout","firstBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","name":"secondTab","label":"Second Tab","namespace":["caseStudy","_body","FixedTabsLayout","secondTab"],"searchable":true,"uid":false},{"type":"rich-text","name":"secondHeading","label":"Second Heading","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["consulting","_body","FixedTabsLayout","secondHeading","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["consulting","_body","FixedTabsLayout","secondHeading","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["consulting","_body","FixedTabsLayout","secondHeading","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["consulting","_body","FixedTabsLayout","secondHeading","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["consulting","_body","FixedTabsLayout","secondHeading","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["consulting","_body","FixedTabsLayout","secondHeading","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["consulting","_body","FixedTabsLayout","secondHeading","VideoEmbed","duration"]}],"namespace":["caseStudy","content","FixedTabsLayout","secondHeading","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["consulting","_body","FixedTabsLayout","secondHeading","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["consulting","_body","FixedTabsLayout","secondHeading","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["consulting","_body","FixedTabsLayout","secondHeading","BookingButton","buttonSubtitle"]}],"namespace":["caseStudy","content","FixedTabsLayout","secondHeading","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["consulting","_body","FixedTabsLayout","secondHeading","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["consulting","afterBody","FixedTabsLayout","secondHeading","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["consulting","afterBody","FixedTabsLayout","secondHeading","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["consulting","afterBody","FixedTabsLayout","secondHeading","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["consulting","afterBody","FixedTabsLayout","secondHeading","ExpertBlock","expertList","skills"]}],"namespace":["consulting","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["consulting","afterBody","FixedTabsLayout","secondHeading","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["consulting","afterBody","FixedTabsLayout","secondHeading","ExpertBlock","link","url"]}],"namespace":["consulting","_body","FixedTabsLayout","secondHeading","ExpertBlock","link"]}],"namespace":["caseStudy","content","FixedTabsLayout","secondHeading","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["consulting","afterBody","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["consulting","afterBody","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["consulting","afterBody","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["videoProduction","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["videoProduction","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["videoProduction","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["consulting","afterBody","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["consulting","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["caseStudy","content","FixedTabsLayout","secondHeading","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["consulting","_body","FixedTabsLayout","secondHeading","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["consulting","_body","FixedTabsLayout","secondHeading","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["consulting","_body","FixedTabsLayout","secondHeading","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["consulting","_body","FixedTabsLayout","secondHeading","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["consulting","_body","FixedTabsLayout","secondHeading","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["consulting","_body","FixedTabsLayout","secondHeading","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["consulting","_body","FixedTabsLayout","secondHeading","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["consulting","_body","FixedTabsLayout","secondHeading","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["consulting","_body","FixedTabsLayout","secondHeading","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["consulting","_body","FixedTabsLayout","secondHeading","CustomImage","sizes"]}],"namespace":["caseStudy","content","FixedTabsLayout","secondHeading","CustomImage"]}],"namespace":["caseStudy","_body","FixedTabsLayout","secondHeading"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","name":"secondBody","label":"Second Body","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["consulting","_body","FixedTabsLayout","secondBody","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["consulting","_body","FixedTabsLayout","secondBody","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["consulting","_body","FixedTabsLayout","secondBody","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["consulting","_body","FixedTabsLayout","secondBody","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["consulting","_body","FixedTabsLayout","secondBody","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["consulting","_body","FixedTabsLayout","secondBody","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["consulting","_body","FixedTabsLayout","secondBody","VideoEmbed","duration"]}],"namespace":["caseStudy","content","FixedTabsLayout","secondBody","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["consulting","_body","FixedTabsLayout","secondBody","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["consulting","_body","FixedTabsLayout","secondBody","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["consulting","_body","FixedTabsLayout","secondBody","BookingButton","buttonSubtitle"]}],"namespace":["caseStudy","content","FixedTabsLayout","secondBody","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["consulting","_body","FixedTabsLayout","secondBody","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["consulting","afterBody","FixedTabsLayout","secondBody","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["consulting","afterBody","FixedTabsLayout","secondBody","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["consulting","afterBody","FixedTabsLayout","secondBody","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["consulting","afterBody","FixedTabsLayout","secondBody","ExpertBlock","expertList","skills"]}],"namespace":["consulting","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["consulting","afterBody","FixedTabsLayout","secondBody","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["consulting","afterBody","FixedTabsLayout","secondBody","ExpertBlock","link","url"]}],"namespace":["consulting","_body","FixedTabsLayout","secondBody","ExpertBlock","link"]}],"namespace":["caseStudy","content","FixedTabsLayout","secondBody","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["consulting","afterBody","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["consulting","afterBody","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["consulting","afterBody","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["videoProduction","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["videoProduction","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["videoProduction","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["consulting","afterBody","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["consulting","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["caseStudy","content","FixedTabsLayout","secondBody","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["consulting","_body","FixedTabsLayout","secondBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["consulting","_body","FixedTabsLayout","secondBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["consulting","_body","FixedTabsLayout","secondBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["consulting","_body","FixedTabsLayout","secondBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["consulting","_body","FixedTabsLayout","secondBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["consulting","_body","FixedTabsLayout","secondBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["consulting","_body","FixedTabsLayout","secondBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["consulting","_body","FixedTabsLayout","secondBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["consulting","_body","FixedTabsLayout","secondBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["consulting","_body","FixedTabsLayout","secondBody","CustomImage","sizes"]}],"namespace":["caseStudy","content","FixedTabsLayout","secondBody","CustomImage"]}],"namespace":["caseStudy","_body","FixedTabsLayout","secondBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["caseStudy","_body","FixedTabsLayout"]},{"label":"Google Maps","name":"GoogleMaps","ui":{"previewSrc":"/images/thumbs/tina/google-maps.jpg"},"fields":[{"type":"string","label":"URL","name":"embedUrl","required":true,"namespace":["caseStudy","_body","GoogleMaps","embedUrl"],"searchable":true,"uid":false},{"type":"string","label":"Width","name":"embedWidth","namespace":["caseStudy","_body","GoogleMaps","embedWidth"],"searchable":true,"uid":false},{"type":"string","label":"Height","name":"embedHeight","namespace":["caseStudy","_body","GoogleMaps","embedHeight"],"searchable":true,"uid":false}],"namespace":["caseStudy","_body","GoogleMaps"]},{"label":"Grid Layout","name":"GridLayout","ui":{"previewSrc":"/images/thumbs/tina/grid-layout.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["caseStudy","_body","GridLayout","title"],"searchable":true,"uid":false},{"type":"object","list":true,"label":"Grid Items","name":"grids","ui":{},"fields":[{"type":"string","label":"Grid Title","name":"gridTitle","namespace":["caseStudy","content","GridLayout","grids","gridTitle"]},{"type":"boolean","label":"Show Grid Title","name":"showGridTitle","namespace":["caseStudy","content","GridLayout","grids","showGridTitle"]},{"type":"boolean","label":"Centered Grid Title","name":"centeredGridTitle","namespace":["caseStudy","content","GridLayout","grids","centeredGridTitle"]},{"type":"boolean","label":"Show Header Divider","name":"showHeaderDivider","namespace":["caseStudy","content","GridLayout","grids","showHeaderDivider"]},{"type":"boolean","label":"Offset Grid Start","name":"offsetGridStart","namespace":["caseStudy","content","GridLayout","grids","offsetGridStart"]},{"type":"object","label":"Blocks","name":"blocks","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["consulting","_body","GridLayout","grids","blocks","title"]},{"type":"boolean","label":"Show Title","name":"showTitle","namespace":["consulting","_body","GridLayout","grids","blocks","showTitle"]},{"type":"image","label":"Image","name":"image","uploadDir":{"namespace":["page","beforeBody","GridLayout","grids","blocks","image","uploadDir"]},"namespace":["consulting","_body","GridLayout","grids","blocks","image"]},{"type":"image","label":"Related Image","name":"relatedImage","uploadDir":{"namespace":["page","beforeBody","GridLayout","grids","blocks","relatedImage","uploadDir"]},"namespace":["consulting","_body","GridLayout","grids","blocks","relatedImage"]},{"type":"rich-text","name":"linkContent","label":"Link Content","templates":[{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["videoProduction","_body","GridLayout","grids","blocks","linkContent","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["videoProduction","_body","GridLayout","grids","blocks","linkContent","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["videoProduction","_body","GridLayout","grids","blocks","linkContent","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["videoProduction","_body","GridLayout","grids","blocks","linkContent","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["videoProduction","_body","GridLayout","grids","blocks","linkContent","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["videoProduction","_body","GridLayout","grids","blocks","linkContent","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["videoProduction","_body","GridLayout","grids","blocks","linkContent","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["videoProduction","_body","GridLayout","grids","blocks","linkContent","UtilityButton","openInNewTab"]}],"namespace":["consulting","afterBody","GridLayout","grids","blocks","linkContent","UtilityButton"]}],"namespace":["consulting","_body","GridLayout","grids","blocks","linkContent"]}],"namespace":["caseStudy","content","GridLayout","grids","blocks"]}],"namespace":["caseStudy","_body","GridLayout","grids"],"searchable":true,"uid":false}],"namespace":["caseStudy","_body","GridLayout"]},{"name":"Hero","label":"Hero","ui":{"previewSrc":"/blocks/hero.png","defaultItem":{"tagline":"Here's some text above the other text","headline":"This Big Text is Totally Awesome","text":"Phasellus scelerisque, libero eu finibus rutrum, risus risus accumsan libero, nec molestie urna dui a leo."}},"fields":[{"type":"string","label":"Tagline","name":"tagline","namespace":["caseStudy","_body","Hero","tagline"],"searchable":true,"uid":false},{"type":"string","label":"Headline","name":"headline","namespace":["caseStudy","_body","Hero","headline"],"searchable":true,"uid":false},{"label":"Text","name":"text","type":"rich-text","namespace":["caseStudy","_body","Hero","text"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"label":"Actions","name":"actions","type":"object","list":true,"ui":{"defaultItem":{"label":"Action Label","type":"button","icon":true,"link":"/"}},"fields":[{"label":"Label","name":"label","type":"string","namespace":["caseStudy","content","Hero","actions","label"]},{"label":"Type","name":"type","type":"string","options":[{"label":"Button","value":"button"},{"label":"Link","value":"link"}],"namespace":["caseStudy","content","Hero","actions","type"]},{"label":"Icon","name":"icon","type":"boolean","namespace":["caseStudy","content","Hero","actions","icon"]},{"label":"Link","name":"link","type":"string","namespace":["caseStudy","content","Hero","actions","link"]}],"namespace":["caseStudy","_body","Hero","actions"],"searchable":true,"uid":false},{"type":"object","label":"Image","name":"image","fields":[{"name":"src","label":"Image Source","type":"image","namespace":["caseStudy","content","Hero","image","src"]},{"name":"alt","label":"Alt Text","type":"string","namespace":["caseStudy","content","Hero","image","alt"]}],"namespace":["caseStudy","_body","Hero","image"],"searchable":true,"uid":false},{"type":"string","label":"Color","name":"color","options":[{"label":"Default","value":"default"},{"label":"Tint","value":"tint"},{"label":"Primary","value":"primary"}],"namespace":["caseStudy","_body","Hero","color"],"searchable":true,"uid":false}],"namespace":["caseStudy","_body","Hero"]},{"name":"HorizontalCard","label":"Horizontal Card","ui":{"previewSrc":"/images/thumbs/tina/horizontal-card.jpg"},"fields":[{"type":"object","label":"Cards","name":"cardList","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["caseStudy","content","HorizontalCard","cardList","title"]},{"type":"rich-text","label":"Content","name":"content","namespace":["caseStudy","content","HorizontalCard","cardList","content"]},{"type":"image","label":"Thumbnail","name":"thumbnail","uploadDir":{"namespace":["page","beforeBody","HorizontalCard","cardList","thumbnail","uploadDir"]},"namespace":["caseStudy","content","HorizontalCard","cardList","thumbnail"]},{"type":"string","label":"Link","name":"link","namespace":["caseStudy","content","HorizontalCard","cardList","link"]}],"namespace":["caseStudy","_body","HorizontalCard","cardList"],"searchable":true,"uid":false},{"type":"object","label":"Button","name":"button","fields":[{"type":"string","label":"Text","name":"text","namespace":["caseStudy","content","HorizontalCard","button","text"]},{"type":"string","label":"Link","name":"link","namespace":["caseStudy","content","HorizontalCard","button","link"]}],"namespace":["caseStudy","_body","HorizontalCard","button"],"searchable":true,"uid":false}],"namespace":["caseStudy","_body","HorizontalCard"]},{"name":"InternalCarousel","label":"Internal Carousel","ui":{"previewSrc":"/images/thumbs/tina/internal-carousel.jpg"},"fields":[{"label":"Images","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Image description"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["caseStudy","content","InternalCarousel","items","label"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","InternalCarousel","items","imgSrc","uploadDir"]},"namespace":["caseStudy","content","InternalCarousel","items","imgSrc"]}],"namespace":["caseStudy","_body","InternalCarousel","items"],"searchable":true,"uid":false},{"type":"string","label":"Header","name":"header","namespace":["caseStudy","_body","InternalCarousel","header"],"searchable":true,"uid":false},{"type":"rich-text","label":"Text","name":"paragraph","isBody":false,"namespace":["caseStudy","_body","InternalCarousel","paragraph"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Website","name":"website","namespace":["caseStudy","_body","InternalCarousel","website"],"searchable":true,"uid":false},{"type":"object","label":"Technologies","name":"technologies","list":true,"ui":{},"fields":[{"type":"string","label":"Name","name":"name","namespace":["caseStudy","content","InternalCarousel","technologies","name"]}],"namespace":["caseStudy","_body","InternalCarousel","technologies"],"searchable":true,"uid":false},{"type":"string","label":"Case Study","name":"caseStudyUrl","namespace":["caseStudy","_body","InternalCarousel","caseStudyUrl"],"searchable":true,"uid":false},{"type":"string","label":"Video URL","name":"videoUrl","namespace":["caseStudy","_body","InternalCarousel","videoUrl"],"searchable":true,"uid":false}],"namespace":["caseStudy","_body","InternalCarousel"]},{"label":"Join As Presenter","name":"joinAsPresenter","fields":[{"label":"Learn More Link","name":"link","type":"string","namespace":["caseStudy","_body","joinAsPresenter","link"],"searchable":true,"uid":false},{"label":"Image","name":"img","type":"image","namespace":["caseStudy","_body","joinAsPresenter","img"],"searchable":false,"uid":false}],"namespace":["caseStudy","_body","joinAsPresenter"]},{"label":"Join Github","name":"joinGithub","ui":{"previewSrc":"/images/thumbs/tina/join-github.jpg"},"fields":[{"label":"Title","name":"title","type":"string","namespace":["caseStudy","_body","joinGithub","title"],"searchable":true,"uid":false},{"label":"Join Github Link","name":"link","type":"string","namespace":["caseStudy","_body","joinGithub","link"],"searchable":true,"uid":false}],"namespace":["caseStudy","_body","joinGithub"]},{"name":"JotFormEmbed","label":"JotForm Embed","ui":{"previewSrc":"/images/thumbs/tina/jotform-embed.jpg"},"fields":[{"type":"string","name":"jotFormId","label":"JotForm Id","required":true,"namespace":["caseStudy","_body","JotFormEmbed","jotFormId"],"searchable":true,"uid":false},{"type":"string","label":"Button Text","name":"buttonText","namespace":["caseStudy","_body","JotFormEmbed","buttonText"],"searchable":true,"uid":false},{"type":"string","name":"containerClass","label":"Container Class","namespace":["caseStudy","_body","JotFormEmbed","containerClass"],"searchable":true,"uid":false},{"type":"string","label":"Button Class","name":"buttonClass","namespace":["caseStudy","_body","JotFormEmbed","buttonClass"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","namespace":["caseStudy","_body","JotFormEmbed","animated"],"searchable":true,"uid":false}],"namespace":["caseStudy","_body","JotFormEmbed"]},{"name":"LatestTech","label":"Latest Tech","ui":{"previewSrc":"/images/thumbs/tina/latest-tech.jpg"},"fields":[{"type":"reference","description":"Select a config file including a set of badges","collections":["userGroupGlobal"],"label":"Badges","name":"badges","namespace":["caseStudy","_body","LatestTech","badges"],"searchable":true,"uid":false}],"namespace":["caseStudy","_body","LatestTech"]},{"name":"LocationBlock","label":"Locations","ui":{"previewSrc":"/images/thumbs/tina/locations.jpg"},"fields":[{"type":"string","name":"title","label":"Title","namespace":["caseStudy","_body","LocationBlock","title"],"searchable":true,"uid":false},{"type":"object","label":"Location List","name":"locationList","list":true,"ui":{},"fields":[{"type":"reference","collections":["locations"],"label":"Location","name":"location","namespace":["caseStudy","content","LocationBlock","locationList","location"]}],"namespace":["caseStudy","_body","LocationBlock","locationList"],"searchable":true,"uid":false},{"type":"object","name":"chapelWebsite","label":"Chapel Website","fields":[{"type":"string","name":"title","label":"Text","namespace":["caseStudy","content","LocationBlock","chapelWebsite","title"]},{"type":"string","name":"URL","label":"URL","namespace":["caseStudy","content","LocationBlock","chapelWebsite","URL"]}],"namespace":["caseStudy","_body","LocationBlock","chapelWebsite"],"searchable":true,"uid":false}],"namespace":["caseStudy","_body","LocationBlock"]},{"name":"NewslettersTable","label":"Newsletters Table","ui":{"previewSrc":"/images/thumbs/tina/newsletters-table.jpg"},"fields":[{"type":"string","label":"Header text","name":"headerText","namespace":["caseStudy","_body","NewslettersTable","headerText"],"searchable":true,"uid":false}],"namespace":["caseStudy","_body","NewslettersTable"]},{"label":"Organizer","name":"organizer","fields":[{"type":"image","label":"Profile Image","name":"profileImg","namespace":["caseStudy","_body","organizer","profileImg"],"searchable":false,"uid":false},{"type":"string","label":"Profile Link","name":"profileLink","namespace":["caseStudy","_body","organizer","profileLink"],"searchable":true,"uid":false},{"type":"string","label":"Name","name":"name","namespace":["caseStudy","_body","organizer","name"],"searchable":true,"uid":false},{"type":"string","label":"Position","name":"position","namespace":["caseStudy","_body","organizer","position"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","namespace":["caseStudy","_body","organizer","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["caseStudy","_body","organizer"]},{"label":"Payment Block","name":"paymentBlock","ui":{"previewSrc":"/images/thumbs/tina/payment-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["caseStudy","_body","paymentBlock","title"],"searchable":true,"uid":false},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["caseStudy","_body","paymentBlock","subTitle"],"searchable":true,"uid":false},{"type":"reference","label":"Payment Links","name":"payments","collections":["paymentDetails"],"namespace":["caseStudy","_body","paymentBlock","payments"],"searchable":true,"uid":false},{"type":"rich-text","label":"Footer","name":"footer","namespace":["caseStudy","_body","paymentBlock","footer"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"image","label":"Credit Cards Image","name":"creditImgSrc","namespace":["caseStudy","_body","paymentBlock","creditImgSrc"],"searchable":false,"uid":false},{"type":"string","label":"Alt Text","name":"altTxt","namespace":["caseStudy","_body","paymentBlock","altTxt"],"searchable":true,"uid":false}],"namespace":["caseStudy","_body","paymentBlock"]},{"name":"PresenterBlock","label":"Presenters","ui":{"previewSrc":"/images/thumbs/tina/presenters.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["caseStudy","_body","PresenterBlock","header"],"searchable":true,"uid":false},{"type":"object","name":"presenterList","label":"Presenters","list":true,"ui":{},"fields":[{"type":"reference","name":"presenter","label":"Presenters","collections":["presenter"],"namespace":["caseStudy","content","PresenterBlock","presenterList","presenter"]}],"namespace":["caseStudy","_body","PresenterBlock","presenterList"],"searchable":true,"uid":false},{"type":"object","label":"Other Events","name":"otherEvent","fields":[{"type":"string","label":"Title","name":"title","namespace":["caseStudy","content","PresenterBlock","otherEvent","title"]},{"type":"string","label":"URL","name":"eventURL","namespace":["caseStudy","content","PresenterBlock","otherEvent","eventURL"]}],"namespace":["caseStudy","_body","PresenterBlock","otherEvent"],"searchable":true,"uid":false}],"namespace":["caseStudy","_body","PresenterBlock"]},{"label":"Recurring Event","name":"RecurringEvent","ui":{"previewSrc":"/images/thumbs/tina/recurring-event.jpg"},"fields":[{"type":"string","label":"Apply Link Redirect","name":"applyLinkRedirect","namespace":["caseStudy","_body","RecurringEvent","applyLinkRedirect"],"searchable":true,"uid":false},{"type":"string","label":"Day","name":"day","options":[{"label":"Monday","value":"monday"},{"label":"Tuesday","value":"tuesday"},{"label":"Wednesday","value":"wednesday"},{"label":"Thursday","value":"thursday"},{"label":"Friday","value":"friday"},{"label":"Saturday","value":"saturday"},{"label":"Sunday","value":"sunday"}],"required":true,"namespace":["caseStudy","_body","RecurringEvent","day"],"searchable":true,"uid":false}],"namespace":["caseStudy","_body","RecurringEvent"]},{"name":"SectionHeader","label":"Section Header","ui":{"previewSrc":"/images/thumbs/tina/section-header.jpg"},"fields":[{"type":"string","label":"Header Text","name":"headerText","namespace":["caseStudy","_body","SectionHeader","headerText"],"searchable":true,"uid":false}],"namespace":["caseStudy","_body","SectionHeader"]},{"name":"ServiceCards","label":"Service Cards","ui":{"previewSrc":"/images/thumbs/tina/services-cards.jpg"},"fields":[{"type":"string","label":"Big Cards Label","name":"bigCardsLabel","namespace":["caseStudy","_body","ServiceCards","bigCardsLabel"],"searchable":true,"uid":false},{"label":"Big Cards","name":"bigCards","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["caseStudy","content","ServiceCards","bigCards","title"]},{"type":"string","label":"Description","component":"textarea","name":"description","namespace":["caseStudy","content","ServiceCards","bigCards","description"]},{"type":"string","label":"URL","name":"link","namespace":["caseStudy","content","ServiceCards","bigCards","link"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Red","value":"red"},{"label":"Light Gray","value":"lightgray"},{"label":"Medium Gray","value":"mediumgray"},{"label":"Dark Gray","value":"darkgray"}],"namespace":["caseStudy","content","ServiceCards","bigCards","color"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","ServiceCards","bigCards","imgSrc","uploadDir"]},"namespace":["caseStudy","content","ServiceCards","bigCards","imgSrc"]}],"namespace":["caseStudy","_body","ServiceCards","bigCards"],"searchable":true,"uid":false},{"type":"string","label":"Small Cards Label","name":"smallCardsLabel","namespace":["caseStudy","_body","ServiceCards","smallCardsLabel"],"searchable":true,"uid":false},{"label":"Small Cards","name":"smallCards","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["caseStudy","content","ServiceCards","smallCards","title"]},{"type":"string","label":"URL","name":"link","namespace":["caseStudy","content","ServiceCards","smallCards","link"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Red","value":"red"},{"label":"Light Gray","value":"lightgray"},{"label":"Medium Gray","value":"mediumgray"},{"label":"Dark Gray","value":"darkgray"}],"namespace":["caseStudy","content","ServiceCards","smallCards","color"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","ServiceCards","smallCards","imgSrc","uploadDir"]},"namespace":["caseStudy","content","ServiceCards","smallCards","imgSrc"]},{"type":"boolean","label":"External Page","description":"Select this if the link is not part of the website. This includes SSW.Rules, and SSW.People links","name":"isExternal","namespace":["caseStudy","content","ServiceCards","smallCards","isExternal"]}],"namespace":["caseStudy","_body","ServiceCards","smallCards"],"searchable":true,"uid":false},{"label":"Links","name":"links","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["caseStudy","content","ServiceCards","links","label"]},{"type":"string","label":"URL","name":"link","namespace":["caseStudy","content","ServiceCards","links","link"]}],"namespace":["caseStudy","_body","ServiceCards","links"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["caseStudy","_body","ServiceCards","backgroundColor"],"searchable":true,"uid":false}],"namespace":["caseStudy","_body","ServiceCards"]},{"label":"Table Layout","name":"TableLayout","ui":{"previewSrc":"/images/thumbs/tina/table-layout.jpg"},"fields":[{"label":"Table Style","name":"tableStyle","type":"string","options":["none","basicBorder","styled","benefits"],"namespace":["caseStudy","_body","TableLayout","tableStyle"],"searchable":true,"uid":false},{"label":"First column bolded + left aligned","name":"firstColBold","type":"boolean","required":false,"namespace":["caseStudy","_body","TableLayout","firstColBold"],"searchable":true,"uid":false},{"type":"string","label":"Table Headers","name":"headers","list":true,"namespace":["caseStudy","_body","TableLayout","headers"],"searchable":true,"uid":false},{"type":"object","label":"Rows","name":"rows","list":true,"fields":[{"type":"object","label":"Cells","name":"cells","list":true,"fields":[{"type":"string","label":"Value","name":"cellValue","required":true,"component":{"namespace":["page","beforeBody","TableLayout","rows","cells","cellValue",""]},"namespace":["consulting","_body","TableLayout","rows","cells","cellValue"]}],"ui":{},"namespace":["caseStudy","content","TableLayout","rows","cells"]},{"type":"boolean","label":"Is Heading","name":"isHeader","required":false,"namespace":["caseStudy","content","TableLayout","rows","isHeader"]}],"ui":{},"namespace":["caseStudy","_body","TableLayout","rows"],"searchable":true,"uid":false}],"namespace":["caseStudy","_body","TableLayout"]},{"name":"TestimonialsList","label":"Testimonials List","ui":{"previewSrc":"/images/thumbs/tina/testimonials.jpg"},"fields":[{"type":"object","label":"Exclude Categories","name":"excludedCategories","ui":{},"list":true,"fields":[{"type":"reference","label":"Category Name","name":"categoryName","collections":["testimonialCategories"],"namespace":["caseStudy","content","TestimonialsList","excludedCategories","categoryName"]}],"namespace":["caseStudy","_body","TestimonialsList","excludedCategories"],"searchable":true,"uid":false}],"namespace":["caseStudy","_body","TestimonialsList"]},{"label":"Training Information","name":"TrainingInformation","ui":{"previewSrc":"/images/thumbs/tina/training-information.jpg"},"fields":[{"type":"object","label":"Training Information Items","name":"trainingInformationItems","list":true,"fields":[{"type":"string","label":"Header","name":"header","namespace":["caseStudy","content","TrainingInformation","trainingInformationItems","header"]},{"type":"rich-text","label":"Body","name":"body","templates":[{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["consulting","afterBody","TrainingInformation","trainingInformationItems","body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["consulting","afterBody","TrainingInformation","trainingInformationItems","body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["consulting","afterBody","TrainingInformation","trainingInformationItems","body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["consulting","afterBody","TrainingInformation","trainingInformationItems","body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["consulting","afterBody","TrainingInformation","trainingInformationItems","body","VerticalListItem","afterBody"]}],"namespace":["consulting","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem"]},{"label":"Recurring Event","name":"RecurringEvent","ui":{"previewSrc":"/images/thumbs/tina/recurring-event.jpg"},"fields":[{"type":"string","label":"Apply Link Redirect","name":"applyLinkRedirect","namespace":["consulting","afterBody","TrainingInformation","trainingInformationItems","body","RecurringEvent","applyLinkRedirect"]},{"type":"string","label":"Day","name":"day","options":[{"label":"Monday","value":"monday"},{"label":"Tuesday","value":"tuesday"},{"label":"Wednesday","value":"wednesday"},{"label":"Thursday","value":"thursday"},{"label":"Friday","value":"friday"},{"label":"Saturday","value":"saturday"},{"label":"Sunday","value":"sunday"}],"required":true,"namespace":["consulting","afterBody","TrainingInformation","trainingInformationItems","body","RecurringEvent","day"]}],"namespace":["consulting","_body","TrainingInformation","trainingInformationItems","body","RecurringEvent"]}],"namespace":["caseStudy","content","TrainingInformation","trainingInformationItems","body"]}],"namespace":["caseStudy","_body","TrainingInformation","trainingInformationItems"],"searchable":true,"uid":false}],"namespace":["caseStudy","_body","TrainingInformation"]},{"label":"Training Learning Outcomes","name":"TrainingLearningOutcome","ui":{"previewSrc":"/images/thumbs/tina/training-learning-outcomes.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["caseStudy","_body","TrainingLearningOutcome","header"],"searchable":true,"uid":false},{"type":"object","label":"List Items","name":"listItems","list":true,"fields":[{"type":"string","label":"Title","name":"title","namespace":["caseStudy","content","TrainingLearningOutcome","listItems","title"]},{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["caseStudy","content","TrainingLearningOutcome","listItems","content"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","TrainingLearningOutcome","listItems","icon","uploadDir"]},"namespace":["caseStudy","content","TrainingLearningOutcome","listItems","icon"]}],"namespace":["caseStudy","_body","TrainingLearningOutcome","listItems"],"searchable":true,"uid":false}],"namespace":["caseStudy","_body","TrainingLearningOutcome"]},{"label":"Tweet Embed","name":"TweetEmbed","ui":{"previewSrc":"/images/thumbs/tina/tweet-embed.jpg"},"fields":[{"type":"string","name":"url","label":"Tweet URL","required":true,"namespace":["caseStudy","_body","TweetEmbed","url"],"searchable":true,"uid":false}],"namespace":["caseStudy","_body","TweetEmbed"]},{"name":"UpcomingEvents","label":"Upcoming Events","ui":{"previewSrc":"/images/thumbs/tina/upcoming-events.jpg","defaultItem":{"title":"Upcoming Events","numberOfEvents":30}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["caseStudy","_body","UpcomingEvents","title"],"searchable":true,"uid":false},{"type":"number","label":"Number of Events","name":"numberOfEvents","namespace":["caseStudy","_body","UpcomingEvents","numberOfEvents"],"searchable":true,"uid":false}],"namespace":["caseStudy","_body","UpcomingEvents"]},{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["caseStudy","_body","UtilityButton","buttonText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"link","required":false,"namespace":["caseStudy","_body","UtilityButton","link"],"searchable":true,"uid":false},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["caseStudy","_body","UtilityButton","size"],"searchable":true,"uid":false},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["caseStudy","_body","UtilityButton","btnIcon"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["caseStudy","_body","UtilityButton","animated"],"searchable":true,"uid":false},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["caseStudy","_body","UtilityButton","uncentered"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["caseStudy","_body","UtilityButton","removeTopMargin"],"searchable":true,"uid":false},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["caseStudy","_body","UtilityButton","openInNewTab"],"searchable":true,"uid":false}],"namespace":["caseStudy","_body","UtilityButton"]},{"name":"VerticalImageLayout","label":"Vertical Image Layout","fields":[{"type":"image","label":"Image","name":"imageSrc","uploadDir":{"namespace":["page","beforeBody","VerticalImageLayout","imageSrc","uploadDir"]},"namespace":["caseStudy","_body","VerticalImageLayout","imageSrc"],"searchable":false,"uid":false},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["caseStudy","_body","VerticalImageLayout","altText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"imageLink","namespace":["caseStudy","_body","VerticalImageLayout","imageLink"],"searchable":true,"uid":false},{"type":"number","label":"Height","name":"height","required":true,"namespace":["caseStudy","_body","VerticalImageLayout","height"],"searchable":true,"uid":false},{"type":"number","label":"Width","name":"width","required":true,"namespace":["caseStudy","_body","VerticalImageLayout","width"],"searchable":true,"uid":false},{"type":"rich-text","label":"Message","name":"message","required":true,"namespace":["caseStudy","_body","VerticalImageLayout","message"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["caseStudy","_body","VerticalImageLayout","sizes"],"searchable":true,"uid":false}],"namespace":["caseStudy","_body","VerticalImageLayout"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["caseStudy","_body","VerticalListItem","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"number","label":"Index number","name":"index","namespace":["caseStudy","_body","VerticalListItem","index"],"searchable":true,"uid":false},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["caseStudy","_body","VerticalListItem","icon"],"searchable":false,"uid":false},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["caseStudy","_body","VerticalListItem","iconScale"],"searchable":true,"uid":false},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["caseStudy","_body","VerticalListItem","afterBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["caseStudy","_body","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["caseStudy","_body","VideoEmbed","url"],"searchable":true,"uid":false},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["caseStudy","_body","VideoEmbed","videoWidth"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["caseStudy","_body","VideoEmbed","removeMargin"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["caseStudy","_body","VideoEmbed","uncentre"],"searchable":true,"uid":false},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["caseStudy","_body","VideoEmbed","overflow"],"searchable":true,"uid":false},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["caseStudy","_body","VideoEmbed","caption"],"searchable":true,"uid":false},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["caseStudy","_body","VideoEmbed","duration"],"searchable":true,"uid":false}],"namespace":["caseStudy","_body","VideoEmbed"]},{"name":"InlineJotForm","label":"In-line JotForm","ui":{"previewSrc":"/images/thumbs/tina/inline-jot-form.jpg"},"fields":[{"type":"string","name":"title","label":"Title","description":"Optional title for JotForm","namespace":["caseStudy","_body","InlineJotForm","title"],"searchable":true,"uid":false},{"type":"string","name":"jotFormId","label":"JotForm ID","required":true,"namespace":["caseStudy","_body","InlineJotForm","jotFormId"],"searchable":true,"uid":false},{"type":"string","name":"additionalClasses","label":"Additional classnames","description":"Optional styling for iframe element only","namespace":["caseStudy","_body","InlineJotForm","additionalClasses"],"searchable":true,"uid":false}],"namespace":["caseStudy","_body","InlineJotForm"]}],"namespace":["caseStudy","_body"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"AboutUs","label":"About Us","ui":{"previewSrc":"/images/thumbs/tina/about-us.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["caseStudy","content","AboutUs","backgroundColor"],"searchable":true,"uid":false},{"type":"boolean","label":"Show Map","name":"showMap","required":false,"namespace":["caseStudy","content","AboutUs","showMap"],"searchable":true,"uid":false}],"namespace":["caseStudy","content","AboutUs"]},{"label":"Agenda","name":"Agenda","ui":{"previewSrc":"/images/thumbs/tina/agenda.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["caseStudy","content","Agenda","header"],"searchable":true,"uid":false},{"type":"string","label":"Header Color","name":"textColor","options":[{"label":"Red","value":"red"},{"label":"Gray","value":"gray"},{"label":"Default","value":"default"}],"namespace":["caseStudy","content","Agenda","textColor"],"searchable":true,"uid":false},{"type":"object","label":"Agenda Items","name":"agendaItemList","ui":{},"list":true,"fields":[{"type":"string","label":"Placeholder Text","name":"placeholder","namespace":["consulting","_body","Agenda","agendaItemList","placeholder"]},{"type":"rich-text","label":"Body","name":"body","templates":[{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["videoProduction","_body","Agenda","agendaItemList","body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["videoProduction","_body","Agenda","agendaItemList","body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["videoProduction","_body","Agenda","agendaItemList","body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["videoProduction","_body","Agenda","agendaItemList","body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["videoProduction","_body","Agenda","agendaItemList","body","VerticalListItem","afterBody"]}],"namespace":["consulting","afterBody","Agenda","agendaItemList","body","VerticalListItem"]}],"namespace":["consulting","_body","Agenda","agendaItemList","body"]}],"namespace":["caseStudy","content","Agenda","agendaItemList"],"searchable":true,"uid":false}],"namespace":["caseStudy","content","Agenda"]},{"label":"Agreement Form","name":"AgreementForm","ui":{"previewSrc":"/images/thumbs/tina/agreement-form.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["caseStudy","content","AgreementForm","backgroundColor"],"searchable":true,"uid":false},{"type":"object","label":"Form fields","name":"fields","list":true,"fields":[{"type":"string","label":"ID","name":"id","required":true,"namespace":["consulting","_body","AgreementForm","fields","id"]},{"type":"string","label":"Label","name":"label","required":true,"namespace":["consulting","_body","AgreementForm","fields","label"]},{"type":"string","label":"Placeholder","name":"placeholder","namespace":["consulting","_body","AgreementForm","fields","placeholder"]},{"type":"boolean","label":"Resizeable","name":"resizeable","required":true,"namespace":["consulting","_body","AgreementForm","fields","resizeable"]}],"namespace":["caseStudy","content","AgreementForm","fields"],"searchable":true,"uid":false}],"namespace":["caseStudy","content","AgreementForm"]},{"label":"Interest Form","name":"InterestForm","ui":{"previewSrc":"/images/thumbs/tina/interest-form.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["caseStudy","content","InterestForm","buttonText"],"searchable":true,"uid":false}],"namespace":["caseStudy","content","InterestForm"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["caseStudy","content","BookingButton","buttonText"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","namespace":["caseStudy","content","BookingButton","animated"],"searchable":true,"uid":false},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["caseStudy","content","BookingButton","buttonSubtitle"],"searchable":true,"uid":false}],"namespace":["caseStudy","content","BookingButton"]},{"name":"BuiltOnAzure","label":"Built on Azure","ui":{"previewSrc":"/images/thumbs/tina/built-on-azure.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["caseStudy","content","BuiltOnAzure","backgroundColor"],"searchable":true,"uid":false}],"namespace":["caseStudy","content","BuiltOnAzure"]},{"name":"Carousel","label":"Carousel","ui":{"previewSrc":"/images/thumbs/tina/carousel.jpg"},"fields":[{"label":"Items","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Item description","link":"/","openIn":"sameWindow"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["consulting","_body","Carousel","items","label"]},{"type":"string","label":"URL","name":"link","description":"If link contains ssw.com.au, you can skip the full URL and just use the path. e.g. /services","namespace":["consulting","_body","Carousel","items","link"]},{"type":"string","label":"Open in","name":"openIn","description":"If it is external link, please select 'New window' option.","options":[{"label":"Same window","value":"sameWindow"},{"label":"Modal","value":"modal"},{"label":"New window","value":"newWindow"}],"namespace":["consulting","_body","Carousel","items","openIn"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","Carousel","items","imgSrc","uploadDir"]},"namespace":["consulting","_body","Carousel","items","imgSrc"]}],"namespace":["caseStudy","content","Carousel","items"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["caseStudy","content","Carousel","backgroundColor"],"searchable":true,"uid":false},{"type":"number","label":"Delay (Seconds)","name":"delay","required":true,"namespace":["caseStudy","content","Carousel","delay"],"searchable":true,"uid":false},{"type":"boolean","label":"Show on mobile devices","name":"showOnMobileDevices","namespace":["caseStudy","content","Carousel","showOnMobileDevices"],"searchable":true,"uid":false}],"namespace":["caseStudy","content","Carousel"]},{"name":"Citation","label":"Citation","fields":[{"type":"string","label":"author","name":"author","namespace":["caseStudy","content","Citation","author"],"searchable":true,"uid":false},{"type":"string","label":"article","name":"article","required":true,"namespace":["caseStudy","content","Citation","article"],"searchable":true,"uid":false}],"namespace":["caseStudy","content","Citation"]},{"label":"Client List","name":"ClientList","ui":{"previewSrc":"/images/thumbs/tina/clients-list.jpg"},"fields":[{"type":"object","name":"categories","label":"Categories","list":true,"fields":[{"type":"reference","name":"category","label":"Category","collections":["clientCategories"],"namespace":["consulting","_body","ClientList","categories","category"]}],"ui":{},"namespace":["caseStudy","content","ClientList","categories"],"searchable":true,"uid":false},{"type":"object","name":"clients","label":"Clients list","list":true,"ui":{"previewSrc":"/images/thumbs/tina/clients-list.jpg"},"fields":[{"type":"string","name":"name","label":"Name","namespace":["consulting","_body","ClientList","clients","name"]},{"type":"image","name":"logo","label":"Logo","namespace":["consulting","_body","ClientList","clients","logo"]},{"type":"string","name":"logoUrl","label":"Logo URL","namespace":["consulting","_body","ClientList","clients","logoUrl"]},{"type":"rich-text","name":"content","label":"Content","templates":[{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["videoProduction","_body","ClientList","clients","content","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["videoProduction","_body","ClientList","clients","content","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["videoProduction","_body","ClientList","clients","content","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["videoProduction","_body","ClientList","clients","content","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["videoProduction","_body","ClientList","clients","content","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["videoProduction","_body","ClientList","clients","content","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["videoProduction","_body","ClientList","clients","content","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["videoProduction","_body","ClientList","clients","content","UtilityButton","openInNewTab"]}],"namespace":["consulting","afterBody","ClientList","clients","content","UtilityButton"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["videoProduction","_body","ClientList","clients","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["videoProduction","_body","ClientList","clients","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["videoProduction","_body","ClientList","clients","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["videoProduction","_body","ClientList","clients","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["videoProduction","_body","ClientList","clients","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["videoProduction","_body","ClientList","clients","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["videoProduction","_body","ClientList","clients","content","VideoEmbed","duration"]}],"namespace":["consulting","afterBody","ClientList","clients","content","VideoEmbed"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["videoProduction","_body","ClientList","clients","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["videoProduction","_body","ClientList","clients","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["videoProduction","_body","ClientList","clients","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["videoProduction","_body","ClientList","clients","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["videoProduction","_body","ClientList","clients","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["videoProduction","_body","ClientList","clients","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["videoProduction","_body","ClientList","clients","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["videoProduction","_body","ClientList","clients","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["videoProduction","_body","ClientList","clients","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["videoProduction","_body","ClientList","clients","content","CustomImage","sizes"]}],"namespace":["consulting","afterBody","ClientList","clients","content","CustomImage"]},{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["videoProduction","_body","ClientList","clients","content","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["videoProduction","_body","ClientList","clients","content","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["employment","booking","bookingBody","ClientList","clients","content","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","booking","bookingBody","ClientList","clients","content","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["employment","booking","bookingBody","ClientList","clients","content","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","booking","bookingBody","ClientList","clients","content","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","booking","bookingBody","ClientList","clients","content","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["employment","booking","bookingBody","ClientList","clients","content","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["employment","booking","bookingBody","ClientList","clients","content","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["employment","booking","bookingBody","ClientList","clients","content","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["employment","booking","bookingBody","ClientList","clients","content","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","booking","bookingBody","ClientList","clients","content","ContentCard","content","CustomImage","sizes"]}],"namespace":["videoProduction","afterBody","ClientList","clients","content","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["employment","booking","bookingBody","ClientList","clients","content","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["employment","booking","bookingBody","ClientList","clients","content","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["employment","booking","bookingBody","ClientList","clients","content","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["employment","booking","bookingBody","ClientList","clients","content","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["employment","booking","bookingBody","ClientList","clients","content","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["videoProduction","afterBody","ClientList","clients","content","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["employment","booking","bookingBody","ClientList","clients","content","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["employment","booking","bookingBody","ClientList","clients","content","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["employment","booking","bookingBody","ClientList","clients","content","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["employment","booking","bookingBody","ClientList","clients","content","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["employment","booking","bookingBody","ClientList","clients","content","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["employment","booking","bookingBody","ClientList","clients","content","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["employment","booking","bookingBody","ClientList","clients","content","ContentCard","content","VideoEmbed","duration"]}],"namespace":["videoProduction","afterBody","ClientList","clients","content","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","booking","bookingBody","ClientList","clients","content","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["employment","booking","bookingBody","ClientList","clients","content","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["employment","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["employment","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["employment","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["employment","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["employment","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["employment","booking","bookingBody","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["videoProduction","afterBody","ClientList","clients","content","ContentCard","content","ColorBlock"]}],"namespace":["videoProduction","_body","ClientList","clients","content","ContentCard","content"]}],"namespace":["consulting","afterBody","ClientList","clients","content","ContentCard"]}],"namespace":["consulting","_body","ClientList","clients","content"]},{"type":"string","name":"caseStudyUrl","label":"Case study URL","namespace":["consulting","_body","ClientList","clients","caseStudyUrl"]},{"type":"object","name":"categories","label":"Categories","list":true,"ui":{},"fields":[{"type":"reference","name":"category","label":"Category","collections":["clientCategories"],"namespace":["consulting","afterBody","ClientList","clients","categories","category"]}],"namespace":["consulting","_body","ClientList","clients","categories"]}],"namespace":["caseStudy","content","ClientList","clients"],"searchable":true,"uid":false}],"namespace":["caseStudy","content","ClientList"]},{"name":"ClientLogos","label":"Client Logos","ui":{"previewSrc":"/images/thumbs/tina/client-logos.jpg"},"fields":[{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["caseStudy","content","ClientLogos","altText"],"searchable":true,"uid":false}],"namespace":["caseStudy","content","ClientLogos"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["caseStudy","content","ColorBlock","title"],"searchable":true,"uid":false},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["caseStudy","content","ColorBlock","subTitle"],"searchable":true,"uid":false},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["consulting","_body","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["consulting","_body","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["consulting","_body","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["consulting","_body","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["consulting","_body","ColorBlock","colorRow","caption"]}],"namespace":["caseStudy","content","ColorBlock","colorRow"],"searchable":true,"uid":false}],"namespace":["caseStudy","content","ColorBlock"]},{"name":"ColorPalette","label":"Color Palette","ui":{"previewSrc":"/images/thumbs/tina/color-palette.jpg"},"fields":[{"type":"string","label":"Name","name":"name","namespace":["caseStudy","content","ColorPalette","name"],"searchable":true,"uid":false}],"namespace":["caseStudy","content","ColorPalette"]},{"name":"Content","label":"Content","ui":{"previewSrc":"/images/thumbs/tina/content.jpg","defaultItem":{"body":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["caseStudy","content","Content","title"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["consulting","afterBody","Content","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["consulting","afterBody","Content","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["consulting","afterBody","Content","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["consulting","afterBody","Content","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["consulting","afterBody","Content","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["consulting","afterBody","Content","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["consulting","afterBody","Content","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["consulting","afterBody","Content","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["consulting","afterBody","Content","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["consulting","afterBody","Content","content","CustomImage","sizes"]}],"namespace":["consulting","_body","Content","content","CustomImage"]},{"name":"ClientLogos","label":"Client Logos","ui":{"previewSrc":"/images/thumbs/tina/client-logos.jpg"},"fields":[{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["consulting","afterBody","Content","content","ClientLogos","altText"]}],"namespace":["consulting","_body","Content","content","ClientLogos"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["consulting","afterBody","Content","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["consulting","afterBody","Content","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["consulting","afterBody","Content","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["consulting","afterBody","Content","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["consulting","afterBody","Content","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["consulting","afterBody","Content","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["consulting","afterBody","Content","content","VideoEmbed","duration"]}],"namespace":["consulting","_body","Content","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["consulting","afterBody","Content","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["consulting","afterBody","Content","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["videoProduction","_body","Content","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["videoProduction","_body","Content","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["videoProduction","_body","Content","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["videoProduction","_body","Content","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["videoProduction","_body","Content","content","ColorBlock","colorRow","caption"]}],"namespace":["consulting","afterBody","Content","content","ColorBlock","colorRow"]}],"namespace":["consulting","_body","Content","content","ColorBlock"]}],"namespace":["caseStudy","content","Content","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Container Padding","name":"paddingClass","options":["Mobile: No Padding","Mobile: No Top and Horizontal Padding"],"namespace":["caseStudy","content","Content","paddingClass"],"searchable":true,"uid":false},{"type":"string","label":"Text size","name":"size","options":[{"label":"small","value":"sm"},{"label":"normal","value":"base"},{"label":"large","value":"lg"},{"label":"extra large","value":"xl"},{"label":"2x large","value":"2xl"}],"namespace":["caseStudy","content","Content","size"],"searchable":true,"uid":false},{"type":"string","label":"Align","name":"align","options":[{"label":"Left","value":"left"},{"label":"Center","value":"center"},{"label":"Right","value":"right"}],"namespace":["caseStudy","content","Content","align"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["caseStudy","content","Content","backgroundColor"],"searchable":true,"uid":false}],"namespace":["caseStudy","content","Content"]},{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["caseStudy","content","ContentCard","prose"],"searchable":true,"uid":false},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["caseStudy","content","ContentCard","centerAlignedText"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["consulting","afterBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["consulting","afterBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["consulting","afterBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["consulting","afterBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["consulting","afterBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["consulting","afterBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["consulting","afterBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["consulting","afterBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["consulting","afterBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["consulting","afterBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["consulting","_body","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["consulting","afterBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["consulting","afterBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["consulting","afterBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["consulting","afterBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["consulting","afterBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["consulting","_body","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["consulting","afterBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["consulting","afterBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["consulting","afterBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["consulting","afterBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["consulting","afterBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["consulting","afterBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["consulting","afterBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["consulting","_body","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["consulting","afterBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["consulting","afterBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["videoProduction","_body","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["videoProduction","_body","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["videoProduction","_body","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["videoProduction","_body","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["videoProduction","_body","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["consulting","afterBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["consulting","_body","ContentCard","content","ColorBlock"]}],"namespace":["caseStudy","content","ContentCard","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["caseStudy","content","ContentCard"]},{"name":"CustomDownloadButton","label":"Custom Download Button","ui":{"previewSrc":"/images/thumbs/tina/custom-download-button.jpg"},"fields":[{"type":"string","label":"Text","name":"btnText","namespace":["caseStudy","content","CustomDownloadButton","btnText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"btnLink","namespace":["caseStudy","content","CustomDownloadButton","btnLink"],"searchable":true,"uid":false}],"namespace":["caseStudy","content","CustomDownloadButton"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["caseStudy","content","CustomImage","src"],"searchable":false,"uid":false},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["caseStudy","content","CustomImage","altText"],"searchable":true,"uid":false},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["caseStudy","content","CustomImage","alignment"],"searchable":true,"uid":false},{"type":"number","label":"Height","name":"height","required":true,"namespace":["caseStudy","content","CustomImage","height"],"searchable":true,"uid":false},{"type":"number","label":"Width","name":"width","required":true,"namespace":["caseStudy","content","CustomImage","width"],"searchable":true,"uid":false},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["caseStudy","content","CustomImage","link"],"searchable":true,"uid":false},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["caseStudy","content","CustomImage","customClass"],"searchable":true,"uid":false},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["caseStudy","content","CustomImage","caption"],"searchable":true,"uid":false},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["caseStudy","content","CustomImage","captionColor"],"searchable":true,"uid":false},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["caseStudy","content","CustomImage","sizes"],"searchable":true,"uid":false}],"namespace":["caseStudy","content","CustomImage"]},{"name":"DomainFromQuery","label":"Domain from query","ui":{"previewSrc":"/images/thumbs/tina/domain-from-query.jpg"},"fields":[{"name":"title","label":"Title","type":"string","description":"This is a H1 heading","namespace":["caseStudy","content","DomainFromQuery","title"],"searchable":true,"uid":false},{"name":"showDomain","label":"Show domain name","type":"boolean","description":"Query param in URL must have key of 'domain'","namespace":["caseStudy","content","DomainFromQuery","showDomain"],"searchable":true,"uid":false}],"namespace":["caseStudy","content","DomainFromQuery"]},{"name":"DownloadBlock","label":"Download Block","ui":{"previewSrc":"/images/thumbs/tina/download-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["caseStudy","content","DownloadBlock","title"],"searchable":true,"uid":false},{"type":"object","label":"Downloads","name":"downloads","ui":{},"list":true,"fields":[{"type":"string","label":"Header","name":"header","namespace":["consulting","_body","DownloadBlock","downloads","header"]},{"type":"image","label":"Image","name":"img","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","img","uploadDir"]},"namespace":["consulting","_body","DownloadBlock","downloads","img"]},{"type":"string","label":"Image Background","name":"imgBackground","options":["black","grey","white","darkgrey","darkgreen"],"namespace":["consulting","_body","DownloadBlock","downloads","imgBackground"]},{"type":"string","label":"First Link Text","name":"firstLinkText","description":"Defaults to PNG","namespace":["consulting","_body","DownloadBlock","downloads","firstLinkText"]},{"type":"image","label":"First Link","name":"firstLink","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","firstLink","uploadDir"]},"namespace":["consulting","_body","DownloadBlock","downloads","firstLink"]},{"type":"string","label":"Second Link Text","name":"secondLinkText","description":"Defaults to PDF","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","secondLinkText","uploadDir"]},"namespace":["consulting","_body","DownloadBlock","downloads","secondLinkText"]},{"type":"image","label":"Second Link","name":"secondLink","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","secondLink","uploadDir"]},"namespace":["consulting","_body","DownloadBlock","downloads","secondLink"]}],"namespace":["caseStudy","content","DownloadBlock","downloads"],"searchable":true,"uid":false},{"type":"boolean","label":"Bottom border","name":"bottomBorder","namespace":["caseStudy","content","DownloadBlock","bottomBorder"],"searchable":true,"uid":false}],"namespace":["caseStudy","content","DownloadBlock"]},{"name":"DynamicColumns","label":"Dynamic Column Layout","fields":[{"type":"rich-text","label":"Column text body","name":"colBody","required":true,"namespace":["caseStudy","content","DynamicColumns","colBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"number","label":"Number of columns","name":"colCount","required":true,"ui":{},"namespace":["caseStudy","content","DynamicColumns","colCount"],"searchable":true,"uid":false}],"namespace":["caseStudy","content","DynamicColumns"]},{"name":"EventBooking","label":"Events Booking","ui":{"previewSrc":"/images/thumbs/tina/events-booking.jpg"},"fields":[{"type":"number","label":"Duration (In Days)","name":"eventDurationInDays","required":true,"namespace":["caseStudy","content","EventBooking","eventDurationInDays"],"searchable":true,"uid":false},{"type":"number","label":"Price","name":"price","required":true,"namespace":["caseStudy","content","EventBooking","price"],"searchable":true,"uid":false},{"type":"number","label":"Discount Price","name":"discountPrice","namespace":["caseStudy","content","EventBooking","discountPrice"],"searchable":true,"uid":false},{"type":"string","name":"gstText","label":"Select GST Option","options":["inc GST","+ GST"],"required":true,"namespace":["caseStudy","content","EventBooking","gstText"],"searchable":true,"uid":false},{"type":"string","label":"Discount Note","name":"discountNote","namespace":["caseStudy","content","EventBooking","discountNote"],"searchable":true,"uid":false},{"type":"object","label":"Event","name":"eventList","ui":{},"list":true,"fields":[{"type":"string","label":"City","name":"city","namespace":["consulting","_body","EventBooking","eventList","city"]},{"type":"datetime","label":"Start Date","name":"date","ui":{},"namespace":["consulting","_body","EventBooking","eventList","date"]},{"type":"string","label":"Booking URL","name":"bookingURL","namespace":["consulting","_body","EventBooking","eventList","bookingURL"]},{"type":"reference","label":"Location","name":"location","collections":["locations"],"namespace":["consulting","_body","EventBooking","eventList","location"]}],"namespace":["caseStudy","content","EventBooking","eventList"],"searchable":true,"uid":false}],"namespace":["caseStudy","content","EventBooking"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["consulting","afterBody","EventLink","content","Flag","country"]}],"namespace":["consulting","_body","EventLink","content","Flag"]}],"namespace":["caseStudy","content","EventLink","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Link","name":"link","namespace":["caseStudy","content","EventLink","link"],"searchable":true,"uid":false},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["caseStudy","content","EventLink","eventThumbnail"],"searchable":false,"uid":false},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["caseStudy","content","EventLink","thumbnailAlt"],"searchable":true,"uid":false}],"namespace":["caseStudy","content","EventLink"]},{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["caseStudy","content","Flag","country"],"searchable":true,"uid":false}],"namespace":["caseStudy","content","Flag"]},{"name":"FixedColumns","label":"Fixed Column Layout (2 columns)","ui":{"previewSrc":"/images/thumbs/tina/fixed-columns.jpg"},"fields":[{"type":"rich-text","label":"Header Section (Optional)","name":"headerSection","namespace":["caseStudy","content","FixedColumns","headerSection"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"First column text","name":"firstColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["consulting","afterBody","FixedColumns","firstColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["consulting","afterBody","FixedColumns","firstColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["videoProduction","afterBody","FixedColumns","firstColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["videoProduction","afterBody","FixedColumns","firstColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["videoProduction","afterBody","FixedColumns","firstColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["videoProduction","afterBody","FixedColumns","firstColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["videoProduction","afterBody","FixedColumns","firstColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["videoProduction","afterBody","FixedColumns","firstColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["videoProduction","afterBody","FixedColumns","firstColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["videoProduction","afterBody","FixedColumns","firstColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["videoProduction","afterBody","FixedColumns","firstColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["videoProduction","afterBody","FixedColumns","firstColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["videoProduction","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["videoProduction","afterBody","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["videoProduction","afterBody","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["videoProduction","afterBody","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["videoProduction","afterBody","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["videoProduction","afterBody","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["videoProduction","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["videoProduction","afterBody","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["videoProduction","afterBody","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["videoProduction","afterBody","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["videoProduction","afterBody","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["videoProduction","afterBody","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["videoProduction","afterBody","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["videoProduction","afterBody","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["videoProduction","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["videoProduction","afterBody","FixedColumns","firstColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["videoProduction","afterBody","FixedColumns","firstColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["employment","booking","bookingBody","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["employment","booking","bookingBody","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["employment","booking","bookingBody","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["employment","booking","bookingBody","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["employment","booking","bookingBody","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["videoProduction","afterBody","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["videoProduction","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock"]}],"namespace":["consulting","afterBody","FixedColumns","firstColBody","ContentCard","content"]}],"namespace":["consulting","_body","FixedColumns","firstColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["consulting","afterBody","FixedColumns","firstColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["consulting","afterBody","FixedColumns","firstColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["consulting","afterBody","FixedColumns","firstColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["consulting","afterBody","FixedColumns","firstColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["consulting","afterBody","FixedColumns","firstColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["consulting","afterBody","FixedColumns","firstColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["consulting","afterBody","FixedColumns","firstColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["consulting","afterBody","FixedColumns","firstColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["consulting","afterBody","FixedColumns","firstColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["consulting","afterBody","FixedColumns","firstColBody","CustomImage","sizes"]}],"namespace":["consulting","_body","FixedColumns","firstColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["videoProduction","afterBody","FixedColumns","firstColBody","EventLink","content","Flag","country"]}],"namespace":["videoProduction","_body","FixedColumns","firstColBody","EventLink","content","Flag"]}],"namespace":["consulting","afterBody","FixedColumns","firstColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["consulting","afterBody","FixedColumns","firstColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["consulting","afterBody","FixedColumns","firstColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["consulting","afterBody","FixedColumns","firstColBody","EventLink","thumbnailAlt"]}],"namespace":["consulting","_body","FixedColumns","firstColBody","EventLink"]}],"namespace":["caseStudy","content","FixedColumns","firstColBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"Second column text","name":"secondColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["consulting","afterBody","FixedColumns","secondColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["consulting","afterBody","FixedColumns","secondColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["videoProduction","afterBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["videoProduction","afterBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["videoProduction","afterBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["videoProduction","afterBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["videoProduction","afterBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["videoProduction","afterBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["videoProduction","afterBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["videoProduction","afterBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["videoProduction","afterBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["videoProduction","afterBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["videoProduction","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["videoProduction","afterBody","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["videoProduction","afterBody","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["videoProduction","afterBody","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["videoProduction","afterBody","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["videoProduction","afterBody","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["videoProduction","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["videoProduction","afterBody","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["videoProduction","afterBody","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["videoProduction","afterBody","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["videoProduction","afterBody","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["videoProduction","afterBody","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["videoProduction","afterBody","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["videoProduction","afterBody","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["videoProduction","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["videoProduction","afterBody","FixedColumns","secondColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["videoProduction","afterBody","FixedColumns","secondColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["employment","booking","bookingBody","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["employment","booking","bookingBody","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["employment","booking","bookingBody","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["employment","booking","bookingBody","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["employment","booking","bookingBody","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["videoProduction","afterBody","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["videoProduction","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock"]}],"namespace":["consulting","afterBody","FixedColumns","secondColBody","ContentCard","content"]}],"namespace":["consulting","_body","FixedColumns","secondColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["consulting","afterBody","FixedColumns","secondColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["consulting","afterBody","FixedColumns","secondColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["consulting","afterBody","FixedColumns","secondColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["consulting","afterBody","FixedColumns","secondColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["consulting","afterBody","FixedColumns","secondColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["consulting","afterBody","FixedColumns","secondColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["consulting","afterBody","FixedColumns","secondColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["consulting","afterBody","FixedColumns","secondColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["consulting","afterBody","FixedColumns","secondColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["consulting","afterBody","FixedColumns","secondColBody","CustomImage","sizes"]}],"namespace":["consulting","_body","FixedColumns","secondColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["videoProduction","afterBody","FixedColumns","secondColBody","EventLink","content","Flag","country"]}],"namespace":["videoProduction","_body","FixedColumns","secondColBody","EventLink","content","Flag"]}],"namespace":["consulting","afterBody","FixedColumns","secondColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["consulting","afterBody","FixedColumns","secondColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["consulting","afterBody","FixedColumns","secondColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["consulting","afterBody","FixedColumns","secondColBody","EventLink","thumbnailAlt"]}],"namespace":["consulting","_body","FixedColumns","secondColBody","EventLink"]}],"namespace":["caseStudy","content","FixedColumns","secondColBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["caseStudy","content","FixedColumns"]},{"name":"FixedTabsLayout","label":"Fixed Tabs Layout","ui":{"previewSrc":"/images/thumbs/tina/fixed-tabs-layout.jpg"},"fields":[{"type":"string","name":"firstTab","label":"First Tab","namespace":["caseStudy","content","FixedTabsLayout","firstTab"],"searchable":true,"uid":false},{"type":"rich-text","name":"firstHeading","label":"First Heading","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["consulting","afterBody","FixedTabsLayout","firstHeading","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["consulting","afterBody","FixedTabsLayout","firstHeading","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["consulting","afterBody","FixedTabsLayout","firstHeading","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["consulting","afterBody","FixedTabsLayout","firstHeading","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["consulting","afterBody","FixedTabsLayout","firstHeading","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["consulting","afterBody","FixedTabsLayout","firstHeading","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["consulting","afterBody","FixedTabsLayout","firstHeading","VideoEmbed","duration"]}],"namespace":["consulting","_body","FixedTabsLayout","firstHeading","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["consulting","afterBody","FixedTabsLayout","firstHeading","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["consulting","afterBody","FixedTabsLayout","firstHeading","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["consulting","afterBody","FixedTabsLayout","firstHeading","BookingButton","buttonSubtitle"]}],"namespace":["consulting","_body","FixedTabsLayout","firstHeading","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["consulting","afterBody","FixedTabsLayout","firstHeading","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["videoProduction","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["videoProduction","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["videoProduction","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["videoProduction","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList","skills"]}],"namespace":["consulting","afterBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["videoProduction","_body","FixedTabsLayout","firstHeading","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["videoProduction","_body","FixedTabsLayout","firstHeading","ExpertBlock","link","url"]}],"namespace":["consulting","afterBody","FixedTabsLayout","firstHeading","ExpertBlock","link"]}],"namespace":["consulting","_body","FixedTabsLayout","firstHeading","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["videoProduction","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["videoProduction","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["videoProduction","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["videoProduction","afterBody","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["videoProduction","afterBody","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["videoProduction","afterBody","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["videoProduction","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["consulting","afterBody","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["consulting","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["consulting","afterBody","FixedTabsLayout","firstHeading","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["consulting","afterBody","FixedTabsLayout","firstHeading","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["consulting","afterBody","FixedTabsLayout","firstHeading","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["consulting","afterBody","FixedTabsLayout","firstHeading","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["consulting","afterBody","FixedTabsLayout","firstHeading","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["consulting","afterBody","FixedTabsLayout","firstHeading","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["consulting","afterBody","FixedTabsLayout","firstHeading","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["consulting","afterBody","FixedTabsLayout","firstHeading","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["consulting","afterBody","FixedTabsLayout","firstHeading","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["consulting","afterBody","FixedTabsLayout","firstHeading","CustomImage","sizes"]}],"namespace":["consulting","_body","FixedTabsLayout","firstHeading","CustomImage"]}],"namespace":["caseStudy","content","FixedTabsLayout","firstHeading"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","name":"firstBody","label":"First Body","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["consulting","afterBody","FixedTabsLayout","firstBody","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["consulting","afterBody","FixedTabsLayout","firstBody","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["consulting","afterBody","FixedTabsLayout","firstBody","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["consulting","afterBody","FixedTabsLayout","firstBody","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["consulting","afterBody","FixedTabsLayout","firstBody","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["consulting","afterBody","FixedTabsLayout","firstBody","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["consulting","afterBody","FixedTabsLayout","firstBody","VideoEmbed","duration"]}],"namespace":["consulting","_body","FixedTabsLayout","firstBody","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["consulting","afterBody","FixedTabsLayout","firstBody","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["consulting","afterBody","FixedTabsLayout","firstBody","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["consulting","afterBody","FixedTabsLayout","firstBody","BookingButton","buttonSubtitle"]}],"namespace":["consulting","_body","FixedTabsLayout","firstBody","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["consulting","afterBody","FixedTabsLayout","firstBody","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["videoProduction","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["videoProduction","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["videoProduction","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["videoProduction","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList","skills"]}],"namespace":["consulting","afterBody","FixedTabsLayout","firstBody","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["videoProduction","_body","FixedTabsLayout","firstBody","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["videoProduction","_body","FixedTabsLayout","firstBody","ExpertBlock","link","url"]}],"namespace":["consulting","afterBody","FixedTabsLayout","firstBody","ExpertBlock","link"]}],"namespace":["consulting","_body","FixedTabsLayout","firstBody","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["videoProduction","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["videoProduction","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["videoProduction","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["videoProduction","afterBody","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["videoProduction","afterBody","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["videoProduction","afterBody","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["videoProduction","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["consulting","afterBody","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["consulting","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["consulting","afterBody","FixedTabsLayout","firstBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["consulting","afterBody","FixedTabsLayout","firstBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["consulting","afterBody","FixedTabsLayout","firstBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["consulting","afterBody","FixedTabsLayout","firstBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["consulting","afterBody","FixedTabsLayout","firstBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["consulting","afterBody","FixedTabsLayout","firstBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["consulting","afterBody","FixedTabsLayout","firstBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["consulting","afterBody","FixedTabsLayout","firstBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["consulting","afterBody","FixedTabsLayout","firstBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["consulting","afterBody","FixedTabsLayout","firstBody","CustomImage","sizes"]}],"namespace":["consulting","_body","FixedTabsLayout","firstBody","CustomImage"]}],"namespace":["caseStudy","content","FixedTabsLayout","firstBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","name":"secondTab","label":"Second Tab","namespace":["caseStudy","content","FixedTabsLayout","secondTab"],"searchable":true,"uid":false},{"type":"rich-text","name":"secondHeading","label":"Second Heading","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["consulting","afterBody","FixedTabsLayout","secondHeading","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["consulting","afterBody","FixedTabsLayout","secondHeading","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["consulting","afterBody","FixedTabsLayout","secondHeading","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["consulting","afterBody","FixedTabsLayout","secondHeading","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["consulting","afterBody","FixedTabsLayout","secondHeading","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["consulting","afterBody","FixedTabsLayout","secondHeading","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["consulting","afterBody","FixedTabsLayout","secondHeading","VideoEmbed","duration"]}],"namespace":["consulting","_body","FixedTabsLayout","secondHeading","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["consulting","afterBody","FixedTabsLayout","secondHeading","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["consulting","afterBody","FixedTabsLayout","secondHeading","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["consulting","afterBody","FixedTabsLayout","secondHeading","BookingButton","buttonSubtitle"]}],"namespace":["consulting","_body","FixedTabsLayout","secondHeading","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["consulting","afterBody","FixedTabsLayout","secondHeading","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["videoProduction","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["videoProduction","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["videoProduction","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["videoProduction","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList","skills"]}],"namespace":["consulting","afterBody","FixedTabsLayout","secondHeading","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["videoProduction","_body","FixedTabsLayout","secondHeading","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["videoProduction","_body","FixedTabsLayout","secondHeading","ExpertBlock","link","url"]}],"namespace":["consulting","afterBody","FixedTabsLayout","secondHeading","ExpertBlock","link"]}],"namespace":["consulting","_body","FixedTabsLayout","secondHeading","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["videoProduction","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["videoProduction","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["videoProduction","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["videoProduction","afterBody","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["videoProduction","afterBody","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["videoProduction","afterBody","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["videoProduction","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["consulting","afterBody","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["consulting","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["consulting","afterBody","FixedTabsLayout","secondHeading","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["consulting","afterBody","FixedTabsLayout","secondHeading","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["consulting","afterBody","FixedTabsLayout","secondHeading","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["consulting","afterBody","FixedTabsLayout","secondHeading","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["consulting","afterBody","FixedTabsLayout","secondHeading","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["consulting","afterBody","FixedTabsLayout","secondHeading","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["consulting","afterBody","FixedTabsLayout","secondHeading","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["consulting","afterBody","FixedTabsLayout","secondHeading","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["consulting","afterBody","FixedTabsLayout","secondHeading","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["consulting","afterBody","FixedTabsLayout","secondHeading","CustomImage","sizes"]}],"namespace":["consulting","_body","FixedTabsLayout","secondHeading","CustomImage"]}],"namespace":["caseStudy","content","FixedTabsLayout","secondHeading"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","name":"secondBody","label":"Second Body","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["consulting","afterBody","FixedTabsLayout","secondBody","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["consulting","afterBody","FixedTabsLayout","secondBody","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["consulting","afterBody","FixedTabsLayout","secondBody","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["consulting","afterBody","FixedTabsLayout","secondBody","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["consulting","afterBody","FixedTabsLayout","secondBody","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["consulting","afterBody","FixedTabsLayout","secondBody","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["consulting","afterBody","FixedTabsLayout","secondBody","VideoEmbed","duration"]}],"namespace":["consulting","_body","FixedTabsLayout","secondBody","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["consulting","afterBody","FixedTabsLayout","secondBody","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["consulting","afterBody","FixedTabsLayout","secondBody","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["consulting","afterBody","FixedTabsLayout","secondBody","BookingButton","buttonSubtitle"]}],"namespace":["consulting","_body","FixedTabsLayout","secondBody","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["consulting","afterBody","FixedTabsLayout","secondBody","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["videoProduction","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["videoProduction","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["videoProduction","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["videoProduction","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList","skills"]}],"namespace":["consulting","afterBody","FixedTabsLayout","secondBody","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["videoProduction","_body","FixedTabsLayout","secondBody","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["videoProduction","_body","FixedTabsLayout","secondBody","ExpertBlock","link","url"]}],"namespace":["consulting","afterBody","FixedTabsLayout","secondBody","ExpertBlock","link"]}],"namespace":["consulting","_body","FixedTabsLayout","secondBody","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["videoProduction","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["videoProduction","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["videoProduction","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["videoProduction","afterBody","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["videoProduction","afterBody","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["videoProduction","afterBody","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["videoProduction","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["consulting","afterBody","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["consulting","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["consulting","afterBody","FixedTabsLayout","secondBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["consulting","afterBody","FixedTabsLayout","secondBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["consulting","afterBody","FixedTabsLayout","secondBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["consulting","afterBody","FixedTabsLayout","secondBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["consulting","afterBody","FixedTabsLayout","secondBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["consulting","afterBody","FixedTabsLayout","secondBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["consulting","afterBody","FixedTabsLayout","secondBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["consulting","afterBody","FixedTabsLayout","secondBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["consulting","afterBody","FixedTabsLayout","secondBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["consulting","afterBody","FixedTabsLayout","secondBody","CustomImage","sizes"]}],"namespace":["consulting","_body","FixedTabsLayout","secondBody","CustomImage"]}],"namespace":["caseStudy","content","FixedTabsLayout","secondBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["caseStudy","content","FixedTabsLayout"]},{"label":"Google Maps","name":"GoogleMaps","ui":{"previewSrc":"/images/thumbs/tina/google-maps.jpg"},"fields":[{"type":"string","label":"URL","name":"embedUrl","required":true,"namespace":["caseStudy","content","GoogleMaps","embedUrl"],"searchable":true,"uid":false},{"type":"string","label":"Width","name":"embedWidth","namespace":["caseStudy","content","GoogleMaps","embedWidth"],"searchable":true,"uid":false},{"type":"string","label":"Height","name":"embedHeight","namespace":["caseStudy","content","GoogleMaps","embedHeight"],"searchable":true,"uid":false}],"namespace":["caseStudy","content","GoogleMaps"]},{"label":"Grid Layout","name":"GridLayout","ui":{"previewSrc":"/images/thumbs/tina/grid-layout.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["caseStudy","content","GridLayout","title"],"searchable":true,"uid":false},{"type":"object","list":true,"label":"Grid Items","name":"grids","ui":{},"fields":[{"type":"string","label":"Grid Title","name":"gridTitle","namespace":["consulting","_body","GridLayout","grids","gridTitle"]},{"type":"boolean","label":"Show Grid Title","name":"showGridTitle","namespace":["consulting","_body","GridLayout","grids","showGridTitle"]},{"type":"boolean","label":"Centered Grid Title","name":"centeredGridTitle","namespace":["consulting","_body","GridLayout","grids","centeredGridTitle"]},{"type":"boolean","label":"Show Header Divider","name":"showHeaderDivider","namespace":["consulting","_body","GridLayout","grids","showHeaderDivider"]},{"type":"boolean","label":"Offset Grid Start","name":"offsetGridStart","namespace":["consulting","_body","GridLayout","grids","offsetGridStart"]},{"type":"object","label":"Blocks","name":"blocks","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["consulting","afterBody","GridLayout","grids","blocks","title"]},{"type":"boolean","label":"Show Title","name":"showTitle","namespace":["consulting","afterBody","GridLayout","grids","blocks","showTitle"]},{"type":"image","label":"Image","name":"image","uploadDir":{"namespace":["page","beforeBody","GridLayout","grids","blocks","image","uploadDir"]},"namespace":["consulting","afterBody","GridLayout","grids","blocks","image"]},{"type":"image","label":"Related Image","name":"relatedImage","uploadDir":{"namespace":["page","beforeBody","GridLayout","grids","blocks","relatedImage","uploadDir"]},"namespace":["consulting","afterBody","GridLayout","grids","blocks","relatedImage"]},{"type":"rich-text","name":"linkContent","label":"Link Content","templates":[{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["videoProduction","afterBody","GridLayout","grids","blocks","linkContent","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["videoProduction","afterBody","GridLayout","grids","blocks","linkContent","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["videoProduction","afterBody","GridLayout","grids","blocks","linkContent","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["videoProduction","afterBody","GridLayout","grids","blocks","linkContent","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["videoProduction","afterBody","GridLayout","grids","blocks","linkContent","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["videoProduction","afterBody","GridLayout","grids","blocks","linkContent","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["videoProduction","afterBody","GridLayout","grids","blocks","linkContent","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["videoProduction","afterBody","GridLayout","grids","blocks","linkContent","UtilityButton","openInNewTab"]}],"namespace":["videoProduction","_body","GridLayout","grids","blocks","linkContent","UtilityButton"]}],"namespace":["consulting","afterBody","GridLayout","grids","blocks","linkContent"]}],"namespace":["consulting","_body","GridLayout","grids","blocks"]}],"namespace":["caseStudy","content","GridLayout","grids"],"searchable":true,"uid":false}],"namespace":["caseStudy","content","GridLayout"]},{"name":"Hero","label":"Hero","ui":{"previewSrc":"/blocks/hero.png","defaultItem":{"tagline":"Here's some text above the other text","headline":"This Big Text is Totally Awesome","text":"Phasellus scelerisque, libero eu finibus rutrum, risus risus accumsan libero, nec molestie urna dui a leo."}},"fields":[{"type":"string","label":"Tagline","name":"tagline","namespace":["caseStudy","content","Hero","tagline"],"searchable":true,"uid":false},{"type":"string","label":"Headline","name":"headline","namespace":["caseStudy","content","Hero","headline"],"searchable":true,"uid":false},{"label":"Text","name":"text","type":"rich-text","namespace":["caseStudy","content","Hero","text"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"label":"Actions","name":"actions","type":"object","list":true,"ui":{"defaultItem":{"label":"Action Label","type":"button","icon":true,"link":"/"}},"fields":[{"label":"Label","name":"label","type":"string","namespace":["consulting","_body","Hero","actions","label"]},{"label":"Type","name":"type","type":"string","options":[{"label":"Button","value":"button"},{"label":"Link","value":"link"}],"namespace":["consulting","_body","Hero","actions","type"]},{"label":"Icon","name":"icon","type":"boolean","namespace":["consulting","_body","Hero","actions","icon"]},{"label":"Link","name":"link","type":"string","namespace":["consulting","_body","Hero","actions","link"]}],"namespace":["caseStudy","content","Hero","actions"],"searchable":true,"uid":false},{"type":"object","label":"Image","name":"image","fields":[{"name":"src","label":"Image Source","type":"image","namespace":["consulting","_body","Hero","image","src"]},{"name":"alt","label":"Alt Text","type":"string","namespace":["consulting","_body","Hero","image","alt"]}],"namespace":["caseStudy","content","Hero","image"],"searchable":true,"uid":false},{"type":"string","label":"Color","name":"color","options":[{"label":"Default","value":"default"},{"label":"Tint","value":"tint"},{"label":"Primary","value":"primary"}],"namespace":["caseStudy","content","Hero","color"],"searchable":true,"uid":false}],"namespace":["caseStudy","content","Hero"]},{"name":"HorizontalCard","label":"Horizontal Card","ui":{"previewSrc":"/images/thumbs/tina/horizontal-card.jpg"},"fields":[{"type":"object","label":"Cards","name":"cardList","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["consulting","_body","HorizontalCard","cardList","title"]},{"type":"rich-text","label":"Content","name":"content","namespace":["consulting","_body","HorizontalCard","cardList","content"]},{"type":"image","label":"Thumbnail","name":"thumbnail","uploadDir":{"namespace":["page","beforeBody","HorizontalCard","cardList","thumbnail","uploadDir"]},"namespace":["consulting","_body","HorizontalCard","cardList","thumbnail"]},{"type":"string","label":"Link","name":"link","namespace":["consulting","_body","HorizontalCard","cardList","link"]}],"namespace":["caseStudy","content","HorizontalCard","cardList"],"searchable":true,"uid":false},{"type":"object","label":"Button","name":"button","fields":[{"type":"string","label":"Text","name":"text","namespace":["consulting","_body","HorizontalCard","button","text"]},{"type":"string","label":"Link","name":"link","namespace":["consulting","_body","HorizontalCard","button","link"]}],"namespace":["caseStudy","content","HorizontalCard","button"],"searchable":true,"uid":false}],"namespace":["caseStudy","content","HorizontalCard"]},{"name":"InternalCarousel","label":"Internal Carousel","ui":{"previewSrc":"/images/thumbs/tina/internal-carousel.jpg"},"fields":[{"label":"Images","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Image description"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["consulting","_body","InternalCarousel","items","label"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","InternalCarousel","items","imgSrc","uploadDir"]},"namespace":["consulting","_body","InternalCarousel","items","imgSrc"]}],"namespace":["caseStudy","content","InternalCarousel","items"],"searchable":true,"uid":false},{"type":"string","label":"Header","name":"header","namespace":["caseStudy","content","InternalCarousel","header"],"searchable":true,"uid":false},{"type":"rich-text","label":"Text","name":"paragraph","isBody":false,"namespace":["caseStudy","content","InternalCarousel","paragraph"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Website","name":"website","namespace":["caseStudy","content","InternalCarousel","website"],"searchable":true,"uid":false},{"type":"object","label":"Technologies","name":"technologies","list":true,"ui":{},"fields":[{"type":"string","label":"Name","name":"name","namespace":["consulting","_body","InternalCarousel","technologies","name"]}],"namespace":["caseStudy","content","InternalCarousel","technologies"],"searchable":true,"uid":false},{"type":"string","label":"Case Study","name":"caseStudyUrl","namespace":["caseStudy","content","InternalCarousel","caseStudyUrl"],"searchable":true,"uid":false},{"type":"string","label":"Video URL","name":"videoUrl","namespace":["caseStudy","content","InternalCarousel","videoUrl"],"searchable":true,"uid":false}],"namespace":["caseStudy","content","InternalCarousel"]},{"label":"Join As Presenter","name":"joinAsPresenter","fields":[{"label":"Learn More Link","name":"link","type":"string","namespace":["caseStudy","content","joinAsPresenter","link"],"searchable":true,"uid":false},{"label":"Image","name":"img","type":"image","namespace":["caseStudy","content","joinAsPresenter","img"],"searchable":false,"uid":false}],"namespace":["caseStudy","content","joinAsPresenter"]},{"label":"Join Github","name":"joinGithub","ui":{"previewSrc":"/images/thumbs/tina/join-github.jpg"},"fields":[{"label":"Title","name":"title","type":"string","namespace":["caseStudy","content","joinGithub","title"],"searchable":true,"uid":false},{"label":"Join Github Link","name":"link","type":"string","namespace":["caseStudy","content","joinGithub","link"],"searchable":true,"uid":false}],"namespace":["caseStudy","content","joinGithub"]},{"name":"JotFormEmbed","label":"JotForm Embed","ui":{"previewSrc":"/images/thumbs/tina/jotform-embed.jpg"},"fields":[{"type":"string","name":"jotFormId","label":"JotForm Id","required":true,"namespace":["caseStudy","content","JotFormEmbed","jotFormId"],"searchable":true,"uid":false},{"type":"string","label":"Button Text","name":"buttonText","namespace":["caseStudy","content","JotFormEmbed","buttonText"],"searchable":true,"uid":false},{"type":"string","name":"containerClass","label":"Container Class","namespace":["caseStudy","content","JotFormEmbed","containerClass"],"searchable":true,"uid":false},{"type":"string","label":"Button Class","name":"buttonClass","namespace":["caseStudy","content","JotFormEmbed","buttonClass"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","namespace":["caseStudy","content","JotFormEmbed","animated"],"searchable":true,"uid":false}],"namespace":["caseStudy","content","JotFormEmbed"]},{"name":"LatestTech","label":"Latest Tech","ui":{"previewSrc":"/images/thumbs/tina/latest-tech.jpg"},"fields":[{"type":"reference","description":"Select a config file including a set of badges","collections":["userGroupGlobal"],"label":"Badges","name":"badges","namespace":["caseStudy","content","LatestTech","badges"],"searchable":true,"uid":false}],"namespace":["caseStudy","content","LatestTech"]},{"name":"LocationBlock","label":"Locations","ui":{"previewSrc":"/images/thumbs/tina/locations.jpg"},"fields":[{"type":"string","name":"title","label":"Title","namespace":["caseStudy","content","LocationBlock","title"],"searchable":true,"uid":false},{"type":"object","label":"Location List","name":"locationList","list":true,"ui":{},"fields":[{"type":"reference","collections":["locations"],"label":"Location","name":"location","namespace":["consulting","_body","LocationBlock","locationList","location"]}],"namespace":["caseStudy","content","LocationBlock","locationList"],"searchable":true,"uid":false},{"type":"object","name":"chapelWebsite","label":"Chapel Website","fields":[{"type":"string","name":"title","label":"Text","namespace":["consulting","_body","LocationBlock","chapelWebsite","title"]},{"type":"string","name":"URL","label":"URL","namespace":["consulting","_body","LocationBlock","chapelWebsite","URL"]}],"namespace":["caseStudy","content","LocationBlock","chapelWebsite"],"searchable":true,"uid":false}],"namespace":["caseStudy","content","LocationBlock"]},{"name":"NewslettersTable","label":"Newsletters Table","ui":{"previewSrc":"/images/thumbs/tina/newsletters-table.jpg"},"fields":[{"type":"string","label":"Header text","name":"headerText","namespace":["caseStudy","content","NewslettersTable","headerText"],"searchable":true,"uid":false}],"namespace":["caseStudy","content","NewslettersTable"]},{"label":"Organizer","name":"organizer","fields":[{"type":"image","label":"Profile Image","name":"profileImg","namespace":["caseStudy","content","organizer","profileImg"],"searchable":false,"uid":false},{"type":"string","label":"Profile Link","name":"profileLink","namespace":["caseStudy","content","organizer","profileLink"],"searchable":true,"uid":false},{"type":"string","label":"Name","name":"name","namespace":["caseStudy","content","organizer","name"],"searchable":true,"uid":false},{"type":"string","label":"Position","name":"position","namespace":["caseStudy","content","organizer","position"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","namespace":["caseStudy","content","organizer","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["caseStudy","content","organizer"]},{"label":"Payment Block","name":"paymentBlock","ui":{"previewSrc":"/images/thumbs/tina/payment-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["caseStudy","content","paymentBlock","title"],"searchable":true,"uid":false},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["caseStudy","content","paymentBlock","subTitle"],"searchable":true,"uid":false},{"type":"reference","label":"Payment Links","name":"payments","collections":["paymentDetails"],"namespace":["caseStudy","content","paymentBlock","payments"],"searchable":true,"uid":false},{"type":"rich-text","label":"Footer","name":"footer","namespace":["caseStudy","content","paymentBlock","footer"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"image","label":"Credit Cards Image","name":"creditImgSrc","namespace":["caseStudy","content","paymentBlock","creditImgSrc"],"searchable":false,"uid":false},{"type":"string","label":"Alt Text","name":"altTxt","namespace":["caseStudy","content","paymentBlock","altTxt"],"searchable":true,"uid":false}],"namespace":["caseStudy","content","paymentBlock"]},{"name":"PresenterBlock","label":"Presenters","ui":{"previewSrc":"/images/thumbs/tina/presenters.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["caseStudy","content","PresenterBlock","header"],"searchable":true,"uid":false},{"type":"object","name":"presenterList","label":"Presenters","list":true,"ui":{},"fields":[{"type":"reference","name":"presenter","label":"Presenters","collections":["presenter"],"namespace":["consulting","_body","PresenterBlock","presenterList","presenter"]}],"namespace":["caseStudy","content","PresenterBlock","presenterList"],"searchable":true,"uid":false},{"type":"object","label":"Other Events","name":"otherEvent","fields":[{"type":"string","label":"Title","name":"title","namespace":["consulting","_body","PresenterBlock","otherEvent","title"]},{"type":"string","label":"URL","name":"eventURL","namespace":["consulting","_body","PresenterBlock","otherEvent","eventURL"]}],"namespace":["caseStudy","content","PresenterBlock","otherEvent"],"searchable":true,"uid":false}],"namespace":["caseStudy","content","PresenterBlock"]},{"label":"Recurring Event","name":"RecurringEvent","ui":{"previewSrc":"/images/thumbs/tina/recurring-event.jpg"},"fields":[{"type":"string","label":"Apply Link Redirect","name":"applyLinkRedirect","namespace":["caseStudy","content","RecurringEvent","applyLinkRedirect"],"searchable":true,"uid":false},{"type":"string","label":"Day","name":"day","options":[{"label":"Monday","value":"monday"},{"label":"Tuesday","value":"tuesday"},{"label":"Wednesday","value":"wednesday"},{"label":"Thursday","value":"thursday"},{"label":"Friday","value":"friday"},{"label":"Saturday","value":"saturday"},{"label":"Sunday","value":"sunday"}],"required":true,"namespace":["caseStudy","content","RecurringEvent","day"],"searchable":true,"uid":false}],"namespace":["caseStudy","content","RecurringEvent"]},{"name":"SectionHeader","label":"Section Header","ui":{"previewSrc":"/images/thumbs/tina/section-header.jpg"},"fields":[{"type":"string","label":"Header Text","name":"headerText","namespace":["caseStudy","content","SectionHeader","headerText"],"searchable":true,"uid":false}],"namespace":["caseStudy","content","SectionHeader"]},{"name":"ServiceCards","label":"Service Cards","ui":{"previewSrc":"/images/thumbs/tina/services-cards.jpg"},"fields":[{"type":"string","label":"Big Cards Label","name":"bigCardsLabel","namespace":["caseStudy","content","ServiceCards","bigCardsLabel"],"searchable":true,"uid":false},{"label":"Big Cards","name":"bigCards","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["consulting","_body","ServiceCards","bigCards","title"]},{"type":"string","label":"Description","component":"textarea","name":"description","namespace":["consulting","_body","ServiceCards","bigCards","description"]},{"type":"string","label":"URL","name":"link","namespace":["consulting","_body","ServiceCards","bigCards","link"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Red","value":"red"},{"label":"Light Gray","value":"lightgray"},{"label":"Medium Gray","value":"mediumgray"},{"label":"Dark Gray","value":"darkgray"}],"namespace":["consulting","_body","ServiceCards","bigCards","color"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","ServiceCards","bigCards","imgSrc","uploadDir"]},"namespace":["consulting","_body","ServiceCards","bigCards","imgSrc"]}],"namespace":["caseStudy","content","ServiceCards","bigCards"],"searchable":true,"uid":false},{"type":"string","label":"Small Cards Label","name":"smallCardsLabel","namespace":["caseStudy","content","ServiceCards","smallCardsLabel"],"searchable":true,"uid":false},{"label":"Small Cards","name":"smallCards","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["consulting","_body","ServiceCards","smallCards","title"]},{"type":"string","label":"URL","name":"link","namespace":["consulting","_body","ServiceCards","smallCards","link"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Red","value":"red"},{"label":"Light Gray","value":"lightgray"},{"label":"Medium Gray","value":"mediumgray"},{"label":"Dark Gray","value":"darkgray"}],"namespace":["consulting","_body","ServiceCards","smallCards","color"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","ServiceCards","smallCards","imgSrc","uploadDir"]},"namespace":["consulting","_body","ServiceCards","smallCards","imgSrc"]},{"type":"boolean","label":"External Page","description":"Select this if the link is not part of the website. This includes SSW.Rules, and SSW.People links","name":"isExternal","namespace":["consulting","_body","ServiceCards","smallCards","isExternal"]}],"namespace":["caseStudy","content","ServiceCards","smallCards"],"searchable":true,"uid":false},{"label":"Links","name":"links","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["consulting","_body","ServiceCards","links","label"]},{"type":"string","label":"URL","name":"link","namespace":["consulting","_body","ServiceCards","links","link"]}],"namespace":["caseStudy","content","ServiceCards","links"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["caseStudy","content","ServiceCards","backgroundColor"],"searchable":true,"uid":false}],"namespace":["caseStudy","content","ServiceCards"]},{"label":"Table Layout","name":"TableLayout","ui":{"previewSrc":"/images/thumbs/tina/table-layout.jpg"},"fields":[{"label":"Table Style","name":"tableStyle","type":"string","options":["none","basicBorder","styled","benefits"],"namespace":["caseStudy","content","TableLayout","tableStyle"],"searchable":true,"uid":false},{"label":"First column bolded + left aligned","name":"firstColBold","type":"boolean","required":false,"namespace":["caseStudy","content","TableLayout","firstColBold"],"searchable":true,"uid":false},{"type":"string","label":"Table Headers","name":"headers","list":true,"namespace":["caseStudy","content","TableLayout","headers"],"searchable":true,"uid":false},{"type":"object","label":"Rows","name":"rows","list":true,"fields":[{"type":"object","label":"Cells","name":"cells","list":true,"fields":[{"type":"string","label":"Value","name":"cellValue","required":true,"component":{"namespace":["page","beforeBody","TableLayout","rows","cells","cellValue",""]},"namespace":["consulting","afterBody","TableLayout","rows","cells","cellValue"]}],"ui":{},"namespace":["consulting","_body","TableLayout","rows","cells"]},{"type":"boolean","label":"Is Heading","name":"isHeader","required":false,"namespace":["consulting","_body","TableLayout","rows","isHeader"]}],"ui":{},"namespace":["caseStudy","content","TableLayout","rows"],"searchable":true,"uid":false}],"namespace":["caseStudy","content","TableLayout"]},{"name":"TestimonialsList","label":"Testimonials List","ui":{"previewSrc":"/images/thumbs/tina/testimonials.jpg"},"fields":[{"type":"object","label":"Exclude Categories","name":"excludedCategories","ui":{},"list":true,"fields":[{"type":"reference","label":"Category Name","name":"categoryName","collections":["testimonialCategories"],"namespace":["consulting","_body","TestimonialsList","excludedCategories","categoryName"]}],"namespace":["caseStudy","content","TestimonialsList","excludedCategories"],"searchable":true,"uid":false}],"namespace":["caseStudy","content","TestimonialsList"]},{"label":"Training Information","name":"TrainingInformation","ui":{"previewSrc":"/images/thumbs/tina/training-information.jpg"},"fields":[{"type":"object","label":"Training Information Items","name":"trainingInformationItems","list":true,"fields":[{"type":"string","label":"Header","name":"header","namespace":["consulting","_body","TrainingInformation","trainingInformationItems","header"]},{"type":"rich-text","label":"Body","name":"body","templates":[{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["videoProduction","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["videoProduction","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["videoProduction","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["videoProduction","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["videoProduction","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","afterBody"]}],"namespace":["consulting","afterBody","TrainingInformation","trainingInformationItems","body","VerticalListItem"]},{"label":"Recurring Event","name":"RecurringEvent","ui":{"previewSrc":"/images/thumbs/tina/recurring-event.jpg"},"fields":[{"type":"string","label":"Apply Link Redirect","name":"applyLinkRedirect","namespace":["videoProduction","_body","TrainingInformation","trainingInformationItems","body","RecurringEvent","applyLinkRedirect"]},{"type":"string","label":"Day","name":"day","options":[{"label":"Monday","value":"monday"},{"label":"Tuesday","value":"tuesday"},{"label":"Wednesday","value":"wednesday"},{"label":"Thursday","value":"thursday"},{"label":"Friday","value":"friday"},{"label":"Saturday","value":"saturday"},{"label":"Sunday","value":"sunday"}],"required":true,"namespace":["videoProduction","_body","TrainingInformation","trainingInformationItems","body","RecurringEvent","day"]}],"namespace":["consulting","afterBody","TrainingInformation","trainingInformationItems","body","RecurringEvent"]}],"namespace":["consulting","_body","TrainingInformation","trainingInformationItems","body"]}],"namespace":["caseStudy","content","TrainingInformation","trainingInformationItems"],"searchable":true,"uid":false}],"namespace":["caseStudy","content","TrainingInformation"]},{"label":"Training Learning Outcomes","name":"TrainingLearningOutcome","ui":{"previewSrc":"/images/thumbs/tina/training-learning-outcomes.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["caseStudy","content","TrainingLearningOutcome","header"],"searchable":true,"uid":false},{"type":"object","label":"List Items","name":"listItems","list":true,"fields":[{"type":"string","label":"Title","name":"title","namespace":["consulting","_body","TrainingLearningOutcome","listItems","title"]},{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["consulting","_body","TrainingLearningOutcome","listItems","content"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","TrainingLearningOutcome","listItems","icon","uploadDir"]},"namespace":["consulting","_body","TrainingLearningOutcome","listItems","icon"]}],"namespace":["caseStudy","content","TrainingLearningOutcome","listItems"],"searchable":true,"uid":false}],"namespace":["caseStudy","content","TrainingLearningOutcome"]},{"label":"Tweet Embed","name":"TweetEmbed","ui":{"previewSrc":"/images/thumbs/tina/tweet-embed.jpg"},"fields":[{"type":"string","name":"url","label":"Tweet URL","required":true,"namespace":["caseStudy","content","TweetEmbed","url"],"searchable":true,"uid":false}],"namespace":["caseStudy","content","TweetEmbed"]},{"name":"UpcomingEvents","label":"Upcoming Events","ui":{"previewSrc":"/images/thumbs/tina/upcoming-events.jpg","defaultItem":{"title":"Upcoming Events","numberOfEvents":30}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["caseStudy","content","UpcomingEvents","title"],"searchable":true,"uid":false},{"type":"number","label":"Number of Events","name":"numberOfEvents","namespace":["caseStudy","content","UpcomingEvents","numberOfEvents"],"searchable":true,"uid":false}],"namespace":["caseStudy","content","UpcomingEvents"]},{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["caseStudy","content","UtilityButton","buttonText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"link","required":false,"namespace":["caseStudy","content","UtilityButton","link"],"searchable":true,"uid":false},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["caseStudy","content","UtilityButton","size"],"searchable":true,"uid":false},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["caseStudy","content","UtilityButton","btnIcon"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["caseStudy","content","UtilityButton","animated"],"searchable":true,"uid":false},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["caseStudy","content","UtilityButton","uncentered"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["caseStudy","content","UtilityButton","removeTopMargin"],"searchable":true,"uid":false},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["caseStudy","content","UtilityButton","openInNewTab"],"searchable":true,"uid":false}],"namespace":["caseStudy","content","UtilityButton"]},{"name":"VerticalImageLayout","label":"Vertical Image Layout","fields":[{"type":"image","label":"Image","name":"imageSrc","uploadDir":{"namespace":["page","beforeBody","VerticalImageLayout","imageSrc","uploadDir"]},"namespace":["caseStudy","content","VerticalImageLayout","imageSrc"],"searchable":false,"uid":false},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["caseStudy","content","VerticalImageLayout","altText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"imageLink","namespace":["caseStudy","content","VerticalImageLayout","imageLink"],"searchable":true,"uid":false},{"type":"number","label":"Height","name":"height","required":true,"namespace":["caseStudy","content","VerticalImageLayout","height"],"searchable":true,"uid":false},{"type":"number","label":"Width","name":"width","required":true,"namespace":["caseStudy","content","VerticalImageLayout","width"],"searchable":true,"uid":false},{"type":"rich-text","label":"Message","name":"message","required":true,"namespace":["caseStudy","content","VerticalImageLayout","message"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["caseStudy","content","VerticalImageLayout","sizes"],"searchable":true,"uid":false}],"namespace":["caseStudy","content","VerticalImageLayout"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["caseStudy","content","VerticalListItem","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"number","label":"Index number","name":"index","namespace":["caseStudy","content","VerticalListItem","index"],"searchable":true,"uid":false},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["caseStudy","content","VerticalListItem","icon"],"searchable":false,"uid":false},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["caseStudy","content","VerticalListItem","iconScale"],"searchable":true,"uid":false},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["caseStudy","content","VerticalListItem","afterBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["caseStudy","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["caseStudy","content","VideoEmbed","url"],"searchable":true,"uid":false},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["caseStudy","content","VideoEmbed","videoWidth"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["caseStudy","content","VideoEmbed","removeMargin"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["caseStudy","content","VideoEmbed","uncentre"],"searchable":true,"uid":false},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["caseStudy","content","VideoEmbed","overflow"],"searchable":true,"uid":false},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["caseStudy","content","VideoEmbed","caption"],"searchable":true,"uid":false},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["caseStudy","content","VideoEmbed","duration"],"searchable":true,"uid":false}],"namespace":["caseStudy","content","VideoEmbed"]},{"name":"InlineJotForm","label":"In-line JotForm","ui":{"previewSrc":"/images/thumbs/tina/inline-jot-form.jpg"},"fields":[{"type":"string","name":"title","label":"Title","description":"Optional title for JotForm","namespace":["caseStudy","content","InlineJotForm","title"],"searchable":true,"uid":false},{"type":"string","name":"jotFormId","label":"JotForm ID","required":true,"namespace":["caseStudy","content","InlineJotForm","jotFormId"],"searchable":true,"uid":false},{"type":"string","name":"additionalClasses","label":"Additional classnames","description":"Optional styling for iframe element only","namespace":["caseStudy","content","InlineJotForm","additionalClasses"],"searchable":true,"uid":false}],"namespace":["caseStudy","content","InlineJotForm"]}],"namespace":["caseStudy","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["caseStudy"]},{"label":"Consulting - Index","name":"consultingIndex","path":"content/consulting/index","format":"json","ui":{"allowedActions":{"create":false,"delete":false}},"fields":[{"type":"object","label":"SEO Values","name":"seo","fields":[{"type":"string","label":"Title (70 characters)","name":"title","ui":{},"namespace":["consultingIndex","seo","title"],"searchable":true,"uid":false},{"type":"string","label":"Description (150 characters)","name":"description","component":"textarea","ui":{},"namespace":["consultingIndex","seo","description"],"searchable":true,"uid":false},{"type":"string","label":"Canonical URL","name":"canonical","namespace":["consultingIndex","seo","canonical"],"searchable":true,"uid":false},{"type":"boolean","name":"showBreadcrumb","label":"Show Breadcrumb","namespace":["consultingIndex","seo","showBreadcrumb"],"searchable":true,"uid":false},{"label":"Images","name":"images","list":true,"type":"object","ui":{"defaultItem":{"url":"/images/ssw-default-og.jpg","width":1200,"height":630,"alt":"SSW Consulting - Enterprise Software Development"}},"fields":[{"type":"image","label":"Image Url","name":"url","require":true,"namespace":["consulting","seo","images","url"],"searchable":false,"uid":false},{"type":"number","label":"Width (px)","name":"width","namespace":["consulting","seo","images","width"],"searchable":true,"uid":false},{"type":"number","label":"Height (px)","name":"height","namespace":["consulting","seo","images","height"],"searchable":true,"uid":false},{"type":"string","label":"Image Alt Text","name":"alt","namespace":["consulting","seo","images","alt"],"searchable":true,"uid":false}],"namespace":["consultingIndex","seo","images"],"searchable":true,"uid":false}],"namespace":["consultingIndex","seo"],"searchable":true,"uid":false},{"type":"object","label":"Sidebar","name":"sidebar","list":true,"ui":{},"fields":[{"type":"string","label":"Label","name":"label","namespace":["consultingIndex","sidebar","label"],"searchable":true,"uid":false},{"type":"reference","label":"Associated Tag","name":"tag","collections":["consultingTag"],"namespace":["consultingIndex","sidebar","tag"],"searchable":true,"uid":false}],"namespace":["consultingIndex","sidebar"],"searchable":true,"uid":false},{"type":"object","label":"Categories","name":"categories","list":true,"ui":{},"fields":[{"type":"reference","label":"Category","name":"category","collections":["consultingCategory"],"namespace":["consultingIndex","categories","category"],"searchable":true,"uid":false},{"type":"object","label":"Pages","name":"pages","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["consultingIndex","categories","pages","title"],"searchable":true,"uid":false},{"type":"string","label":"Description","name":"description","ui":{"component":"textarea"},"namespace":["consultingIndex","categories","pages","description"],"searchable":true,"uid":false},{"type":"image","label":"Logo","name":"logo","uploadDir":{"namespace":["consultingIndex","categories","pages","logo","uploadDir"]},"namespace":["consultingIndex","categories","pages","logo"],"searchable":false,"uid":false},{"type":"reference","label":"Page","name":"page","collections":["consulting"],"required":true,"namespace":["consultingIndex","categories","pages","page"],"searchable":true,"uid":false},{"type":"string","label":"External URL","description":"Takes precedence over page if selected. If using this, you still have to select a (random) page.","name":"externalUrl","namespace":["consultingIndex","categories","pages","externalUrl"],"searchable":true,"uid":false},{"type":"object","label":"Tags","name":"tags","list":true,"ui":{},"fields":[{"type":"reference","label":"Tag","name":"tag","collections":["consultingTag"],"namespace":["consultingIndex","categories","pages","tags","tag"],"searchable":true,"uid":false}],"namespace":["consultingIndex","categories","pages","tags"],"searchable":true,"uid":false}],"namespace":["consultingIndex","categories","pages"],"searchable":true,"uid":false}],"namespace":["consultingIndex","categories"],"searchable":true,"uid":false}],"namespace":["consultingIndex"]},{"label":"Consulting - Pages","name":"consulting","format":"mdx","path":"content/consulting","defaultItem":{"callToAction":{"title":"Talk to us about your project","subTitle":"Connect with our Account Managers to discuss how we can help.","showCallToAction":true,"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"ui":{},"fields":[{"type":"string","name":"tip","label":"Tip","ui":{},"namespace":["consulting","tip"],"searchable":true,"uid":false},{"type":"object","label":"SEO Values","name":"seo","fields":[{"type":"string","label":"Title (70 characters)","name":"title","ui":{},"namespace":["consulting","seo","title"],"searchable":true,"uid":false},{"type":"string","label":"Description (150 characters)","name":"description","component":"textarea","ui":{},"namespace":["consulting","seo","description"],"searchable":true,"uid":false},{"type":"string","label":"Canonical URL","name":"canonical","namespace":["consulting","seo","canonical"],"searchable":true,"uid":false},{"type":"boolean","name":"showBreadcrumb","label":"Show Breadcrumb","namespace":["consulting","seo","showBreadcrumb"],"searchable":true,"uid":false},{"label":"Images","name":"images","list":true,"type":"object","ui":{"defaultItem":{"url":"/images/ssw-default-og.jpg","width":1200,"height":630,"alt":"SSW Consulting - Enterprise Software Development"}},"fields":[{"type":"image","label":"Image Url","name":"url","require":true,"namespace":["videoProduction","seo","images","url"],"searchable":false,"uid":false},{"type":"number","label":"Width (px)","name":"width","namespace":["videoProduction","seo","images","width"],"searchable":true,"uid":false},{"type":"number","label":"Height (px)","name":"height","namespace":["videoProduction","seo","images","height"],"searchable":true,"uid":false},{"type":"string","label":"Image Alt Text","name":"alt","namespace":["videoProduction","seo","images","alt"],"searchable":true,"uid":false}],"namespace":["consulting","seo","images"],"searchable":true,"uid":false}],"namespace":["consulting","seo"],"searchable":true,"uid":false},{"type":"object","label":"Testimonials","name":"testimonials","fields":[{"type":"string","label":"Tagline","name":"tagline","namespace":["consulting","testimonials","tagline"],"searchable":true,"uid":false}],"namespace":["consulting","testimonials"],"searchable":true,"uid":false},{"type":"object","label":"Booking","name":"booking","fields":[{"type":"string","label":"Title","name":"title","namespace":["consulting","booking","title"],"searchable":true,"uid":false},{"type":"string","label":"Subtitle","name":"subTitle","namespace":["consulting","booking","subTitle"],"searchable":true,"uid":false},{"type":"string","label":"Button Text","name":"buttonText","namespace":["consulting","booking","buttonText"],"searchable":true,"uid":false},{"type":"image","label":"Video Background","name":"videoBackground","uploadDir":{"namespace":["consulting","booking","videoBackground","uploadDir"]},"namespace":["consulting","booking","videoBackground"],"searchable":false,"uid":false}],"namespace":["consulting","booking"],"searchable":true,"uid":false},{"type":"object","label":"Solution","name":"solution","fields":[{"type":"string","label":"Project","name":"project","namespace":["consulting","solution","project"],"searchable":true,"uid":false}],"namespace":["consulting","solution"],"searchable":true,"uid":false},{"name":"callToAction","label":"Call to Action","description":"The call to action button for contacting SSW","type":"object","fields":[{"type":"string","label":"Title","description":"Technology title inserted via {{TITLE}}. E.g. 'Talk to us about your {{TITLE}} project'","name":"title","required":false,"namespace":["consulting","callToAction","title"],"searchable":true,"uid":false},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["consulting","callToAction","subTitle"],"searchable":true,"uid":false},{"type":"boolean","label":"Show Call to Action","name":"showCallToAction","namespace":["consulting","callToAction","showCallToAction"],"searchable":true,"uid":false},{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["consulting","callToAction","buttonText"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","namespace":["consulting","callToAction","animated"],"searchable":true,"uid":false},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["consulting","callToAction","buttonSubtitle"],"searchable":true,"uid":false}],"namespace":["consulting","callToAction"],"searchable":true,"uid":false},{"type":"object","label":"Testimonial Categories","name":"testimonialCategories","ui":{},"list":true,"fields":[{"type":"reference","label":"Testimonial Category","name":"testimonialCategory","collections":["testimonialCategories"],"required":true,"namespace":["consulting","testimonialCategories","testimonialCategory"],"searchable":true,"uid":false}],"namespace":["consulting","testimonialCategories"],"searchable":true,"uid":false},{"type":"rich-text","label":"Body","name":"_body","templates":[{"name":"AboutUs","label":"About Us","ui":{"previewSrc":"/images/thumbs/tina/about-us.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["consulting","_body","AboutUs","backgroundColor"],"searchable":true,"uid":false},{"type":"boolean","label":"Show Map","name":"showMap","required":false,"namespace":["consulting","_body","AboutUs","showMap"],"searchable":true,"uid":false}],"namespace":["consulting","_body","AboutUs"]},{"label":"Agenda","name":"Agenda","ui":{"previewSrc":"/images/thumbs/tina/agenda.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["consulting","_body","Agenda","header"],"searchable":true,"uid":false},{"type":"string","label":"Header Color","name":"textColor","options":[{"label":"Red","value":"red"},{"label":"Gray","value":"gray"},{"label":"Default","value":"default"}],"namespace":["consulting","_body","Agenda","textColor"],"searchable":true,"uid":false},{"type":"object","label":"Agenda Items","name":"agendaItemList","ui":{},"list":true,"fields":[{"type":"string","label":"Placeholder Text","name":"placeholder","namespace":["consulting","afterBody","Agenda","agendaItemList","placeholder"]},{"type":"rich-text","label":"Body","name":"body","templates":[{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["videoProduction","afterBody","Agenda","agendaItemList","body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["videoProduction","afterBody","Agenda","agendaItemList","body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["videoProduction","afterBody","Agenda","agendaItemList","body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["videoProduction","afterBody","Agenda","agendaItemList","body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["videoProduction","afterBody","Agenda","agendaItemList","body","VerticalListItem","afterBody"]}],"namespace":["videoProduction","_body","Agenda","agendaItemList","body","VerticalListItem"]}],"namespace":["consulting","afterBody","Agenda","agendaItemList","body"]}],"namespace":["consulting","_body","Agenda","agendaItemList"],"searchable":true,"uid":false}],"namespace":["consulting","_body","Agenda"]},{"label":"Agreement Form","name":"AgreementForm","ui":{"previewSrc":"/images/thumbs/tina/agreement-form.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["consulting","_body","AgreementForm","backgroundColor"],"searchable":true,"uid":false},{"type":"object","label":"Form fields","name":"fields","list":true,"fields":[{"type":"string","label":"ID","name":"id","required":true,"namespace":["consulting","afterBody","AgreementForm","fields","id"]},{"type":"string","label":"Label","name":"label","required":true,"namespace":["consulting","afterBody","AgreementForm","fields","label"]},{"type":"string","label":"Placeholder","name":"placeholder","namespace":["consulting","afterBody","AgreementForm","fields","placeholder"]},{"type":"boolean","label":"Resizeable","name":"resizeable","required":true,"namespace":["consulting","afterBody","AgreementForm","fields","resizeable"]}],"namespace":["consulting","_body","AgreementForm","fields"],"searchable":true,"uid":false}],"namespace":["consulting","_body","AgreementForm"]},{"label":"Interest Form","name":"InterestForm","ui":{"previewSrc":"/images/thumbs/tina/interest-form.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["consulting","_body","InterestForm","buttonText"],"searchable":true,"uid":false}],"namespace":["consulting","_body","InterestForm"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["consulting","_body","BookingButton","buttonText"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","namespace":["consulting","_body","BookingButton","animated"],"searchable":true,"uid":false},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["consulting","_body","BookingButton","buttonSubtitle"],"searchable":true,"uid":false}],"namespace":["consulting","_body","BookingButton"]},{"name":"BuiltOnAzure","label":"Built on Azure","ui":{"previewSrc":"/images/thumbs/tina/built-on-azure.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["consulting","_body","BuiltOnAzure","backgroundColor"],"searchable":true,"uid":false}],"namespace":["consulting","_body","BuiltOnAzure"]},{"name":"Carousel","label":"Carousel","ui":{"previewSrc":"/images/thumbs/tina/carousel.jpg"},"fields":[{"label":"Items","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Item description","link":"/","openIn":"sameWindow"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["consulting","afterBody","Carousel","items","label"]},{"type":"string","label":"URL","name":"link","description":"If link contains ssw.com.au, you can skip the full URL and just use the path. e.g. /services","namespace":["consulting","afterBody","Carousel","items","link"]},{"type":"string","label":"Open in","name":"openIn","description":"If it is external link, please select 'New window' option.","options":[{"label":"Same window","value":"sameWindow"},{"label":"Modal","value":"modal"},{"label":"New window","value":"newWindow"}],"namespace":["consulting","afterBody","Carousel","items","openIn"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","Carousel","items","imgSrc","uploadDir"]},"namespace":["consulting","afterBody","Carousel","items","imgSrc"]}],"namespace":["consulting","_body","Carousel","items"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["consulting","_body","Carousel","backgroundColor"],"searchable":true,"uid":false},{"type":"number","label":"Delay (Seconds)","name":"delay","required":true,"namespace":["consulting","_body","Carousel","delay"],"searchable":true,"uid":false},{"type":"boolean","label":"Show on mobile devices","name":"showOnMobileDevices","namespace":["consulting","_body","Carousel","showOnMobileDevices"],"searchable":true,"uid":false}],"namespace":["consulting","_body","Carousel"]},{"name":"Citation","label":"Citation","fields":[{"type":"string","label":"author","name":"author","namespace":["consulting","_body","Citation","author"],"searchable":true,"uid":false},{"type":"string","label":"article","name":"article","required":true,"namespace":["consulting","_body","Citation","article"],"searchable":true,"uid":false}],"namespace":["consulting","_body","Citation"]},{"label":"Client List","name":"ClientList","ui":{"previewSrc":"/images/thumbs/tina/clients-list.jpg"},"fields":[{"type":"object","name":"categories","label":"Categories","list":true,"fields":[{"type":"reference","name":"category","label":"Category","collections":["clientCategories"],"namespace":["consulting","afterBody","ClientList","categories","category"]}],"ui":{},"namespace":["consulting","_body","ClientList","categories"],"searchable":true,"uid":false},{"type":"object","name":"clients","label":"Clients list","list":true,"ui":{"previewSrc":"/images/thumbs/tina/clients-list.jpg"},"fields":[{"type":"string","name":"name","label":"Name","namespace":["consulting","afterBody","ClientList","clients","name"]},{"type":"image","name":"logo","label":"Logo","namespace":["consulting","afterBody","ClientList","clients","logo"]},{"type":"string","name":"logoUrl","label":"Logo URL","namespace":["consulting","afterBody","ClientList","clients","logoUrl"]},{"type":"rich-text","name":"content","label":"Content","templates":[{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["videoProduction","afterBody","ClientList","clients","content","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["videoProduction","afterBody","ClientList","clients","content","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["videoProduction","afterBody","ClientList","clients","content","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["videoProduction","afterBody","ClientList","clients","content","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["videoProduction","afterBody","ClientList","clients","content","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["videoProduction","afterBody","ClientList","clients","content","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["videoProduction","afterBody","ClientList","clients","content","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["videoProduction","afterBody","ClientList","clients","content","UtilityButton","openInNewTab"]}],"namespace":["videoProduction","_body","ClientList","clients","content","UtilityButton"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["videoProduction","afterBody","ClientList","clients","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["videoProduction","afterBody","ClientList","clients","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["videoProduction","afterBody","ClientList","clients","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["videoProduction","afterBody","ClientList","clients","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["videoProduction","afterBody","ClientList","clients","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["videoProduction","afterBody","ClientList","clients","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["videoProduction","afterBody","ClientList","clients","content","VideoEmbed","duration"]}],"namespace":["videoProduction","_body","ClientList","clients","content","VideoEmbed"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["videoProduction","afterBody","ClientList","clients","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["videoProduction","afterBody","ClientList","clients","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["videoProduction","afterBody","ClientList","clients","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["videoProduction","afterBody","ClientList","clients","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["videoProduction","afterBody","ClientList","clients","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["videoProduction","afterBody","ClientList","clients","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["videoProduction","afterBody","ClientList","clients","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["videoProduction","afterBody","ClientList","clients","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["videoProduction","afterBody","ClientList","clients","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["videoProduction","afterBody","ClientList","clients","content","CustomImage","sizes"]}],"namespace":["videoProduction","_body","ClientList","clients","content","CustomImage"]},{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["videoProduction","afterBody","ClientList","clients","content","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["videoProduction","afterBody","ClientList","clients","content","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["employment","_body","ClientList","clients","content","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","_body","ClientList","clients","content","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["employment","_body","ClientList","clients","content","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","_body","ClientList","clients","content","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","_body","ClientList","clients","content","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["employment","_body","ClientList","clients","content","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["employment","_body","ClientList","clients","content","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["employment","_body","ClientList","clients","content","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["employment","_body","ClientList","clients","content","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","_body","ClientList","clients","content","ContentCard","content","CustomImage","sizes"]}],"namespace":["employment","booking","bookingBody","ClientList","clients","content","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["employment","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["employment","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["employment","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["employment","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["employment","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["employment","booking","bookingBody","ClientList","clients","content","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["employment","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["employment","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["employment","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["employment","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["employment","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["employment","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["employment","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","duration"]}],"namespace":["employment","booking","bookingBody","ClientList","clients","content","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","_body","ClientList","clients","content","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["employment","_body","ClientList","clients","content","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["employment","benefitsBody","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["employment","benefitsBody","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["employment","benefitsBody","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["employment","benefitsBody","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["employment","benefitsBody","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["employment","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["employment","booking","bookingBody","ClientList","clients","content","ContentCard","content","ColorBlock"]}],"namespace":["videoProduction","afterBody","ClientList","clients","content","ContentCard","content"]}],"namespace":["videoProduction","_body","ClientList","clients","content","ContentCard"]}],"namespace":["consulting","afterBody","ClientList","clients","content"]},{"type":"string","name":"caseStudyUrl","label":"Case study URL","namespace":["consulting","afterBody","ClientList","clients","caseStudyUrl"]},{"type":"object","name":"categories","label":"Categories","list":true,"ui":{},"fields":[{"type":"reference","name":"category","label":"Category","collections":["clientCategories"],"namespace":["videoProduction","_body","ClientList","clients","categories","category"]}],"namespace":["consulting","afterBody","ClientList","clients","categories"]}],"namespace":["consulting","_body","ClientList","clients"],"searchable":true,"uid":false}],"namespace":["consulting","_body","ClientList"]},{"name":"ClientLogos","label":"Client Logos","ui":{"previewSrc":"/images/thumbs/tina/client-logos.jpg"},"fields":[{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["consulting","_body","ClientLogos","altText"],"searchable":true,"uid":false}],"namespace":["consulting","_body","ClientLogos"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["consulting","_body","ColorBlock","title"],"searchable":true,"uid":false},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["consulting","_body","ColorBlock","subTitle"],"searchable":true,"uid":false},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["consulting","afterBody","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["consulting","afterBody","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["consulting","afterBody","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["consulting","afterBody","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["consulting","afterBody","ColorBlock","colorRow","caption"]}],"namespace":["consulting","_body","ColorBlock","colorRow"],"searchable":true,"uid":false}],"namespace":["consulting","_body","ColorBlock"]},{"name":"ColorPalette","label":"Color Palette","ui":{"previewSrc":"/images/thumbs/tina/color-palette.jpg"},"fields":[{"type":"string","label":"Name","name":"name","namespace":["consulting","_body","ColorPalette","name"],"searchable":true,"uid":false}],"namespace":["consulting","_body","ColorPalette"]},{"name":"Content","label":"Content","ui":{"previewSrc":"/images/thumbs/tina/content.jpg","defaultItem":{"body":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["consulting","_body","Content","title"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["videoProduction","_body","Content","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["videoProduction","_body","Content","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["videoProduction","_body","Content","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["videoProduction","_body","Content","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["videoProduction","_body","Content","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["videoProduction","_body","Content","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["videoProduction","_body","Content","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["videoProduction","_body","Content","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["videoProduction","_body","Content","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["videoProduction","_body","Content","content","CustomImage","sizes"]}],"namespace":["consulting","afterBody","Content","content","CustomImage"]},{"name":"ClientLogos","label":"Client Logos","ui":{"previewSrc":"/images/thumbs/tina/client-logos.jpg"},"fields":[{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["videoProduction","_body","Content","content","ClientLogos","altText"]}],"namespace":["consulting","afterBody","Content","content","ClientLogos"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["videoProduction","_body","Content","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["videoProduction","_body","Content","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["videoProduction","_body","Content","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["videoProduction","_body","Content","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["videoProduction","_body","Content","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["videoProduction","_body","Content","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["videoProduction","_body","Content","content","VideoEmbed","duration"]}],"namespace":["consulting","afterBody","Content","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["videoProduction","_body","Content","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["videoProduction","_body","Content","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["videoProduction","afterBody","Content","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["videoProduction","afterBody","Content","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["videoProduction","afterBody","Content","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["videoProduction","afterBody","Content","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["videoProduction","afterBody","Content","content","ColorBlock","colorRow","caption"]}],"namespace":["videoProduction","_body","Content","content","ColorBlock","colorRow"]}],"namespace":["consulting","afterBody","Content","content","ColorBlock"]}],"namespace":["consulting","_body","Content","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Container Padding","name":"paddingClass","options":["Mobile: No Padding","Mobile: No Top and Horizontal Padding"],"namespace":["consulting","_body","Content","paddingClass"],"searchable":true,"uid":false},{"type":"string","label":"Text size","name":"size","options":[{"label":"small","value":"sm"},{"label":"normal","value":"base"},{"label":"large","value":"lg"},{"label":"extra large","value":"xl"},{"label":"2x large","value":"2xl"}],"namespace":["consulting","_body","Content","size"],"searchable":true,"uid":false},{"type":"string","label":"Align","name":"align","options":[{"label":"Left","value":"left"},{"label":"Center","value":"center"},{"label":"Right","value":"right"}],"namespace":["consulting","_body","Content","align"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["consulting","_body","Content","backgroundColor"],"searchable":true,"uid":false}],"namespace":["consulting","_body","Content"]},{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["consulting","_body","ContentCard","prose"],"searchable":true,"uid":false},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["consulting","_body","ContentCard","centerAlignedText"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["videoProduction","_body","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["videoProduction","_body","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["videoProduction","_body","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["videoProduction","_body","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["videoProduction","_body","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["videoProduction","_body","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["videoProduction","_body","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["videoProduction","_body","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["videoProduction","_body","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["videoProduction","_body","ContentCard","content","CustomImage","sizes"]}],"namespace":["consulting","afterBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["videoProduction","_body","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["videoProduction","_body","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["videoProduction","_body","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["videoProduction","_body","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["videoProduction","_body","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["consulting","afterBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["videoProduction","_body","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["videoProduction","_body","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["videoProduction","_body","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["videoProduction","_body","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["videoProduction","_body","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["videoProduction","_body","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["videoProduction","_body","ContentCard","content","VideoEmbed","duration"]}],"namespace":["consulting","afterBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["videoProduction","_body","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["videoProduction","_body","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["videoProduction","afterBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["videoProduction","afterBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["videoProduction","afterBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["videoProduction","afterBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["videoProduction","afterBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["videoProduction","_body","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["consulting","afterBody","ContentCard","content","ColorBlock"]}],"namespace":["consulting","_body","ContentCard","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["consulting","_body","ContentCard"]},{"name":"CustomDownloadButton","label":"Custom Download Button","ui":{"previewSrc":"/images/thumbs/tina/custom-download-button.jpg"},"fields":[{"type":"string","label":"Text","name":"btnText","namespace":["consulting","_body","CustomDownloadButton","btnText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"btnLink","namespace":["consulting","_body","CustomDownloadButton","btnLink"],"searchable":true,"uid":false}],"namespace":["consulting","_body","CustomDownloadButton"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["consulting","_body","CustomImage","src"],"searchable":false,"uid":false},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["consulting","_body","CustomImage","altText"],"searchable":true,"uid":false},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["consulting","_body","CustomImage","alignment"],"searchable":true,"uid":false},{"type":"number","label":"Height","name":"height","required":true,"namespace":["consulting","_body","CustomImage","height"],"searchable":true,"uid":false},{"type":"number","label":"Width","name":"width","required":true,"namespace":["consulting","_body","CustomImage","width"],"searchable":true,"uid":false},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["consulting","_body","CustomImage","link"],"searchable":true,"uid":false},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["consulting","_body","CustomImage","customClass"],"searchable":true,"uid":false},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["consulting","_body","CustomImage","caption"],"searchable":true,"uid":false},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["consulting","_body","CustomImage","captionColor"],"searchable":true,"uid":false},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["consulting","_body","CustomImage","sizes"],"searchable":true,"uid":false}],"namespace":["consulting","_body","CustomImage"]},{"name":"DomainFromQuery","label":"Domain from query","ui":{"previewSrc":"/images/thumbs/tina/domain-from-query.jpg"},"fields":[{"name":"title","label":"Title","type":"string","description":"This is a H1 heading","namespace":["consulting","_body","DomainFromQuery","title"],"searchable":true,"uid":false},{"name":"showDomain","label":"Show domain name","type":"boolean","description":"Query param in URL must have key of 'domain'","namespace":["consulting","_body","DomainFromQuery","showDomain"],"searchable":true,"uid":false}],"namespace":["consulting","_body","DomainFromQuery"]},{"name":"DownloadBlock","label":"Download Block","ui":{"previewSrc":"/images/thumbs/tina/download-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["consulting","_body","DownloadBlock","title"],"searchable":true,"uid":false},{"type":"object","label":"Downloads","name":"downloads","ui":{},"list":true,"fields":[{"type":"string","label":"Header","name":"header","namespace":["consulting","afterBody","DownloadBlock","downloads","header"]},{"type":"image","label":"Image","name":"img","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","img","uploadDir"]},"namespace":["consulting","afterBody","DownloadBlock","downloads","img"]},{"type":"string","label":"Image Background","name":"imgBackground","options":["black","grey","white","darkgrey","darkgreen"],"namespace":["consulting","afterBody","DownloadBlock","downloads","imgBackground"]},{"type":"string","label":"First Link Text","name":"firstLinkText","description":"Defaults to PNG","namespace":["consulting","afterBody","DownloadBlock","downloads","firstLinkText"]},{"type":"image","label":"First Link","name":"firstLink","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","firstLink","uploadDir"]},"namespace":["consulting","afterBody","DownloadBlock","downloads","firstLink"]},{"type":"string","label":"Second Link Text","name":"secondLinkText","description":"Defaults to PDF","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","secondLinkText","uploadDir"]},"namespace":["consulting","afterBody","DownloadBlock","downloads","secondLinkText"]},{"type":"image","label":"Second Link","name":"secondLink","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","secondLink","uploadDir"]},"namespace":["consulting","afterBody","DownloadBlock","downloads","secondLink"]}],"namespace":["consulting","_body","DownloadBlock","downloads"],"searchable":true,"uid":false},{"type":"boolean","label":"Bottom border","name":"bottomBorder","namespace":["consulting","_body","DownloadBlock","bottomBorder"],"searchable":true,"uid":false}],"namespace":["consulting","_body","DownloadBlock"]},{"name":"DynamicColumns","label":"Dynamic Column Layout","fields":[{"type":"rich-text","label":"Column text body","name":"colBody","required":true,"namespace":["consulting","_body","DynamicColumns","colBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"number","label":"Number of columns","name":"colCount","required":true,"ui":{},"namespace":["consulting","_body","DynamicColumns","colCount"],"searchable":true,"uid":false}],"namespace":["consulting","_body","DynamicColumns"]},{"name":"EventBooking","label":"Events Booking","ui":{"previewSrc":"/images/thumbs/tina/events-booking.jpg"},"fields":[{"type":"number","label":"Duration (In Days)","name":"eventDurationInDays","required":true,"namespace":["consulting","_body","EventBooking","eventDurationInDays"],"searchable":true,"uid":false},{"type":"number","label":"Price","name":"price","required":true,"namespace":["consulting","_body","EventBooking","price"],"searchable":true,"uid":false},{"type":"number","label":"Discount Price","name":"discountPrice","namespace":["consulting","_body","EventBooking","discountPrice"],"searchable":true,"uid":false},{"type":"string","name":"gstText","label":"Select GST Option","options":["inc GST","+ GST"],"required":true,"namespace":["consulting","_body","EventBooking","gstText"],"searchable":true,"uid":false},{"type":"string","label":"Discount Note","name":"discountNote","namespace":["consulting","_body","EventBooking","discountNote"],"searchable":true,"uid":false},{"type":"object","label":"Event","name":"eventList","ui":{},"list":true,"fields":[{"type":"string","label":"City","name":"city","namespace":["consulting","afterBody","EventBooking","eventList","city"]},{"type":"datetime","label":"Start Date","name":"date","ui":{},"namespace":["consulting","afterBody","EventBooking","eventList","date"]},{"type":"string","label":"Booking URL","name":"bookingURL","namespace":["consulting","afterBody","EventBooking","eventList","bookingURL"]},{"type":"reference","label":"Location","name":"location","collections":["locations"],"namespace":["consulting","afterBody","EventBooking","eventList","location"]}],"namespace":["consulting","_body","EventBooking","eventList"],"searchable":true,"uid":false}],"namespace":["consulting","_body","EventBooking"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["videoProduction","_body","EventLink","content","Flag","country"]}],"namespace":["consulting","afterBody","EventLink","content","Flag"]}],"namespace":["consulting","_body","EventLink","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Link","name":"link","namespace":["consulting","_body","EventLink","link"],"searchable":true,"uid":false},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["consulting","_body","EventLink","eventThumbnail"],"searchable":false,"uid":false},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["consulting","_body","EventLink","thumbnailAlt"],"searchable":true,"uid":false}],"namespace":["consulting","_body","EventLink"]},{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["consulting","_body","Flag","country"],"searchable":true,"uid":false}],"namespace":["consulting","_body","Flag"]},{"name":"FixedColumns","label":"Fixed Column Layout (2 columns)","ui":{"previewSrc":"/images/thumbs/tina/fixed-columns.jpg"},"fields":[{"type":"rich-text","label":"Header Section (Optional)","name":"headerSection","namespace":["consulting","_body","FixedColumns","headerSection"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"First column text","name":"firstColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["videoProduction","_body","FixedColumns","firstColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["videoProduction","_body","FixedColumns","firstColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["employment","booking","bookingBody","FixedColumns","firstColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","booking","bookingBody","FixedColumns","firstColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["employment","booking","bookingBody","FixedColumns","firstColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","booking","bookingBody","FixedColumns","firstColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","booking","bookingBody","FixedColumns","firstColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["employment","booking","bookingBody","FixedColumns","firstColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["employment","booking","bookingBody","FixedColumns","firstColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["employment","booking","bookingBody","FixedColumns","firstColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["employment","booking","bookingBody","FixedColumns","firstColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","booking","bookingBody","FixedColumns","firstColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["videoProduction","afterBody","FixedColumns","firstColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["employment","booking","bookingBody","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["employment","booking","bookingBody","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["employment","booking","bookingBody","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["employment","booking","bookingBody","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["employment","booking","bookingBody","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["videoProduction","afterBody","FixedColumns","firstColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["employment","booking","bookingBody","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["employment","booking","bookingBody","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["employment","booking","bookingBody","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["employment","booking","bookingBody","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["employment","booking","bookingBody","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["employment","booking","bookingBody","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["employment","booking","bookingBody","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["videoProduction","afterBody","FixedColumns","firstColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","booking","bookingBody","FixedColumns","firstColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["employment","booking","bookingBody","FixedColumns","firstColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["employment","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["employment","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["employment","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["employment","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["employment","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["employment","booking","bookingBody","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["videoProduction","afterBody","FixedColumns","firstColBody","ContentCard","content","ColorBlock"]}],"namespace":["videoProduction","_body","FixedColumns","firstColBody","ContentCard","content"]}],"namespace":["consulting","afterBody","FixedColumns","firstColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["videoProduction","_body","FixedColumns","firstColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["videoProduction","_body","FixedColumns","firstColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["videoProduction","_body","FixedColumns","firstColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["videoProduction","_body","FixedColumns","firstColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["videoProduction","_body","FixedColumns","firstColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["videoProduction","_body","FixedColumns","firstColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["videoProduction","_body","FixedColumns","firstColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["videoProduction","_body","FixedColumns","firstColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["videoProduction","_body","FixedColumns","firstColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["videoProduction","_body","FixedColumns","firstColBody","CustomImage","sizes"]}],"namespace":["consulting","afterBody","FixedColumns","firstColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["employment","booking","bookingBody","FixedColumns","firstColBody","EventLink","content","Flag","country"]}],"namespace":["videoProduction","afterBody","FixedColumns","firstColBody","EventLink","content","Flag"]}],"namespace":["videoProduction","_body","FixedColumns","firstColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["videoProduction","_body","FixedColumns","firstColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["videoProduction","_body","FixedColumns","firstColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["videoProduction","_body","FixedColumns","firstColBody","EventLink","thumbnailAlt"]}],"namespace":["consulting","afterBody","FixedColumns","firstColBody","EventLink"]}],"namespace":["consulting","_body","FixedColumns","firstColBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"Second column text","name":"secondColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["videoProduction","_body","FixedColumns","secondColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["videoProduction","_body","FixedColumns","secondColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["employment","booking","bookingBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","booking","bookingBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["employment","booking","bookingBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","booking","bookingBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","booking","bookingBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["employment","booking","bookingBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["employment","booking","bookingBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["employment","booking","bookingBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["employment","booking","bookingBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","booking","bookingBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["videoProduction","afterBody","FixedColumns","secondColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["employment","booking","bookingBody","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["employment","booking","bookingBody","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["employment","booking","bookingBody","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["employment","booking","bookingBody","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["employment","booking","bookingBody","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["videoProduction","afterBody","FixedColumns","secondColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["employment","booking","bookingBody","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["employment","booking","bookingBody","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["employment","booking","bookingBody","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["employment","booking","bookingBody","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["employment","booking","bookingBody","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["employment","booking","bookingBody","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["employment","booking","bookingBody","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["videoProduction","afterBody","FixedColumns","secondColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","booking","bookingBody","FixedColumns","secondColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["employment","booking","bookingBody","FixedColumns","secondColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["employment","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["employment","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["employment","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["employment","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["employment","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["employment","booking","bookingBody","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["videoProduction","afterBody","FixedColumns","secondColBody","ContentCard","content","ColorBlock"]}],"namespace":["videoProduction","_body","FixedColumns","secondColBody","ContentCard","content"]}],"namespace":["consulting","afterBody","FixedColumns","secondColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["videoProduction","_body","FixedColumns","secondColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["videoProduction","_body","FixedColumns","secondColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["videoProduction","_body","FixedColumns","secondColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["videoProduction","_body","FixedColumns","secondColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["videoProduction","_body","FixedColumns","secondColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["videoProduction","_body","FixedColumns","secondColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["videoProduction","_body","FixedColumns","secondColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["videoProduction","_body","FixedColumns","secondColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["videoProduction","_body","FixedColumns","secondColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["videoProduction","_body","FixedColumns","secondColBody","CustomImage","sizes"]}],"namespace":["consulting","afterBody","FixedColumns","secondColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["employment","booking","bookingBody","FixedColumns","secondColBody","EventLink","content","Flag","country"]}],"namespace":["videoProduction","afterBody","FixedColumns","secondColBody","EventLink","content","Flag"]}],"namespace":["videoProduction","_body","FixedColumns","secondColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["videoProduction","_body","FixedColumns","secondColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["videoProduction","_body","FixedColumns","secondColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["videoProduction","_body","FixedColumns","secondColBody","EventLink","thumbnailAlt"]}],"namespace":["consulting","afterBody","FixedColumns","secondColBody","EventLink"]}],"namespace":["consulting","_body","FixedColumns","secondColBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["consulting","_body","FixedColumns"]},{"name":"FixedTabsLayout","label":"Fixed Tabs Layout","ui":{"previewSrc":"/images/thumbs/tina/fixed-tabs-layout.jpg"},"fields":[{"type":"string","name":"firstTab","label":"First Tab","namespace":["consulting","_body","FixedTabsLayout","firstTab"],"searchable":true,"uid":false},{"type":"rich-text","name":"firstHeading","label":"First Heading","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["videoProduction","_body","FixedTabsLayout","firstHeading","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["videoProduction","_body","FixedTabsLayout","firstHeading","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["videoProduction","_body","FixedTabsLayout","firstHeading","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["videoProduction","_body","FixedTabsLayout","firstHeading","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["videoProduction","_body","FixedTabsLayout","firstHeading","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["videoProduction","_body","FixedTabsLayout","firstHeading","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["videoProduction","_body","FixedTabsLayout","firstHeading","VideoEmbed","duration"]}],"namespace":["consulting","afterBody","FixedTabsLayout","firstHeading","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["videoProduction","_body","FixedTabsLayout","firstHeading","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["videoProduction","_body","FixedTabsLayout","firstHeading","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["videoProduction","_body","FixedTabsLayout","firstHeading","BookingButton","buttonSubtitle"]}],"namespace":["consulting","afterBody","FixedTabsLayout","firstHeading","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["videoProduction","_body","FixedTabsLayout","firstHeading","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["videoProduction","afterBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["videoProduction","afterBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["videoProduction","afterBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["videoProduction","afterBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","skills"]}],"namespace":["videoProduction","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["videoProduction","afterBody","FixedTabsLayout","firstHeading","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["videoProduction","afterBody","FixedTabsLayout","firstHeading","ExpertBlock","link","url"]}],"namespace":["videoProduction","_body","FixedTabsLayout","firstHeading","ExpertBlock","link"]}],"namespace":["consulting","afterBody","FixedTabsLayout","firstHeading","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["videoProduction","afterBody","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["videoProduction","afterBody","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["videoProduction","afterBody","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["employment","booking","bookingBody","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["employment","booking","bookingBody","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["employment","booking","bookingBody","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["videoProduction","afterBody","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["videoProduction","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["consulting","afterBody","FixedTabsLayout","firstHeading","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["videoProduction","_body","FixedTabsLayout","firstHeading","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["videoProduction","_body","FixedTabsLayout","firstHeading","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["videoProduction","_body","FixedTabsLayout","firstHeading","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["videoProduction","_body","FixedTabsLayout","firstHeading","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["videoProduction","_body","FixedTabsLayout","firstHeading","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["videoProduction","_body","FixedTabsLayout","firstHeading","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["videoProduction","_body","FixedTabsLayout","firstHeading","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["videoProduction","_body","FixedTabsLayout","firstHeading","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["videoProduction","_body","FixedTabsLayout","firstHeading","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["videoProduction","_body","FixedTabsLayout","firstHeading","CustomImage","sizes"]}],"namespace":["consulting","afterBody","FixedTabsLayout","firstHeading","CustomImage"]}],"namespace":["consulting","_body","FixedTabsLayout","firstHeading"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","name":"firstBody","label":"First Body","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["videoProduction","_body","FixedTabsLayout","firstBody","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["videoProduction","_body","FixedTabsLayout","firstBody","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["videoProduction","_body","FixedTabsLayout","firstBody","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["videoProduction","_body","FixedTabsLayout","firstBody","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["videoProduction","_body","FixedTabsLayout","firstBody","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["videoProduction","_body","FixedTabsLayout","firstBody","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["videoProduction","_body","FixedTabsLayout","firstBody","VideoEmbed","duration"]}],"namespace":["consulting","afterBody","FixedTabsLayout","firstBody","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["videoProduction","_body","FixedTabsLayout","firstBody","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["videoProduction","_body","FixedTabsLayout","firstBody","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["videoProduction","_body","FixedTabsLayout","firstBody","BookingButton","buttonSubtitle"]}],"namespace":["consulting","afterBody","FixedTabsLayout","firstBody","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["videoProduction","_body","FixedTabsLayout","firstBody","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["videoProduction","afterBody","FixedTabsLayout","firstBody","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["videoProduction","afterBody","FixedTabsLayout","firstBody","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["videoProduction","afterBody","FixedTabsLayout","firstBody","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["videoProduction","afterBody","FixedTabsLayout","firstBody","ExpertBlock","expertList","skills"]}],"namespace":["videoProduction","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["videoProduction","afterBody","FixedTabsLayout","firstBody","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["videoProduction","afterBody","FixedTabsLayout","firstBody","ExpertBlock","link","url"]}],"namespace":["videoProduction","_body","FixedTabsLayout","firstBody","ExpertBlock","link"]}],"namespace":["consulting","afterBody","FixedTabsLayout","firstBody","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["videoProduction","afterBody","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["videoProduction","afterBody","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["videoProduction","afterBody","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["employment","booking","bookingBody","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["employment","booking","bookingBody","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["employment","booking","bookingBody","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["videoProduction","afterBody","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["videoProduction","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["consulting","afterBody","FixedTabsLayout","firstBody","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["videoProduction","_body","FixedTabsLayout","firstBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["videoProduction","_body","FixedTabsLayout","firstBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["videoProduction","_body","FixedTabsLayout","firstBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["videoProduction","_body","FixedTabsLayout","firstBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["videoProduction","_body","FixedTabsLayout","firstBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["videoProduction","_body","FixedTabsLayout","firstBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["videoProduction","_body","FixedTabsLayout","firstBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["videoProduction","_body","FixedTabsLayout","firstBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["videoProduction","_body","FixedTabsLayout","firstBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["videoProduction","_body","FixedTabsLayout","firstBody","CustomImage","sizes"]}],"namespace":["consulting","afterBody","FixedTabsLayout","firstBody","CustomImage"]}],"namespace":["consulting","_body","FixedTabsLayout","firstBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","name":"secondTab","label":"Second Tab","namespace":["consulting","_body","FixedTabsLayout","secondTab"],"searchable":true,"uid":false},{"type":"rich-text","name":"secondHeading","label":"Second Heading","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["videoProduction","_body","FixedTabsLayout","secondHeading","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["videoProduction","_body","FixedTabsLayout","secondHeading","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["videoProduction","_body","FixedTabsLayout","secondHeading","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["videoProduction","_body","FixedTabsLayout","secondHeading","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["videoProduction","_body","FixedTabsLayout","secondHeading","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["videoProduction","_body","FixedTabsLayout","secondHeading","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["videoProduction","_body","FixedTabsLayout","secondHeading","VideoEmbed","duration"]}],"namespace":["consulting","afterBody","FixedTabsLayout","secondHeading","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["videoProduction","_body","FixedTabsLayout","secondHeading","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["videoProduction","_body","FixedTabsLayout","secondHeading","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["videoProduction","_body","FixedTabsLayout","secondHeading","BookingButton","buttonSubtitle"]}],"namespace":["consulting","afterBody","FixedTabsLayout","secondHeading","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["videoProduction","_body","FixedTabsLayout","secondHeading","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["videoProduction","afterBody","FixedTabsLayout","secondHeading","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["videoProduction","afterBody","FixedTabsLayout","secondHeading","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["videoProduction","afterBody","FixedTabsLayout","secondHeading","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["videoProduction","afterBody","FixedTabsLayout","secondHeading","ExpertBlock","expertList","skills"]}],"namespace":["videoProduction","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["videoProduction","afterBody","FixedTabsLayout","secondHeading","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["videoProduction","afterBody","FixedTabsLayout","secondHeading","ExpertBlock","link","url"]}],"namespace":["videoProduction","_body","FixedTabsLayout","secondHeading","ExpertBlock","link"]}],"namespace":["consulting","afterBody","FixedTabsLayout","secondHeading","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["videoProduction","afterBody","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["videoProduction","afterBody","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["videoProduction","afterBody","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["employment","booking","bookingBody","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["employment","booking","bookingBody","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["employment","booking","bookingBody","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["videoProduction","afterBody","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["videoProduction","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["consulting","afterBody","FixedTabsLayout","secondHeading","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["videoProduction","_body","FixedTabsLayout","secondHeading","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["videoProduction","_body","FixedTabsLayout","secondHeading","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["videoProduction","_body","FixedTabsLayout","secondHeading","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["videoProduction","_body","FixedTabsLayout","secondHeading","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["videoProduction","_body","FixedTabsLayout","secondHeading","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["videoProduction","_body","FixedTabsLayout","secondHeading","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["videoProduction","_body","FixedTabsLayout","secondHeading","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["videoProduction","_body","FixedTabsLayout","secondHeading","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["videoProduction","_body","FixedTabsLayout","secondHeading","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["videoProduction","_body","FixedTabsLayout","secondHeading","CustomImage","sizes"]}],"namespace":["consulting","afterBody","FixedTabsLayout","secondHeading","CustomImage"]}],"namespace":["consulting","_body","FixedTabsLayout","secondHeading"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","name":"secondBody","label":"Second Body","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["videoProduction","_body","FixedTabsLayout","secondBody","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["videoProduction","_body","FixedTabsLayout","secondBody","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["videoProduction","_body","FixedTabsLayout","secondBody","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["videoProduction","_body","FixedTabsLayout","secondBody","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["videoProduction","_body","FixedTabsLayout","secondBody","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["videoProduction","_body","FixedTabsLayout","secondBody","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["videoProduction","_body","FixedTabsLayout","secondBody","VideoEmbed","duration"]}],"namespace":["consulting","afterBody","FixedTabsLayout","secondBody","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["videoProduction","_body","FixedTabsLayout","secondBody","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["videoProduction","_body","FixedTabsLayout","secondBody","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["videoProduction","_body","FixedTabsLayout","secondBody","BookingButton","buttonSubtitle"]}],"namespace":["consulting","afterBody","FixedTabsLayout","secondBody","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["videoProduction","_body","FixedTabsLayout","secondBody","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["videoProduction","afterBody","FixedTabsLayout","secondBody","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["videoProduction","afterBody","FixedTabsLayout","secondBody","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["videoProduction","afterBody","FixedTabsLayout","secondBody","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["videoProduction","afterBody","FixedTabsLayout","secondBody","ExpertBlock","expertList","skills"]}],"namespace":["videoProduction","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["videoProduction","afterBody","FixedTabsLayout","secondBody","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["videoProduction","afterBody","FixedTabsLayout","secondBody","ExpertBlock","link","url"]}],"namespace":["videoProduction","_body","FixedTabsLayout","secondBody","ExpertBlock","link"]}],"namespace":["consulting","afterBody","FixedTabsLayout","secondBody","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["videoProduction","afterBody","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["videoProduction","afterBody","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["videoProduction","afterBody","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["employment","booking","bookingBody","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["employment","booking","bookingBody","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["employment","booking","bookingBody","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["videoProduction","afterBody","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["videoProduction","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["consulting","afterBody","FixedTabsLayout","secondBody","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["videoProduction","_body","FixedTabsLayout","secondBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["videoProduction","_body","FixedTabsLayout","secondBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["videoProduction","_body","FixedTabsLayout","secondBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["videoProduction","_body","FixedTabsLayout","secondBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["videoProduction","_body","FixedTabsLayout","secondBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["videoProduction","_body","FixedTabsLayout","secondBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["videoProduction","_body","FixedTabsLayout","secondBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["videoProduction","_body","FixedTabsLayout","secondBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["videoProduction","_body","FixedTabsLayout","secondBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["videoProduction","_body","FixedTabsLayout","secondBody","CustomImage","sizes"]}],"namespace":["consulting","afterBody","FixedTabsLayout","secondBody","CustomImage"]}],"namespace":["consulting","_body","FixedTabsLayout","secondBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["consulting","_body","FixedTabsLayout"]},{"label":"Google Maps","name":"GoogleMaps","ui":{"previewSrc":"/images/thumbs/tina/google-maps.jpg"},"fields":[{"type":"string","label":"URL","name":"embedUrl","required":true,"namespace":["consulting","_body","GoogleMaps","embedUrl"],"searchable":true,"uid":false},{"type":"string","label":"Width","name":"embedWidth","namespace":["consulting","_body","GoogleMaps","embedWidth"],"searchable":true,"uid":false},{"type":"string","label":"Height","name":"embedHeight","namespace":["consulting","_body","GoogleMaps","embedHeight"],"searchable":true,"uid":false}],"namespace":["consulting","_body","GoogleMaps"]},{"label":"Grid Layout","name":"GridLayout","ui":{"previewSrc":"/images/thumbs/tina/grid-layout.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["consulting","_body","GridLayout","title"],"searchable":true,"uid":false},{"type":"object","list":true,"label":"Grid Items","name":"grids","ui":{},"fields":[{"type":"string","label":"Grid Title","name":"gridTitle","namespace":["consulting","afterBody","GridLayout","grids","gridTitle"]},{"type":"boolean","label":"Show Grid Title","name":"showGridTitle","namespace":["consulting","afterBody","GridLayout","grids","showGridTitle"]},{"type":"boolean","label":"Centered Grid Title","name":"centeredGridTitle","namespace":["consulting","afterBody","GridLayout","grids","centeredGridTitle"]},{"type":"boolean","label":"Show Header Divider","name":"showHeaderDivider","namespace":["consulting","afterBody","GridLayout","grids","showHeaderDivider"]},{"type":"boolean","label":"Offset Grid Start","name":"offsetGridStart","namespace":["consulting","afterBody","GridLayout","grids","offsetGridStart"]},{"type":"object","label":"Blocks","name":"blocks","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["videoProduction","_body","GridLayout","grids","blocks","title"]},{"type":"boolean","label":"Show Title","name":"showTitle","namespace":["videoProduction","_body","GridLayout","grids","blocks","showTitle"]},{"type":"image","label":"Image","name":"image","uploadDir":{"namespace":["page","beforeBody","GridLayout","grids","blocks","image","uploadDir"]},"namespace":["videoProduction","_body","GridLayout","grids","blocks","image"]},{"type":"image","label":"Related Image","name":"relatedImage","uploadDir":{"namespace":["page","beforeBody","GridLayout","grids","blocks","relatedImage","uploadDir"]},"namespace":["videoProduction","_body","GridLayout","grids","blocks","relatedImage"]},{"type":"rich-text","name":"linkContent","label":"Link Content","templates":[{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["employment","booking","bookingBody","GridLayout","grids","blocks","linkContent","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["employment","booking","bookingBody","GridLayout","grids","blocks","linkContent","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["employment","booking","bookingBody","GridLayout","grids","blocks","linkContent","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["employment","booking","bookingBody","GridLayout","grids","blocks","linkContent","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["employment","booking","bookingBody","GridLayout","grids","blocks","linkContent","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["employment","booking","bookingBody","GridLayout","grids","blocks","linkContent","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["employment","booking","bookingBody","GridLayout","grids","blocks","linkContent","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["employment","booking","bookingBody","GridLayout","grids","blocks","linkContent","UtilityButton","openInNewTab"]}],"namespace":["videoProduction","afterBody","GridLayout","grids","blocks","linkContent","UtilityButton"]}],"namespace":["videoProduction","_body","GridLayout","grids","blocks","linkContent"]}],"namespace":["consulting","afterBody","GridLayout","grids","blocks"]}],"namespace":["consulting","_body","GridLayout","grids"],"searchable":true,"uid":false}],"namespace":["consulting","_body","GridLayout"]},{"name":"Hero","label":"Hero","ui":{"previewSrc":"/blocks/hero.png","defaultItem":{"tagline":"Here's some text above the other text","headline":"This Big Text is Totally Awesome","text":"Phasellus scelerisque, libero eu finibus rutrum, risus risus accumsan libero, nec molestie urna dui a leo."}},"fields":[{"type":"string","label":"Tagline","name":"tagline","namespace":["consulting","_body","Hero","tagline"],"searchable":true,"uid":false},{"type":"string","label":"Headline","name":"headline","namespace":["consulting","_body","Hero","headline"],"searchable":true,"uid":false},{"label":"Text","name":"text","type":"rich-text","namespace":["consulting","_body","Hero","text"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"label":"Actions","name":"actions","type":"object","list":true,"ui":{"defaultItem":{"label":"Action Label","type":"button","icon":true,"link":"/"}},"fields":[{"label":"Label","name":"label","type":"string","namespace":["consulting","afterBody","Hero","actions","label"]},{"label":"Type","name":"type","type":"string","options":[{"label":"Button","value":"button"},{"label":"Link","value":"link"}],"namespace":["consulting","afterBody","Hero","actions","type"]},{"label":"Icon","name":"icon","type":"boolean","namespace":["consulting","afterBody","Hero","actions","icon"]},{"label":"Link","name":"link","type":"string","namespace":["consulting","afterBody","Hero","actions","link"]}],"namespace":["consulting","_body","Hero","actions"],"searchable":true,"uid":false},{"type":"object","label":"Image","name":"image","fields":[{"name":"src","label":"Image Source","type":"image","namespace":["consulting","afterBody","Hero","image","src"]},{"name":"alt","label":"Alt Text","type":"string","namespace":["consulting","afterBody","Hero","image","alt"]}],"namespace":["consulting","_body","Hero","image"],"searchable":true,"uid":false},{"type":"string","label":"Color","name":"color","options":[{"label":"Default","value":"default"},{"label":"Tint","value":"tint"},{"label":"Primary","value":"primary"}],"namespace":["consulting","_body","Hero","color"],"searchable":true,"uid":false}],"namespace":["consulting","_body","Hero"]},{"name":"HorizontalCard","label":"Horizontal Card","ui":{"previewSrc":"/images/thumbs/tina/horizontal-card.jpg"},"fields":[{"type":"object","label":"Cards","name":"cardList","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["consulting","afterBody","HorizontalCard","cardList","title"]},{"type":"rich-text","label":"Content","name":"content","namespace":["consulting","afterBody","HorizontalCard","cardList","content"]},{"type":"image","label":"Thumbnail","name":"thumbnail","uploadDir":{"namespace":["page","beforeBody","HorizontalCard","cardList","thumbnail","uploadDir"]},"namespace":["consulting","afterBody","HorizontalCard","cardList","thumbnail"]},{"type":"string","label":"Link","name":"link","namespace":["consulting","afterBody","HorizontalCard","cardList","link"]}],"namespace":["consulting","_body","HorizontalCard","cardList"],"searchable":true,"uid":false},{"type":"object","label":"Button","name":"button","fields":[{"type":"string","label":"Text","name":"text","namespace":["consulting","afterBody","HorizontalCard","button","text"]},{"type":"string","label":"Link","name":"link","namespace":["consulting","afterBody","HorizontalCard","button","link"]}],"namespace":["consulting","_body","HorizontalCard","button"],"searchable":true,"uid":false}],"namespace":["consulting","_body","HorizontalCard"]},{"name":"InternalCarousel","label":"Internal Carousel","ui":{"previewSrc":"/images/thumbs/tina/internal-carousel.jpg"},"fields":[{"label":"Images","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Image description"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["consulting","afterBody","InternalCarousel","items","label"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","InternalCarousel","items","imgSrc","uploadDir"]},"namespace":["consulting","afterBody","InternalCarousel","items","imgSrc"]}],"namespace":["consulting","_body","InternalCarousel","items"],"searchable":true,"uid":false},{"type":"string","label":"Header","name":"header","namespace":["consulting","_body","InternalCarousel","header"],"searchable":true,"uid":false},{"type":"rich-text","label":"Text","name":"paragraph","isBody":false,"namespace":["consulting","_body","InternalCarousel","paragraph"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Website","name":"website","namespace":["consulting","_body","InternalCarousel","website"],"searchable":true,"uid":false},{"type":"object","label":"Technologies","name":"technologies","list":true,"ui":{},"fields":[{"type":"string","label":"Name","name":"name","namespace":["consulting","afterBody","InternalCarousel","technologies","name"]}],"namespace":["consulting","_body","InternalCarousel","technologies"],"searchable":true,"uid":false},{"type":"string","label":"Case Study","name":"caseStudyUrl","namespace":["consulting","_body","InternalCarousel","caseStudyUrl"],"searchable":true,"uid":false},{"type":"string","label":"Video URL","name":"videoUrl","namespace":["consulting","_body","InternalCarousel","videoUrl"],"searchable":true,"uid":false}],"namespace":["consulting","_body","InternalCarousel"]},{"label":"Join As Presenter","name":"joinAsPresenter","fields":[{"label":"Learn More Link","name":"link","type":"string","namespace":["consulting","_body","joinAsPresenter","link"],"searchable":true,"uid":false},{"label":"Image","name":"img","type":"image","namespace":["consulting","_body","joinAsPresenter","img"],"searchable":false,"uid":false}],"namespace":["consulting","_body","joinAsPresenter"]},{"label":"Join Github","name":"joinGithub","ui":{"previewSrc":"/images/thumbs/tina/join-github.jpg"},"fields":[{"label":"Title","name":"title","type":"string","namespace":["consulting","_body","joinGithub","title"],"searchable":true,"uid":false},{"label":"Join Github Link","name":"link","type":"string","namespace":["consulting","_body","joinGithub","link"],"searchable":true,"uid":false}],"namespace":["consulting","_body","joinGithub"]},{"name":"JotFormEmbed","label":"JotForm Embed","ui":{"previewSrc":"/images/thumbs/tina/jotform-embed.jpg"},"fields":[{"type":"string","name":"jotFormId","label":"JotForm Id","required":true,"namespace":["consulting","_body","JotFormEmbed","jotFormId"],"searchable":true,"uid":false},{"type":"string","label":"Button Text","name":"buttonText","namespace":["consulting","_body","JotFormEmbed","buttonText"],"searchable":true,"uid":false},{"type":"string","name":"containerClass","label":"Container Class","namespace":["consulting","_body","JotFormEmbed","containerClass"],"searchable":true,"uid":false},{"type":"string","label":"Button Class","name":"buttonClass","namespace":["consulting","_body","JotFormEmbed","buttonClass"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","namespace":["consulting","_body","JotFormEmbed","animated"],"searchable":true,"uid":false}],"namespace":["consulting","_body","JotFormEmbed"]},{"name":"LatestTech","label":"Latest Tech","ui":{"previewSrc":"/images/thumbs/tina/latest-tech.jpg"},"fields":[{"type":"reference","description":"Select a config file including a set of badges","collections":["userGroupGlobal"],"label":"Badges","name":"badges","namespace":["consulting","_body","LatestTech","badges"],"searchable":true,"uid":false}],"namespace":["consulting","_body","LatestTech"]},{"name":"LocationBlock","label":"Locations","ui":{"previewSrc":"/images/thumbs/tina/locations.jpg"},"fields":[{"type":"string","name":"title","label":"Title","namespace":["consulting","_body","LocationBlock","title"],"searchable":true,"uid":false},{"type":"object","label":"Location List","name":"locationList","list":true,"ui":{},"fields":[{"type":"reference","collections":["locations"],"label":"Location","name":"location","namespace":["consulting","afterBody","LocationBlock","locationList","location"]}],"namespace":["consulting","_body","LocationBlock","locationList"],"searchable":true,"uid":false},{"type":"object","name":"chapelWebsite","label":"Chapel Website","fields":[{"type":"string","name":"title","label":"Text","namespace":["consulting","afterBody","LocationBlock","chapelWebsite","title"]},{"type":"string","name":"URL","label":"URL","namespace":["consulting","afterBody","LocationBlock","chapelWebsite","URL"]}],"namespace":["consulting","_body","LocationBlock","chapelWebsite"],"searchable":true,"uid":false}],"namespace":["consulting","_body","LocationBlock"]},{"name":"NewslettersTable","label":"Newsletters Table","ui":{"previewSrc":"/images/thumbs/tina/newsletters-table.jpg"},"fields":[{"type":"string","label":"Header text","name":"headerText","namespace":["consulting","_body","NewslettersTable","headerText"],"searchable":true,"uid":false}],"namespace":["consulting","_body","NewslettersTable"]},{"label":"Organizer","name":"organizer","fields":[{"type":"image","label":"Profile Image","name":"profileImg","namespace":["consulting","_body","organizer","profileImg"],"searchable":false,"uid":false},{"type":"string","label":"Profile Link","name":"profileLink","namespace":["consulting","_body","organizer","profileLink"],"searchable":true,"uid":false},{"type":"string","label":"Name","name":"name","namespace":["consulting","_body","organizer","name"],"searchable":true,"uid":false},{"type":"string","label":"Position","name":"position","namespace":["consulting","_body","organizer","position"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","namespace":["consulting","_body","organizer","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["consulting","_body","organizer"]},{"label":"Payment Block","name":"paymentBlock","ui":{"previewSrc":"/images/thumbs/tina/payment-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["consulting","_body","paymentBlock","title"],"searchable":true,"uid":false},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["consulting","_body","paymentBlock","subTitle"],"searchable":true,"uid":false},{"type":"reference","label":"Payment Links","name":"payments","collections":["paymentDetails"],"namespace":["consulting","_body","paymentBlock","payments"],"searchable":true,"uid":false},{"type":"rich-text","label":"Footer","name":"footer","namespace":["consulting","_body","paymentBlock","footer"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"image","label":"Credit Cards Image","name":"creditImgSrc","namespace":["consulting","_body","paymentBlock","creditImgSrc"],"searchable":false,"uid":false},{"type":"string","label":"Alt Text","name":"altTxt","namespace":["consulting","_body","paymentBlock","altTxt"],"searchable":true,"uid":false}],"namespace":["consulting","_body","paymentBlock"]},{"name":"PresenterBlock","label":"Presenters","ui":{"previewSrc":"/images/thumbs/tina/presenters.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["consulting","_body","PresenterBlock","header"],"searchable":true,"uid":false},{"type":"object","name":"presenterList","label":"Presenters","list":true,"ui":{},"fields":[{"type":"reference","name":"presenter","label":"Presenters","collections":["presenter"],"namespace":["consulting","afterBody","PresenterBlock","presenterList","presenter"]}],"namespace":["consulting","_body","PresenterBlock","presenterList"],"searchable":true,"uid":false},{"type":"object","label":"Other Events","name":"otherEvent","fields":[{"type":"string","label":"Title","name":"title","namespace":["consulting","afterBody","PresenterBlock","otherEvent","title"]},{"type":"string","label":"URL","name":"eventURL","namespace":["consulting","afterBody","PresenterBlock","otherEvent","eventURL"]}],"namespace":["consulting","_body","PresenterBlock","otherEvent"],"searchable":true,"uid":false}],"namespace":["consulting","_body","PresenterBlock"]},{"label":"Recurring Event","name":"RecurringEvent","ui":{"previewSrc":"/images/thumbs/tina/recurring-event.jpg"},"fields":[{"type":"string","label":"Apply Link Redirect","name":"applyLinkRedirect","namespace":["consulting","_body","RecurringEvent","applyLinkRedirect"],"searchable":true,"uid":false},{"type":"string","label":"Day","name":"day","options":[{"label":"Monday","value":"monday"},{"label":"Tuesday","value":"tuesday"},{"label":"Wednesday","value":"wednesday"},{"label":"Thursday","value":"thursday"},{"label":"Friday","value":"friday"},{"label":"Saturday","value":"saturday"},{"label":"Sunday","value":"sunday"}],"required":true,"namespace":["consulting","_body","RecurringEvent","day"],"searchable":true,"uid":false}],"namespace":["consulting","_body","RecurringEvent"]},{"name":"SectionHeader","label":"Section Header","ui":{"previewSrc":"/images/thumbs/tina/section-header.jpg"},"fields":[{"type":"string","label":"Header Text","name":"headerText","namespace":["consulting","_body","SectionHeader","headerText"],"searchable":true,"uid":false}],"namespace":["consulting","_body","SectionHeader"]},{"name":"ServiceCards","label":"Service Cards","ui":{"previewSrc":"/images/thumbs/tina/services-cards.jpg"},"fields":[{"type":"string","label":"Big Cards Label","name":"bigCardsLabel","namespace":["consulting","_body","ServiceCards","bigCardsLabel"],"searchable":true,"uid":false},{"label":"Big Cards","name":"bigCards","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["consulting","afterBody","ServiceCards","bigCards","title"]},{"type":"string","label":"Description","component":"textarea","name":"description","namespace":["consulting","afterBody","ServiceCards","bigCards","description"]},{"type":"string","label":"URL","name":"link","namespace":["consulting","afterBody","ServiceCards","bigCards","link"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Red","value":"red"},{"label":"Light Gray","value":"lightgray"},{"label":"Medium Gray","value":"mediumgray"},{"label":"Dark Gray","value":"darkgray"}],"namespace":["consulting","afterBody","ServiceCards","bigCards","color"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","ServiceCards","bigCards","imgSrc","uploadDir"]},"namespace":["consulting","afterBody","ServiceCards","bigCards","imgSrc"]}],"namespace":["consulting","_body","ServiceCards","bigCards"],"searchable":true,"uid":false},{"type":"string","label":"Small Cards Label","name":"smallCardsLabel","namespace":["consulting","_body","ServiceCards","smallCardsLabel"],"searchable":true,"uid":false},{"label":"Small Cards","name":"smallCards","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["consulting","afterBody","ServiceCards","smallCards","title"]},{"type":"string","label":"URL","name":"link","namespace":["consulting","afterBody","ServiceCards","smallCards","link"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Red","value":"red"},{"label":"Light Gray","value":"lightgray"},{"label":"Medium Gray","value":"mediumgray"},{"label":"Dark Gray","value":"darkgray"}],"namespace":["consulting","afterBody","ServiceCards","smallCards","color"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","ServiceCards","smallCards","imgSrc","uploadDir"]},"namespace":["consulting","afterBody","ServiceCards","smallCards","imgSrc"]},{"type":"boolean","label":"External Page","description":"Select this if the link is not part of the website. This includes SSW.Rules, and SSW.People links","name":"isExternal","namespace":["consulting","afterBody","ServiceCards","smallCards","isExternal"]}],"namespace":["consulting","_body","ServiceCards","smallCards"],"searchable":true,"uid":false},{"label":"Links","name":"links","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["consulting","afterBody","ServiceCards","links","label"]},{"type":"string","label":"URL","name":"link","namespace":["consulting","afterBody","ServiceCards","links","link"]}],"namespace":["consulting","_body","ServiceCards","links"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["consulting","_body","ServiceCards","backgroundColor"],"searchable":true,"uid":false}],"namespace":["consulting","_body","ServiceCards"]},{"label":"Table Layout","name":"TableLayout","ui":{"previewSrc":"/images/thumbs/tina/table-layout.jpg"},"fields":[{"label":"Table Style","name":"tableStyle","type":"string","options":["none","basicBorder","styled","benefits"],"namespace":["consulting","_body","TableLayout","tableStyle"],"searchable":true,"uid":false},{"label":"First column bolded + left aligned","name":"firstColBold","type":"boolean","required":false,"namespace":["consulting","_body","TableLayout","firstColBold"],"searchable":true,"uid":false},{"type":"string","label":"Table Headers","name":"headers","list":true,"namespace":["consulting","_body","TableLayout","headers"],"searchable":true,"uid":false},{"type":"object","label":"Rows","name":"rows","list":true,"fields":[{"type":"object","label":"Cells","name":"cells","list":true,"fields":[{"type":"string","label":"Value","name":"cellValue","required":true,"component":{"namespace":["page","beforeBody","TableLayout","rows","cells","cellValue",""]},"namespace":["videoProduction","_body","TableLayout","rows","cells","cellValue"]}],"ui":{},"namespace":["consulting","afterBody","TableLayout","rows","cells"]},{"type":"boolean","label":"Is Heading","name":"isHeader","required":false,"namespace":["consulting","afterBody","TableLayout","rows","isHeader"]}],"ui":{},"namespace":["consulting","_body","TableLayout","rows"],"searchable":true,"uid":false}],"namespace":["consulting","_body","TableLayout"]},{"name":"TestimonialsList","label":"Testimonials List","ui":{"previewSrc":"/images/thumbs/tina/testimonials.jpg"},"fields":[{"type":"object","label":"Exclude Categories","name":"excludedCategories","ui":{},"list":true,"fields":[{"type":"reference","label":"Category Name","name":"categoryName","collections":["testimonialCategories"],"namespace":["consulting","afterBody","TestimonialsList","excludedCategories","categoryName"]}],"namespace":["consulting","_body","TestimonialsList","excludedCategories"],"searchable":true,"uid":false}],"namespace":["consulting","_body","TestimonialsList"]},{"label":"Training Information","name":"TrainingInformation","ui":{"previewSrc":"/images/thumbs/tina/training-information.jpg"},"fields":[{"type":"object","label":"Training Information Items","name":"trainingInformationItems","list":true,"fields":[{"type":"string","label":"Header","name":"header","namespace":["consulting","afterBody","TrainingInformation","trainingInformationItems","header"]},{"type":"rich-text","label":"Body","name":"body","templates":[{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["videoProduction","afterBody","TrainingInformation","trainingInformationItems","body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["videoProduction","afterBody","TrainingInformation","trainingInformationItems","body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["videoProduction","afterBody","TrainingInformation","trainingInformationItems","body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["videoProduction","afterBody","TrainingInformation","trainingInformationItems","body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["videoProduction","afterBody","TrainingInformation","trainingInformationItems","body","VerticalListItem","afterBody"]}],"namespace":["videoProduction","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem"]},{"label":"Recurring Event","name":"RecurringEvent","ui":{"previewSrc":"/images/thumbs/tina/recurring-event.jpg"},"fields":[{"type":"string","label":"Apply Link Redirect","name":"applyLinkRedirect","namespace":["videoProduction","afterBody","TrainingInformation","trainingInformationItems","body","RecurringEvent","applyLinkRedirect"]},{"type":"string","label":"Day","name":"day","options":[{"label":"Monday","value":"monday"},{"label":"Tuesday","value":"tuesday"},{"label":"Wednesday","value":"wednesday"},{"label":"Thursday","value":"thursday"},{"label":"Friday","value":"friday"},{"label":"Saturday","value":"saturday"},{"label":"Sunday","value":"sunday"}],"required":true,"namespace":["videoProduction","afterBody","TrainingInformation","trainingInformationItems","body","RecurringEvent","day"]}],"namespace":["videoProduction","_body","TrainingInformation","trainingInformationItems","body","RecurringEvent"]}],"namespace":["consulting","afterBody","TrainingInformation","trainingInformationItems","body"]}],"namespace":["consulting","_body","TrainingInformation","trainingInformationItems"],"searchable":true,"uid":false}],"namespace":["consulting","_body","TrainingInformation"]},{"label":"Training Learning Outcomes","name":"TrainingLearningOutcome","ui":{"previewSrc":"/images/thumbs/tina/training-learning-outcomes.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["consulting","_body","TrainingLearningOutcome","header"],"searchable":true,"uid":false},{"type":"object","label":"List Items","name":"listItems","list":true,"fields":[{"type":"string","label":"Title","name":"title","namespace":["consulting","afterBody","TrainingLearningOutcome","listItems","title"]},{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["consulting","afterBody","TrainingLearningOutcome","listItems","content"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","TrainingLearningOutcome","listItems","icon","uploadDir"]},"namespace":["consulting","afterBody","TrainingLearningOutcome","listItems","icon"]}],"namespace":["consulting","_body","TrainingLearningOutcome","listItems"],"searchable":true,"uid":false}],"namespace":["consulting","_body","TrainingLearningOutcome"]},{"label":"Tweet Embed","name":"TweetEmbed","ui":{"previewSrc":"/images/thumbs/tina/tweet-embed.jpg"},"fields":[{"type":"string","name":"url","label":"Tweet URL","required":true,"namespace":["consulting","_body","TweetEmbed","url"],"searchable":true,"uid":false}],"namespace":["consulting","_body","TweetEmbed"]},{"name":"UpcomingEvents","label":"Upcoming Events","ui":{"previewSrc":"/images/thumbs/tina/upcoming-events.jpg","defaultItem":{"title":"Upcoming Events","numberOfEvents":30}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["consulting","_body","UpcomingEvents","title"],"searchable":true,"uid":false},{"type":"number","label":"Number of Events","name":"numberOfEvents","namespace":["consulting","_body","UpcomingEvents","numberOfEvents"],"searchable":true,"uid":false}],"namespace":["consulting","_body","UpcomingEvents"]},{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["consulting","_body","UtilityButton","buttonText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"link","required":false,"namespace":["consulting","_body","UtilityButton","link"],"searchable":true,"uid":false},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["consulting","_body","UtilityButton","size"],"searchable":true,"uid":false},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["consulting","_body","UtilityButton","btnIcon"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["consulting","_body","UtilityButton","animated"],"searchable":true,"uid":false},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["consulting","_body","UtilityButton","uncentered"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["consulting","_body","UtilityButton","removeTopMargin"],"searchable":true,"uid":false},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["consulting","_body","UtilityButton","openInNewTab"],"searchable":true,"uid":false}],"namespace":["consulting","_body","UtilityButton"]},{"name":"VerticalImageLayout","label":"Vertical Image Layout","fields":[{"type":"image","label":"Image","name":"imageSrc","uploadDir":{"namespace":["page","beforeBody","VerticalImageLayout","imageSrc","uploadDir"]},"namespace":["consulting","_body","VerticalImageLayout","imageSrc"],"searchable":false,"uid":false},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["consulting","_body","VerticalImageLayout","altText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"imageLink","namespace":["consulting","_body","VerticalImageLayout","imageLink"],"searchable":true,"uid":false},{"type":"number","label":"Height","name":"height","required":true,"namespace":["consulting","_body","VerticalImageLayout","height"],"searchable":true,"uid":false},{"type":"number","label":"Width","name":"width","required":true,"namespace":["consulting","_body","VerticalImageLayout","width"],"searchable":true,"uid":false},{"type":"rich-text","label":"Message","name":"message","required":true,"namespace":["consulting","_body","VerticalImageLayout","message"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["consulting","_body","VerticalImageLayout","sizes"],"searchable":true,"uid":false}],"namespace":["consulting","_body","VerticalImageLayout"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["consulting","_body","VerticalListItem","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"number","label":"Index number","name":"index","namespace":["consulting","_body","VerticalListItem","index"],"searchable":true,"uid":false},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["consulting","_body","VerticalListItem","icon"],"searchable":false,"uid":false},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["consulting","_body","VerticalListItem","iconScale"],"searchable":true,"uid":false},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["consulting","_body","VerticalListItem","afterBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["consulting","_body","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["consulting","_body","VideoEmbed","url"],"searchable":true,"uid":false},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["consulting","_body","VideoEmbed","videoWidth"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["consulting","_body","VideoEmbed","removeMargin"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["consulting","_body","VideoEmbed","uncentre"],"searchable":true,"uid":false},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["consulting","_body","VideoEmbed","overflow"],"searchable":true,"uid":false},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["consulting","_body","VideoEmbed","caption"],"searchable":true,"uid":false},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["consulting","_body","VideoEmbed","duration"],"searchable":true,"uid":false}],"namespace":["consulting","_body","VideoEmbed"]},{"name":"InlineJotForm","label":"In-line JotForm","ui":{"previewSrc":"/images/thumbs/tina/inline-jot-form.jpg"},"fields":[{"type":"string","name":"title","label":"Title","description":"Optional title for JotForm","namespace":["consulting","_body","InlineJotForm","title"],"searchable":true,"uid":false},{"type":"string","name":"jotFormId","label":"JotForm ID","required":true,"namespace":["consulting","_body","InlineJotForm","jotFormId"],"searchable":true,"uid":false},{"type":"string","name":"additionalClasses","label":"Additional classnames","description":"Optional styling for iframe element only","namespace":["consulting","_body","InlineJotForm","additionalClasses"],"searchable":true,"uid":false}],"namespace":["consulting","_body","InlineJotForm"]}],"isBody":true,"namespace":["consulting","_body"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"object","list":true,"name":"afterBody","label":"After body","ui":{"visualSelector":true},"templates":[{"name":"AboutUs","label":"About Us","ui":{"previewSrc":"/images/thumbs/tina/about-us.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["consulting","afterBody","AboutUs","backgroundColor"],"searchable":true,"uid":false},{"type":"boolean","label":"Show Map","name":"showMap","required":false,"namespace":["consulting","afterBody","AboutUs","showMap"],"searchable":true,"uid":false}],"namespace":["consulting","afterBody","AboutUs"]},{"label":"Agenda","name":"Agenda","ui":{"previewSrc":"/images/thumbs/tina/agenda.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["consulting","afterBody","Agenda","header"],"searchable":true,"uid":false},{"type":"string","label":"Header Color","name":"textColor","options":[{"label":"Red","value":"red"},{"label":"Gray","value":"gray"},{"label":"Default","value":"default"}],"namespace":["consulting","afterBody","Agenda","textColor"],"searchable":true,"uid":false},{"type":"object","label":"Agenda Items","name":"agendaItemList","ui":{},"list":true,"fields":[{"type":"string","label":"Placeholder Text","name":"placeholder","namespace":["videoProduction","_body","Agenda","agendaItemList","placeholder"]},{"type":"rich-text","label":"Body","name":"body","templates":[{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["employment","booking","bookingBody","Agenda","agendaItemList","body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["employment","booking","bookingBody","Agenda","agendaItemList","body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["employment","booking","bookingBody","Agenda","agendaItemList","body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["employment","booking","bookingBody","Agenda","agendaItemList","body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["employment","booking","bookingBody","Agenda","agendaItemList","body","VerticalListItem","afterBody"]}],"namespace":["videoProduction","afterBody","Agenda","agendaItemList","body","VerticalListItem"]}],"namespace":["videoProduction","_body","Agenda","agendaItemList","body"]}],"namespace":["consulting","afterBody","Agenda","agendaItemList"],"searchable":true,"uid":false}],"namespace":["consulting","afterBody","Agenda"]},{"label":"Agreement Form","name":"AgreementForm","ui":{"previewSrc":"/images/thumbs/tina/agreement-form.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["consulting","afterBody","AgreementForm","backgroundColor"],"searchable":true,"uid":false},{"type":"object","label":"Form fields","name":"fields","list":true,"fields":[{"type":"string","label":"ID","name":"id","required":true,"namespace":["videoProduction","_body","AgreementForm","fields","id"]},{"type":"string","label":"Label","name":"label","required":true,"namespace":["videoProduction","_body","AgreementForm","fields","label"]},{"type":"string","label":"Placeholder","name":"placeholder","namespace":["videoProduction","_body","AgreementForm","fields","placeholder"]},{"type":"boolean","label":"Resizeable","name":"resizeable","required":true,"namespace":["videoProduction","_body","AgreementForm","fields","resizeable"]}],"namespace":["consulting","afterBody","AgreementForm","fields"],"searchable":true,"uid":false}],"namespace":["consulting","afterBody","AgreementForm"]},{"label":"Interest Form","name":"InterestForm","ui":{"previewSrc":"/images/thumbs/tina/interest-form.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["consulting","afterBody","InterestForm","buttonText"],"searchable":true,"uid":false}],"namespace":["consulting","afterBody","InterestForm"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["consulting","afterBody","BookingButton","buttonText"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","namespace":["consulting","afterBody","BookingButton","animated"],"searchable":true,"uid":false},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["consulting","afterBody","BookingButton","buttonSubtitle"],"searchable":true,"uid":false}],"namespace":["consulting","afterBody","BookingButton"]},{"name":"BuiltOnAzure","label":"Built on Azure","ui":{"previewSrc":"/images/thumbs/tina/built-on-azure.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["consulting","afterBody","BuiltOnAzure","backgroundColor"],"searchable":true,"uid":false}],"namespace":["consulting","afterBody","BuiltOnAzure"]},{"name":"Carousel","label":"Carousel","ui":{"previewSrc":"/images/thumbs/tina/carousel.jpg"},"fields":[{"label":"Items","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Item description","link":"/","openIn":"sameWindow"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["videoProduction","_body","Carousel","items","label"]},{"type":"string","label":"URL","name":"link","description":"If link contains ssw.com.au, you can skip the full URL and just use the path. e.g. /services","namespace":["videoProduction","_body","Carousel","items","link"]},{"type":"string","label":"Open in","name":"openIn","description":"If it is external link, please select 'New window' option.","options":[{"label":"Same window","value":"sameWindow"},{"label":"Modal","value":"modal"},{"label":"New window","value":"newWindow"}],"namespace":["videoProduction","_body","Carousel","items","openIn"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","Carousel","items","imgSrc","uploadDir"]},"namespace":["videoProduction","_body","Carousel","items","imgSrc"]}],"namespace":["consulting","afterBody","Carousel","items"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["consulting","afterBody","Carousel","backgroundColor"],"searchable":true,"uid":false},{"type":"number","label":"Delay (Seconds)","name":"delay","required":true,"namespace":["consulting","afterBody","Carousel","delay"],"searchable":true,"uid":false},{"type":"boolean","label":"Show on mobile devices","name":"showOnMobileDevices","namespace":["consulting","afterBody","Carousel","showOnMobileDevices"],"searchable":true,"uid":false}],"namespace":["consulting","afterBody","Carousel"]},{"name":"Citation","label":"Citation","fields":[{"type":"string","label":"author","name":"author","namespace":["consulting","afterBody","Citation","author"],"searchable":true,"uid":false},{"type":"string","label":"article","name":"article","required":true,"namespace":["consulting","afterBody","Citation","article"],"searchable":true,"uid":false}],"namespace":["consulting","afterBody","Citation"]},{"label":"Client List","name":"ClientList","ui":{"previewSrc":"/images/thumbs/tina/clients-list.jpg"},"fields":[{"type":"object","name":"categories","label":"Categories","list":true,"fields":[{"type":"reference","name":"category","label":"Category","collections":["clientCategories"],"namespace":["videoProduction","_body","ClientList","categories","category"]}],"ui":{},"namespace":["consulting","afterBody","ClientList","categories"],"searchable":true,"uid":false},{"type":"object","name":"clients","label":"Clients list","list":true,"ui":{"previewSrc":"/images/thumbs/tina/clients-list.jpg"},"fields":[{"type":"string","name":"name","label":"Name","namespace":["videoProduction","_body","ClientList","clients","name"]},{"type":"image","name":"logo","label":"Logo","namespace":["videoProduction","_body","ClientList","clients","logo"]},{"type":"string","name":"logoUrl","label":"Logo URL","namespace":["videoProduction","_body","ClientList","clients","logoUrl"]},{"type":"rich-text","name":"content","label":"Content","templates":[{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["employment","booking","bookingBody","ClientList","clients","content","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["employment","booking","bookingBody","ClientList","clients","content","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["employment","booking","bookingBody","ClientList","clients","content","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["employment","booking","bookingBody","ClientList","clients","content","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["employment","booking","bookingBody","ClientList","clients","content","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["employment","booking","bookingBody","ClientList","clients","content","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["employment","booking","bookingBody","ClientList","clients","content","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["employment","booking","bookingBody","ClientList","clients","content","UtilityButton","openInNewTab"]}],"namespace":["videoProduction","afterBody","ClientList","clients","content","UtilityButton"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["employment","booking","bookingBody","ClientList","clients","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["employment","booking","bookingBody","ClientList","clients","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["employment","booking","bookingBody","ClientList","clients","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["employment","booking","bookingBody","ClientList","clients","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["employment","booking","bookingBody","ClientList","clients","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["employment","booking","bookingBody","ClientList","clients","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["employment","booking","bookingBody","ClientList","clients","content","VideoEmbed","duration"]}],"namespace":["videoProduction","afterBody","ClientList","clients","content","VideoEmbed"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["employment","booking","bookingBody","ClientList","clients","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","booking","bookingBody","ClientList","clients","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["employment","booking","bookingBody","ClientList","clients","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","booking","bookingBody","ClientList","clients","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","booking","bookingBody","ClientList","clients","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["employment","booking","bookingBody","ClientList","clients","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["employment","booking","bookingBody","ClientList","clients","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["employment","booking","bookingBody","ClientList","clients","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["employment","booking","bookingBody","ClientList","clients","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","booking","bookingBody","ClientList","clients","content","CustomImage","sizes"]}],"namespace":["videoProduction","afterBody","ClientList","clients","content","CustomImage"]},{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["employment","booking","bookingBody","ClientList","clients","content","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["employment","booking","bookingBody","ClientList","clients","content","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["employment","benefitsBody","ClientList","clients","content","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","benefitsBody","ClientList","clients","content","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["employment","benefitsBody","ClientList","clients","content","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","benefitsBody","ClientList","clients","content","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","benefitsBody","ClientList","clients","content","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["employment","benefitsBody","ClientList","clients","content","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["employment","benefitsBody","ClientList","clients","content","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["employment","benefitsBody","ClientList","clients","content","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["employment","benefitsBody","ClientList","clients","content","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","benefitsBody","ClientList","clients","content","ContentCard","content","CustomImage","sizes"]}],"namespace":["employment","_body","ClientList","clients","content","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["employment","benefitsBody","ClientList","clients","content","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["employment","benefitsBody","ClientList","clients","content","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["employment","benefitsBody","ClientList","clients","content","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["employment","benefitsBody","ClientList","clients","content","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["employment","benefitsBody","ClientList","clients","content","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["employment","_body","ClientList","clients","content","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["employment","benefitsBody","ClientList","clients","content","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["employment","benefitsBody","ClientList","clients","content","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["employment","benefitsBody","ClientList","clients","content","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["employment","benefitsBody","ClientList","clients","content","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["employment","benefitsBody","ClientList","clients","content","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["employment","benefitsBody","ClientList","clients","content","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["employment","benefitsBody","ClientList","clients","content","ContentCard","content","VideoEmbed","duration"]}],"namespace":["employment","_body","ClientList","clients","content","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","benefitsBody","ClientList","clients","content","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["employment","benefitsBody","ClientList","clients","content","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["employment","afterBody","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["employment","afterBody","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["employment","afterBody","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["employment","afterBody","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["employment","afterBody","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["employment","benefitsBody","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["employment","_body","ClientList","clients","content","ContentCard","content","ColorBlock"]}],"namespace":["employment","booking","bookingBody","ClientList","clients","content","ContentCard","content"]}],"namespace":["videoProduction","afterBody","ClientList","clients","content","ContentCard"]}],"namespace":["videoProduction","_body","ClientList","clients","content"]},{"type":"string","name":"caseStudyUrl","label":"Case study URL","namespace":["videoProduction","_body","ClientList","clients","caseStudyUrl"]},{"type":"object","name":"categories","label":"Categories","list":true,"ui":{},"fields":[{"type":"reference","name":"category","label":"Category","collections":["clientCategories"],"namespace":["videoProduction","afterBody","ClientList","clients","categories","category"]}],"namespace":["videoProduction","_body","ClientList","clients","categories"]}],"namespace":["consulting","afterBody","ClientList","clients"],"searchable":true,"uid":false}],"namespace":["consulting","afterBody","ClientList"]},{"name":"ClientLogos","label":"Client Logos","ui":{"previewSrc":"/images/thumbs/tina/client-logos.jpg"},"fields":[{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["consulting","afterBody","ClientLogos","altText"],"searchable":true,"uid":false}],"namespace":["consulting","afterBody","ClientLogos"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["consulting","afterBody","ColorBlock","title"],"searchable":true,"uid":false},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["consulting","afterBody","ColorBlock","subTitle"],"searchable":true,"uid":false},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["videoProduction","_body","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["videoProduction","_body","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["videoProduction","_body","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["videoProduction","_body","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["videoProduction","_body","ColorBlock","colorRow","caption"]}],"namespace":["consulting","afterBody","ColorBlock","colorRow"],"searchable":true,"uid":false}],"namespace":["consulting","afterBody","ColorBlock"]},{"name":"ColorPalette","label":"Color Palette","ui":{"previewSrc":"/images/thumbs/tina/color-palette.jpg"},"fields":[{"type":"string","label":"Name","name":"name","namespace":["consulting","afterBody","ColorPalette","name"],"searchable":true,"uid":false}],"namespace":["consulting","afterBody","ColorPalette"]},{"name":"Content","label":"Content","ui":{"previewSrc":"/images/thumbs/tina/content.jpg","defaultItem":{"body":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["consulting","afterBody","Content","title"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["videoProduction","afterBody","Content","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["videoProduction","afterBody","Content","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["videoProduction","afterBody","Content","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["videoProduction","afterBody","Content","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["videoProduction","afterBody","Content","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["videoProduction","afterBody","Content","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["videoProduction","afterBody","Content","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["videoProduction","afterBody","Content","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["videoProduction","afterBody","Content","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["videoProduction","afterBody","Content","content","CustomImage","sizes"]}],"namespace":["videoProduction","_body","Content","content","CustomImage"]},{"name":"ClientLogos","label":"Client Logos","ui":{"previewSrc":"/images/thumbs/tina/client-logos.jpg"},"fields":[{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["videoProduction","afterBody","Content","content","ClientLogos","altText"]}],"namespace":["videoProduction","_body","Content","content","ClientLogos"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["videoProduction","afterBody","Content","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["videoProduction","afterBody","Content","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["videoProduction","afterBody","Content","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["videoProduction","afterBody","Content","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["videoProduction","afterBody","Content","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["videoProduction","afterBody","Content","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["videoProduction","afterBody","Content","content","VideoEmbed","duration"]}],"namespace":["videoProduction","_body","Content","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["videoProduction","afterBody","Content","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["videoProduction","afterBody","Content","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["employment","booking","bookingBody","Content","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["employment","booking","bookingBody","Content","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["employment","booking","bookingBody","Content","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["employment","booking","bookingBody","Content","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["employment","booking","bookingBody","Content","content","ColorBlock","colorRow","caption"]}],"namespace":["videoProduction","afterBody","Content","content","ColorBlock","colorRow"]}],"namespace":["videoProduction","_body","Content","content","ColorBlock"]}],"namespace":["consulting","afterBody","Content","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Container Padding","name":"paddingClass","options":["Mobile: No Padding","Mobile: No Top and Horizontal Padding"],"namespace":["consulting","afterBody","Content","paddingClass"],"searchable":true,"uid":false},{"type":"string","label":"Text size","name":"size","options":[{"label":"small","value":"sm"},{"label":"normal","value":"base"},{"label":"large","value":"lg"},{"label":"extra large","value":"xl"},{"label":"2x large","value":"2xl"}],"namespace":["consulting","afterBody","Content","size"],"searchable":true,"uid":false},{"type":"string","label":"Align","name":"align","options":[{"label":"Left","value":"left"},{"label":"Center","value":"center"},{"label":"Right","value":"right"}],"namespace":["consulting","afterBody","Content","align"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["consulting","afterBody","Content","backgroundColor"],"searchable":true,"uid":false}],"namespace":["consulting","afterBody","Content"]},{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["consulting","afterBody","ContentCard","prose"],"searchable":true,"uid":false},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["consulting","afterBody","ContentCard","centerAlignedText"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["videoProduction","afterBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["videoProduction","afterBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["videoProduction","afterBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["videoProduction","afterBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["videoProduction","afterBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["videoProduction","afterBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["videoProduction","afterBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["videoProduction","afterBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["videoProduction","afterBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["videoProduction","afterBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["videoProduction","_body","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["videoProduction","afterBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["videoProduction","afterBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["videoProduction","afterBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["videoProduction","afterBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["videoProduction","afterBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["videoProduction","_body","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["videoProduction","afterBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["videoProduction","afterBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["videoProduction","afterBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["videoProduction","afterBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["videoProduction","afterBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["videoProduction","afterBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["videoProduction","afterBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["videoProduction","_body","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["videoProduction","afterBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["videoProduction","afterBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["employment","booking","bookingBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["employment","booking","bookingBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["employment","booking","bookingBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["employment","booking","bookingBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["employment","booking","bookingBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["videoProduction","afterBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["videoProduction","_body","ContentCard","content","ColorBlock"]}],"namespace":["consulting","afterBody","ContentCard","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["consulting","afterBody","ContentCard"]},{"name":"CustomDownloadButton","label":"Custom Download Button","ui":{"previewSrc":"/images/thumbs/tina/custom-download-button.jpg"},"fields":[{"type":"string","label":"Text","name":"btnText","namespace":["consulting","afterBody","CustomDownloadButton","btnText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"btnLink","namespace":["consulting","afterBody","CustomDownloadButton","btnLink"],"searchable":true,"uid":false}],"namespace":["consulting","afterBody","CustomDownloadButton"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["consulting","afterBody","CustomImage","src"],"searchable":false,"uid":false},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["consulting","afterBody","CustomImage","altText"],"searchable":true,"uid":false},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["consulting","afterBody","CustomImage","alignment"],"searchable":true,"uid":false},{"type":"number","label":"Height","name":"height","required":true,"namespace":["consulting","afterBody","CustomImage","height"],"searchable":true,"uid":false},{"type":"number","label":"Width","name":"width","required":true,"namespace":["consulting","afterBody","CustomImage","width"],"searchable":true,"uid":false},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["consulting","afterBody","CustomImage","link"],"searchable":true,"uid":false},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["consulting","afterBody","CustomImage","customClass"],"searchable":true,"uid":false},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["consulting","afterBody","CustomImage","caption"],"searchable":true,"uid":false},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["consulting","afterBody","CustomImage","captionColor"],"searchable":true,"uid":false},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["consulting","afterBody","CustomImage","sizes"],"searchable":true,"uid":false}],"namespace":["consulting","afterBody","CustomImage"]},{"name":"DomainFromQuery","label":"Domain from query","ui":{"previewSrc":"/images/thumbs/tina/domain-from-query.jpg"},"fields":[{"name":"title","label":"Title","type":"string","description":"This is a H1 heading","namespace":["consulting","afterBody","DomainFromQuery","title"],"searchable":true,"uid":false},{"name":"showDomain","label":"Show domain name","type":"boolean","description":"Query param in URL must have key of 'domain'","namespace":["consulting","afterBody","DomainFromQuery","showDomain"],"searchable":true,"uid":false}],"namespace":["consulting","afterBody","DomainFromQuery"]},{"name":"DownloadBlock","label":"Download Block","ui":{"previewSrc":"/images/thumbs/tina/download-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["consulting","afterBody","DownloadBlock","title"],"searchable":true,"uid":false},{"type":"object","label":"Downloads","name":"downloads","ui":{},"list":true,"fields":[{"type":"string","label":"Header","name":"header","namespace":["videoProduction","_body","DownloadBlock","downloads","header"]},{"type":"image","label":"Image","name":"img","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","img","uploadDir"]},"namespace":["videoProduction","_body","DownloadBlock","downloads","img"]},{"type":"string","label":"Image Background","name":"imgBackground","options":["black","grey","white","darkgrey","darkgreen"],"namespace":["videoProduction","_body","DownloadBlock","downloads","imgBackground"]},{"type":"string","label":"First Link Text","name":"firstLinkText","description":"Defaults to PNG","namespace":["videoProduction","_body","DownloadBlock","downloads","firstLinkText"]},{"type":"image","label":"First Link","name":"firstLink","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","firstLink","uploadDir"]},"namespace":["videoProduction","_body","DownloadBlock","downloads","firstLink"]},{"type":"string","label":"Second Link Text","name":"secondLinkText","description":"Defaults to PDF","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","secondLinkText","uploadDir"]},"namespace":["videoProduction","_body","DownloadBlock","downloads","secondLinkText"]},{"type":"image","label":"Second Link","name":"secondLink","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","secondLink","uploadDir"]},"namespace":["videoProduction","_body","DownloadBlock","downloads","secondLink"]}],"namespace":["consulting","afterBody","DownloadBlock","downloads"],"searchable":true,"uid":false},{"type":"boolean","label":"Bottom border","name":"bottomBorder","namespace":["consulting","afterBody","DownloadBlock","bottomBorder"],"searchable":true,"uid":false}],"namespace":["consulting","afterBody","DownloadBlock"]},{"name":"DynamicColumns","label":"Dynamic Column Layout","fields":[{"type":"rich-text","label":"Column text body","name":"colBody","required":true,"namespace":["consulting","afterBody","DynamicColumns","colBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"number","label":"Number of columns","name":"colCount","required":true,"ui":{},"namespace":["consulting","afterBody","DynamicColumns","colCount"],"searchable":true,"uid":false}],"namespace":["consulting","afterBody","DynamicColumns"]},{"name":"EventBooking","label":"Events Booking","ui":{"previewSrc":"/images/thumbs/tina/events-booking.jpg"},"fields":[{"type":"number","label":"Duration (In Days)","name":"eventDurationInDays","required":true,"namespace":["consulting","afterBody","EventBooking","eventDurationInDays"],"searchable":true,"uid":false},{"type":"number","label":"Price","name":"price","required":true,"namespace":["consulting","afterBody","EventBooking","price"],"searchable":true,"uid":false},{"type":"number","label":"Discount Price","name":"discountPrice","namespace":["consulting","afterBody","EventBooking","discountPrice"],"searchable":true,"uid":false},{"type":"string","name":"gstText","label":"Select GST Option","options":["inc GST","+ GST"],"required":true,"namespace":["consulting","afterBody","EventBooking","gstText"],"searchable":true,"uid":false},{"type":"string","label":"Discount Note","name":"discountNote","namespace":["consulting","afterBody","EventBooking","discountNote"],"searchable":true,"uid":false},{"type":"object","label":"Event","name":"eventList","ui":{},"list":true,"fields":[{"type":"string","label":"City","name":"city","namespace":["videoProduction","_body","EventBooking","eventList","city"]},{"type":"datetime","label":"Start Date","name":"date","ui":{},"namespace":["videoProduction","_body","EventBooking","eventList","date"]},{"type":"string","label":"Booking URL","name":"bookingURL","namespace":["videoProduction","_body","EventBooking","eventList","bookingURL"]},{"type":"reference","label":"Location","name":"location","collections":["locations"],"namespace":["videoProduction","_body","EventBooking","eventList","location"]}],"namespace":["consulting","afterBody","EventBooking","eventList"],"searchable":true,"uid":false}],"namespace":["consulting","afterBody","EventBooking"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["videoProduction","afterBody","EventLink","content","Flag","country"]}],"namespace":["videoProduction","_body","EventLink","content","Flag"]}],"namespace":["consulting","afterBody","EventLink","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Link","name":"link","namespace":["consulting","afterBody","EventLink","link"],"searchable":true,"uid":false},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["consulting","afterBody","EventLink","eventThumbnail"],"searchable":false,"uid":false},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["consulting","afterBody","EventLink","thumbnailAlt"],"searchable":true,"uid":false}],"namespace":["consulting","afterBody","EventLink"]},{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["consulting","afterBody","Flag","country"],"searchable":true,"uid":false}],"namespace":["consulting","afterBody","Flag"]},{"name":"FixedColumns","label":"Fixed Column Layout (2 columns)","ui":{"previewSrc":"/images/thumbs/tina/fixed-columns.jpg"},"fields":[{"type":"rich-text","label":"Header Section (Optional)","name":"headerSection","namespace":["consulting","afterBody","FixedColumns","headerSection"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"First column text","name":"firstColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["videoProduction","afterBody","FixedColumns","firstColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["videoProduction","afterBody","FixedColumns","firstColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["employment","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["employment","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["employment","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["employment","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["employment","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["employment","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["employment","booking","bookingBody","FixedColumns","firstColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["employment","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["employment","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["employment","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["employment","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["employment","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["employment","booking","bookingBody","FixedColumns","firstColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["employment","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["employment","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["employment","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["employment","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["employment","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["employment","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["employment","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["employment","booking","bookingBody","FixedColumns","firstColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["employment","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["employment","benefitsBody","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["employment","benefitsBody","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["employment","benefitsBody","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["employment","benefitsBody","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["employment","benefitsBody","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["employment","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["employment","booking","bookingBody","FixedColumns","firstColBody","ContentCard","content","ColorBlock"]}],"namespace":["videoProduction","afterBody","FixedColumns","firstColBody","ContentCard","content"]}],"namespace":["videoProduction","_body","FixedColumns","firstColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["videoProduction","afterBody","FixedColumns","firstColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["videoProduction","afterBody","FixedColumns","firstColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["videoProduction","afterBody","FixedColumns","firstColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["videoProduction","afterBody","FixedColumns","firstColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["videoProduction","afterBody","FixedColumns","firstColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["videoProduction","afterBody","FixedColumns","firstColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["videoProduction","afterBody","FixedColumns","firstColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["videoProduction","afterBody","FixedColumns","firstColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["videoProduction","afterBody","FixedColumns","firstColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["videoProduction","afterBody","FixedColumns","firstColBody","CustomImage","sizes"]}],"namespace":["videoProduction","_body","FixedColumns","firstColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["employment","_body","FixedColumns","firstColBody","EventLink","content","Flag","country"]}],"namespace":["employment","booking","bookingBody","FixedColumns","firstColBody","EventLink","content","Flag"]}],"namespace":["videoProduction","afterBody","FixedColumns","firstColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["videoProduction","afterBody","FixedColumns","firstColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["videoProduction","afterBody","FixedColumns","firstColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["videoProduction","afterBody","FixedColumns","firstColBody","EventLink","thumbnailAlt"]}],"namespace":["videoProduction","_body","FixedColumns","firstColBody","EventLink"]}],"namespace":["consulting","afterBody","FixedColumns","firstColBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"Second column text","name":"secondColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["videoProduction","afterBody","FixedColumns","secondColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["videoProduction","afterBody","FixedColumns","secondColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["employment","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["employment","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["employment","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["employment","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["employment","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["employment","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["employment","booking","bookingBody","FixedColumns","secondColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["employment","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["employment","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["employment","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["employment","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["employment","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["employment","booking","bookingBody","FixedColumns","secondColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["employment","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["employment","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["employment","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["employment","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["employment","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["employment","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["employment","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["employment","booking","bookingBody","FixedColumns","secondColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["employment","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["employment","benefitsBody","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["employment","benefitsBody","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["employment","benefitsBody","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["employment","benefitsBody","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["employment","benefitsBody","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["employment","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["employment","booking","bookingBody","FixedColumns","secondColBody","ContentCard","content","ColorBlock"]}],"namespace":["videoProduction","afterBody","FixedColumns","secondColBody","ContentCard","content"]}],"namespace":["videoProduction","_body","FixedColumns","secondColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["videoProduction","afterBody","FixedColumns","secondColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["videoProduction","afterBody","FixedColumns","secondColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["videoProduction","afterBody","FixedColumns","secondColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["videoProduction","afterBody","FixedColumns","secondColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["videoProduction","afterBody","FixedColumns","secondColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["videoProduction","afterBody","FixedColumns","secondColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["videoProduction","afterBody","FixedColumns","secondColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["videoProduction","afterBody","FixedColumns","secondColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["videoProduction","afterBody","FixedColumns","secondColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["videoProduction","afterBody","FixedColumns","secondColBody","CustomImage","sizes"]}],"namespace":["videoProduction","_body","FixedColumns","secondColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["employment","_body","FixedColumns","secondColBody","EventLink","content","Flag","country"]}],"namespace":["employment","booking","bookingBody","FixedColumns","secondColBody","EventLink","content","Flag"]}],"namespace":["videoProduction","afterBody","FixedColumns","secondColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["videoProduction","afterBody","FixedColumns","secondColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["videoProduction","afterBody","FixedColumns","secondColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["videoProduction","afterBody","FixedColumns","secondColBody","EventLink","thumbnailAlt"]}],"namespace":["videoProduction","_body","FixedColumns","secondColBody","EventLink"]}],"namespace":["consulting","afterBody","FixedColumns","secondColBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["consulting","afterBody","FixedColumns"]},{"name":"FixedTabsLayout","label":"Fixed Tabs Layout","ui":{"previewSrc":"/images/thumbs/tina/fixed-tabs-layout.jpg"},"fields":[{"type":"string","name":"firstTab","label":"First Tab","namespace":["consulting","afterBody","FixedTabsLayout","firstTab"],"searchable":true,"uid":false},{"type":"rich-text","name":"firstHeading","label":"First Heading","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["videoProduction","afterBody","FixedTabsLayout","firstHeading","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["videoProduction","afterBody","FixedTabsLayout","firstHeading","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["videoProduction","afterBody","FixedTabsLayout","firstHeading","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["videoProduction","afterBody","FixedTabsLayout","firstHeading","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["videoProduction","afterBody","FixedTabsLayout","firstHeading","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["videoProduction","afterBody","FixedTabsLayout","firstHeading","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["videoProduction","afterBody","FixedTabsLayout","firstHeading","VideoEmbed","duration"]}],"namespace":["videoProduction","_body","FixedTabsLayout","firstHeading","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["videoProduction","afterBody","FixedTabsLayout","firstHeading","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["videoProduction","afterBody","FixedTabsLayout","firstHeading","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["videoProduction","afterBody","FixedTabsLayout","firstHeading","BookingButton","buttonSubtitle"]}],"namespace":["videoProduction","_body","FixedTabsLayout","firstHeading","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["videoProduction","afterBody","FixedTabsLayout","firstHeading","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["employment","booking","bookingBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["employment","booking","bookingBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["employment","booking","bookingBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["employment","booking","bookingBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","skills"]}],"namespace":["videoProduction","afterBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["employment","booking","bookingBody","FixedTabsLayout","firstHeading","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["employment","booking","bookingBody","FixedTabsLayout","firstHeading","ExpertBlock","link","url"]}],"namespace":["videoProduction","afterBody","FixedTabsLayout","firstHeading","ExpertBlock","link"]}],"namespace":["videoProduction","_body","FixedTabsLayout","firstHeading","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","booking","bookingBody","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["employment","booking","bookingBody","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["employment","booking","bookingBody","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["employment","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["employment","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["employment","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["employment","booking","bookingBody","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["videoProduction","afterBody","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["videoProduction","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["videoProduction","afterBody","FixedTabsLayout","firstHeading","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["videoProduction","afterBody","FixedTabsLayout","firstHeading","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["videoProduction","afterBody","FixedTabsLayout","firstHeading","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["videoProduction","afterBody","FixedTabsLayout","firstHeading","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["videoProduction","afterBody","FixedTabsLayout","firstHeading","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["videoProduction","afterBody","FixedTabsLayout","firstHeading","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["videoProduction","afterBody","FixedTabsLayout","firstHeading","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["videoProduction","afterBody","FixedTabsLayout","firstHeading","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["videoProduction","afterBody","FixedTabsLayout","firstHeading","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["videoProduction","afterBody","FixedTabsLayout","firstHeading","CustomImage","sizes"]}],"namespace":["videoProduction","_body","FixedTabsLayout","firstHeading","CustomImage"]}],"namespace":["consulting","afterBody","FixedTabsLayout","firstHeading"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","name":"firstBody","label":"First Body","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["videoProduction","afterBody","FixedTabsLayout","firstBody","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["videoProduction","afterBody","FixedTabsLayout","firstBody","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["videoProduction","afterBody","FixedTabsLayout","firstBody","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["videoProduction","afterBody","FixedTabsLayout","firstBody","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["videoProduction","afterBody","FixedTabsLayout","firstBody","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["videoProduction","afterBody","FixedTabsLayout","firstBody","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["videoProduction","afterBody","FixedTabsLayout","firstBody","VideoEmbed","duration"]}],"namespace":["videoProduction","_body","FixedTabsLayout","firstBody","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["videoProduction","afterBody","FixedTabsLayout","firstBody","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["videoProduction","afterBody","FixedTabsLayout","firstBody","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["videoProduction","afterBody","FixedTabsLayout","firstBody","BookingButton","buttonSubtitle"]}],"namespace":["videoProduction","_body","FixedTabsLayout","firstBody","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["videoProduction","afterBody","FixedTabsLayout","firstBody","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["employment","booking","bookingBody","FixedTabsLayout","firstBody","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["employment","booking","bookingBody","FixedTabsLayout","firstBody","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["employment","booking","bookingBody","FixedTabsLayout","firstBody","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["employment","booking","bookingBody","FixedTabsLayout","firstBody","ExpertBlock","expertList","skills"]}],"namespace":["videoProduction","afterBody","FixedTabsLayout","firstBody","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["employment","booking","bookingBody","FixedTabsLayout","firstBody","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["employment","booking","bookingBody","FixedTabsLayout","firstBody","ExpertBlock","link","url"]}],"namespace":["videoProduction","afterBody","FixedTabsLayout","firstBody","ExpertBlock","link"]}],"namespace":["videoProduction","_body","FixedTabsLayout","firstBody","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","booking","bookingBody","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["employment","booking","bookingBody","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["employment","booking","bookingBody","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["employment","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["employment","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["employment","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["employment","booking","bookingBody","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["videoProduction","afterBody","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["videoProduction","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["videoProduction","afterBody","FixedTabsLayout","firstBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["videoProduction","afterBody","FixedTabsLayout","firstBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["videoProduction","afterBody","FixedTabsLayout","firstBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["videoProduction","afterBody","FixedTabsLayout","firstBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["videoProduction","afterBody","FixedTabsLayout","firstBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["videoProduction","afterBody","FixedTabsLayout","firstBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["videoProduction","afterBody","FixedTabsLayout","firstBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["videoProduction","afterBody","FixedTabsLayout","firstBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["videoProduction","afterBody","FixedTabsLayout","firstBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["videoProduction","afterBody","FixedTabsLayout","firstBody","CustomImage","sizes"]}],"namespace":["videoProduction","_body","FixedTabsLayout","firstBody","CustomImage"]}],"namespace":["consulting","afterBody","FixedTabsLayout","firstBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","name":"secondTab","label":"Second Tab","namespace":["consulting","afterBody","FixedTabsLayout","secondTab"],"searchable":true,"uid":false},{"type":"rich-text","name":"secondHeading","label":"Second Heading","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["videoProduction","afterBody","FixedTabsLayout","secondHeading","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["videoProduction","afterBody","FixedTabsLayout","secondHeading","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["videoProduction","afterBody","FixedTabsLayout","secondHeading","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["videoProduction","afterBody","FixedTabsLayout","secondHeading","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["videoProduction","afterBody","FixedTabsLayout","secondHeading","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["videoProduction","afterBody","FixedTabsLayout","secondHeading","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["videoProduction","afterBody","FixedTabsLayout","secondHeading","VideoEmbed","duration"]}],"namespace":["videoProduction","_body","FixedTabsLayout","secondHeading","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["videoProduction","afterBody","FixedTabsLayout","secondHeading","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["videoProduction","afterBody","FixedTabsLayout","secondHeading","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["videoProduction","afterBody","FixedTabsLayout","secondHeading","BookingButton","buttonSubtitle"]}],"namespace":["videoProduction","_body","FixedTabsLayout","secondHeading","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["videoProduction","afterBody","FixedTabsLayout","secondHeading","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["employment","booking","bookingBody","FixedTabsLayout","secondHeading","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["employment","booking","bookingBody","FixedTabsLayout","secondHeading","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["employment","booking","bookingBody","FixedTabsLayout","secondHeading","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["employment","booking","bookingBody","FixedTabsLayout","secondHeading","ExpertBlock","expertList","skills"]}],"namespace":["videoProduction","afterBody","FixedTabsLayout","secondHeading","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["employment","booking","bookingBody","FixedTabsLayout","secondHeading","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["employment","booking","bookingBody","FixedTabsLayout","secondHeading","ExpertBlock","link","url"]}],"namespace":["videoProduction","afterBody","FixedTabsLayout","secondHeading","ExpertBlock","link"]}],"namespace":["videoProduction","_body","FixedTabsLayout","secondHeading","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","booking","bookingBody","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["employment","booking","bookingBody","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["employment","booking","bookingBody","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["employment","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["employment","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["employment","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["employment","booking","bookingBody","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["videoProduction","afterBody","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["videoProduction","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["videoProduction","afterBody","FixedTabsLayout","secondHeading","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["videoProduction","afterBody","FixedTabsLayout","secondHeading","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["videoProduction","afterBody","FixedTabsLayout","secondHeading","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["videoProduction","afterBody","FixedTabsLayout","secondHeading","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["videoProduction","afterBody","FixedTabsLayout","secondHeading","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["videoProduction","afterBody","FixedTabsLayout","secondHeading","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["videoProduction","afterBody","FixedTabsLayout","secondHeading","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["videoProduction","afterBody","FixedTabsLayout","secondHeading","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["videoProduction","afterBody","FixedTabsLayout","secondHeading","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["videoProduction","afterBody","FixedTabsLayout","secondHeading","CustomImage","sizes"]}],"namespace":["videoProduction","_body","FixedTabsLayout","secondHeading","CustomImage"]}],"namespace":["consulting","afterBody","FixedTabsLayout","secondHeading"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","name":"secondBody","label":"Second Body","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["videoProduction","afterBody","FixedTabsLayout","secondBody","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["videoProduction","afterBody","FixedTabsLayout","secondBody","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["videoProduction","afterBody","FixedTabsLayout","secondBody","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["videoProduction","afterBody","FixedTabsLayout","secondBody","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["videoProduction","afterBody","FixedTabsLayout","secondBody","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["videoProduction","afterBody","FixedTabsLayout","secondBody","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["videoProduction","afterBody","FixedTabsLayout","secondBody","VideoEmbed","duration"]}],"namespace":["videoProduction","_body","FixedTabsLayout","secondBody","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["videoProduction","afterBody","FixedTabsLayout","secondBody","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["videoProduction","afterBody","FixedTabsLayout","secondBody","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["videoProduction","afterBody","FixedTabsLayout","secondBody","BookingButton","buttonSubtitle"]}],"namespace":["videoProduction","_body","FixedTabsLayout","secondBody","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["videoProduction","afterBody","FixedTabsLayout","secondBody","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["employment","booking","bookingBody","FixedTabsLayout","secondBody","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["employment","booking","bookingBody","FixedTabsLayout","secondBody","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["employment","booking","bookingBody","FixedTabsLayout","secondBody","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["employment","booking","bookingBody","FixedTabsLayout","secondBody","ExpertBlock","expertList","skills"]}],"namespace":["videoProduction","afterBody","FixedTabsLayout","secondBody","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["employment","booking","bookingBody","FixedTabsLayout","secondBody","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["employment","booking","bookingBody","FixedTabsLayout","secondBody","ExpertBlock","link","url"]}],"namespace":["videoProduction","afterBody","FixedTabsLayout","secondBody","ExpertBlock","link"]}],"namespace":["videoProduction","_body","FixedTabsLayout","secondBody","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","booking","bookingBody","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["employment","booking","bookingBody","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["employment","booking","bookingBody","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["employment","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["employment","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["employment","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["employment","booking","bookingBody","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["videoProduction","afterBody","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["videoProduction","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["videoProduction","afterBody","FixedTabsLayout","secondBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["videoProduction","afterBody","FixedTabsLayout","secondBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["videoProduction","afterBody","FixedTabsLayout","secondBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["videoProduction","afterBody","FixedTabsLayout","secondBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["videoProduction","afterBody","FixedTabsLayout","secondBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["videoProduction","afterBody","FixedTabsLayout","secondBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["videoProduction","afterBody","FixedTabsLayout","secondBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["videoProduction","afterBody","FixedTabsLayout","secondBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["videoProduction","afterBody","FixedTabsLayout","secondBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["videoProduction","afterBody","FixedTabsLayout","secondBody","CustomImage","sizes"]}],"namespace":["videoProduction","_body","FixedTabsLayout","secondBody","CustomImage"]}],"namespace":["consulting","afterBody","FixedTabsLayout","secondBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["consulting","afterBody","FixedTabsLayout"]},{"label":"Google Maps","name":"GoogleMaps","ui":{"previewSrc":"/images/thumbs/tina/google-maps.jpg"},"fields":[{"type":"string","label":"URL","name":"embedUrl","required":true,"namespace":["consulting","afterBody","GoogleMaps","embedUrl"],"searchable":true,"uid":false},{"type":"string","label":"Width","name":"embedWidth","namespace":["consulting","afterBody","GoogleMaps","embedWidth"],"searchable":true,"uid":false},{"type":"string","label":"Height","name":"embedHeight","namespace":["consulting","afterBody","GoogleMaps","embedHeight"],"searchable":true,"uid":false}],"namespace":["consulting","afterBody","GoogleMaps"]},{"label":"Grid Layout","name":"GridLayout","ui":{"previewSrc":"/images/thumbs/tina/grid-layout.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["consulting","afterBody","GridLayout","title"],"searchable":true,"uid":false},{"type":"object","list":true,"label":"Grid Items","name":"grids","ui":{},"fields":[{"type":"string","label":"Grid Title","name":"gridTitle","namespace":["videoProduction","_body","GridLayout","grids","gridTitle"]},{"type":"boolean","label":"Show Grid Title","name":"showGridTitle","namespace":["videoProduction","_body","GridLayout","grids","showGridTitle"]},{"type":"boolean","label":"Centered Grid Title","name":"centeredGridTitle","namespace":["videoProduction","_body","GridLayout","grids","centeredGridTitle"]},{"type":"boolean","label":"Show Header Divider","name":"showHeaderDivider","namespace":["videoProduction","_body","GridLayout","grids","showHeaderDivider"]},{"type":"boolean","label":"Offset Grid Start","name":"offsetGridStart","namespace":["videoProduction","_body","GridLayout","grids","offsetGridStart"]},{"type":"object","label":"Blocks","name":"blocks","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["videoProduction","afterBody","GridLayout","grids","blocks","title"]},{"type":"boolean","label":"Show Title","name":"showTitle","namespace":["videoProduction","afterBody","GridLayout","grids","blocks","showTitle"]},{"type":"image","label":"Image","name":"image","uploadDir":{"namespace":["page","beforeBody","GridLayout","grids","blocks","image","uploadDir"]},"namespace":["videoProduction","afterBody","GridLayout","grids","blocks","image"]},{"type":"image","label":"Related Image","name":"relatedImage","uploadDir":{"namespace":["page","beforeBody","GridLayout","grids","blocks","relatedImage","uploadDir"]},"namespace":["videoProduction","afterBody","GridLayout","grids","blocks","relatedImage"]},{"type":"rich-text","name":"linkContent","label":"Link Content","templates":[{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["employment","_body","GridLayout","grids","blocks","linkContent","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["employment","_body","GridLayout","grids","blocks","linkContent","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["employment","_body","GridLayout","grids","blocks","linkContent","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["employment","_body","GridLayout","grids","blocks","linkContent","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["employment","_body","GridLayout","grids","blocks","linkContent","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["employment","_body","GridLayout","grids","blocks","linkContent","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["employment","_body","GridLayout","grids","blocks","linkContent","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["employment","_body","GridLayout","grids","blocks","linkContent","UtilityButton","openInNewTab"]}],"namespace":["employment","booking","bookingBody","GridLayout","grids","blocks","linkContent","UtilityButton"]}],"namespace":["videoProduction","afterBody","GridLayout","grids","blocks","linkContent"]}],"namespace":["videoProduction","_body","GridLayout","grids","blocks"]}],"namespace":["consulting","afterBody","GridLayout","grids"],"searchable":true,"uid":false}],"namespace":["consulting","afterBody","GridLayout"]},{"name":"Hero","label":"Hero","ui":{"previewSrc":"/blocks/hero.png","defaultItem":{"tagline":"Here's some text above the other text","headline":"This Big Text is Totally Awesome","text":"Phasellus scelerisque, libero eu finibus rutrum, risus risus accumsan libero, nec molestie urna dui a leo."}},"fields":[{"type":"string","label":"Tagline","name":"tagline","namespace":["consulting","afterBody","Hero","tagline"],"searchable":true,"uid":false},{"type":"string","label":"Headline","name":"headline","namespace":["consulting","afterBody","Hero","headline"],"searchable":true,"uid":false},{"label":"Text","name":"text","type":"rich-text","namespace":["consulting","afterBody","Hero","text"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"label":"Actions","name":"actions","type":"object","list":true,"ui":{"defaultItem":{"label":"Action Label","type":"button","icon":true,"link":"/"}},"fields":[{"label":"Label","name":"label","type":"string","namespace":["videoProduction","_body","Hero","actions","label"]},{"label":"Type","name":"type","type":"string","options":[{"label":"Button","value":"button"},{"label":"Link","value":"link"}],"namespace":["videoProduction","_body","Hero","actions","type"]},{"label":"Icon","name":"icon","type":"boolean","namespace":["videoProduction","_body","Hero","actions","icon"]},{"label":"Link","name":"link","type":"string","namespace":["videoProduction","_body","Hero","actions","link"]}],"namespace":["consulting","afterBody","Hero","actions"],"searchable":true,"uid":false},{"type":"object","label":"Image","name":"image","fields":[{"name":"src","label":"Image Source","type":"image","namespace":["videoProduction","_body","Hero","image","src"]},{"name":"alt","label":"Alt Text","type":"string","namespace":["videoProduction","_body","Hero","image","alt"]}],"namespace":["consulting","afterBody","Hero","image"],"searchable":true,"uid":false},{"type":"string","label":"Color","name":"color","options":[{"label":"Default","value":"default"},{"label":"Tint","value":"tint"},{"label":"Primary","value":"primary"}],"namespace":["consulting","afterBody","Hero","color"],"searchable":true,"uid":false}],"namespace":["consulting","afterBody","Hero"]},{"name":"HorizontalCard","label":"Horizontal Card","ui":{"previewSrc":"/images/thumbs/tina/horizontal-card.jpg"},"fields":[{"type":"object","label":"Cards","name":"cardList","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["videoProduction","_body","HorizontalCard","cardList","title"]},{"type":"rich-text","label":"Content","name":"content","namespace":["videoProduction","_body","HorizontalCard","cardList","content"]},{"type":"image","label":"Thumbnail","name":"thumbnail","uploadDir":{"namespace":["page","beforeBody","HorizontalCard","cardList","thumbnail","uploadDir"]},"namespace":["videoProduction","_body","HorizontalCard","cardList","thumbnail"]},{"type":"string","label":"Link","name":"link","namespace":["videoProduction","_body","HorizontalCard","cardList","link"]}],"namespace":["consulting","afterBody","HorizontalCard","cardList"],"searchable":true,"uid":false},{"type":"object","label":"Button","name":"button","fields":[{"type":"string","label":"Text","name":"text","namespace":["videoProduction","_body","HorizontalCard","button","text"]},{"type":"string","label":"Link","name":"link","namespace":["videoProduction","_body","HorizontalCard","button","link"]}],"namespace":["consulting","afterBody","HorizontalCard","button"],"searchable":true,"uid":false}],"namespace":["consulting","afterBody","HorizontalCard"]},{"name":"InternalCarousel","label":"Internal Carousel","ui":{"previewSrc":"/images/thumbs/tina/internal-carousel.jpg"},"fields":[{"label":"Images","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Image description"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["videoProduction","_body","InternalCarousel","items","label"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","InternalCarousel","items","imgSrc","uploadDir"]},"namespace":["videoProduction","_body","InternalCarousel","items","imgSrc"]}],"namespace":["consulting","afterBody","InternalCarousel","items"],"searchable":true,"uid":false},{"type":"string","label":"Header","name":"header","namespace":["consulting","afterBody","InternalCarousel","header"],"searchable":true,"uid":false},{"type":"rich-text","label":"Text","name":"paragraph","isBody":false,"namespace":["consulting","afterBody","InternalCarousel","paragraph"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Website","name":"website","namespace":["consulting","afterBody","InternalCarousel","website"],"searchable":true,"uid":false},{"type":"object","label":"Technologies","name":"technologies","list":true,"ui":{},"fields":[{"type":"string","label":"Name","name":"name","namespace":["videoProduction","_body","InternalCarousel","technologies","name"]}],"namespace":["consulting","afterBody","InternalCarousel","technologies"],"searchable":true,"uid":false},{"type":"string","label":"Case Study","name":"caseStudyUrl","namespace":["consulting","afterBody","InternalCarousel","caseStudyUrl"],"searchable":true,"uid":false},{"type":"string","label":"Video URL","name":"videoUrl","namespace":["consulting","afterBody","InternalCarousel","videoUrl"],"searchable":true,"uid":false}],"namespace":["consulting","afterBody","InternalCarousel"]},{"label":"Join As Presenter","name":"joinAsPresenter","fields":[{"label":"Learn More Link","name":"link","type":"string","namespace":["consulting","afterBody","joinAsPresenter","link"],"searchable":true,"uid":false},{"label":"Image","name":"img","type":"image","namespace":["consulting","afterBody","joinAsPresenter","img"],"searchable":false,"uid":false}],"namespace":["consulting","afterBody","joinAsPresenter"]},{"label":"Join Github","name":"joinGithub","ui":{"previewSrc":"/images/thumbs/tina/join-github.jpg"},"fields":[{"label":"Title","name":"title","type":"string","namespace":["consulting","afterBody","joinGithub","title"],"searchable":true,"uid":false},{"label":"Join Github Link","name":"link","type":"string","namespace":["consulting","afterBody","joinGithub","link"],"searchable":true,"uid":false}],"namespace":["consulting","afterBody","joinGithub"]},{"name":"JotFormEmbed","label":"JotForm Embed","ui":{"previewSrc":"/images/thumbs/tina/jotform-embed.jpg"},"fields":[{"type":"string","name":"jotFormId","label":"JotForm Id","required":true,"namespace":["consulting","afterBody","JotFormEmbed","jotFormId"],"searchable":true,"uid":false},{"type":"string","label":"Button Text","name":"buttonText","namespace":["consulting","afterBody","JotFormEmbed","buttonText"],"searchable":true,"uid":false},{"type":"string","name":"containerClass","label":"Container Class","namespace":["consulting","afterBody","JotFormEmbed","containerClass"],"searchable":true,"uid":false},{"type":"string","label":"Button Class","name":"buttonClass","namespace":["consulting","afterBody","JotFormEmbed","buttonClass"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","namespace":["consulting","afterBody","JotFormEmbed","animated"],"searchable":true,"uid":false}],"namespace":["consulting","afterBody","JotFormEmbed"]},{"name":"LatestTech","label":"Latest Tech","ui":{"previewSrc":"/images/thumbs/tina/latest-tech.jpg"},"fields":[{"type":"reference","description":"Select a config file including a set of badges","collections":["userGroupGlobal"],"label":"Badges","name":"badges","namespace":["consulting","afterBody","LatestTech","badges"],"searchable":true,"uid":false}],"namespace":["consulting","afterBody","LatestTech"]},{"name":"LocationBlock","label":"Locations","ui":{"previewSrc":"/images/thumbs/tina/locations.jpg"},"fields":[{"type":"string","name":"title","label":"Title","namespace":["consulting","afterBody","LocationBlock","title"],"searchable":true,"uid":false},{"type":"object","label":"Location List","name":"locationList","list":true,"ui":{},"fields":[{"type":"reference","collections":["locations"],"label":"Location","name":"location","namespace":["videoProduction","_body","LocationBlock","locationList","location"]}],"namespace":["consulting","afterBody","LocationBlock","locationList"],"searchable":true,"uid":false},{"type":"object","name":"chapelWebsite","label":"Chapel Website","fields":[{"type":"string","name":"title","label":"Text","namespace":["videoProduction","_body","LocationBlock","chapelWebsite","title"]},{"type":"string","name":"URL","label":"URL","namespace":["videoProduction","_body","LocationBlock","chapelWebsite","URL"]}],"namespace":["consulting","afterBody","LocationBlock","chapelWebsite"],"searchable":true,"uid":false}],"namespace":["consulting","afterBody","LocationBlock"]},{"name":"NewslettersTable","label":"Newsletters Table","ui":{"previewSrc":"/images/thumbs/tina/newsletters-table.jpg"},"fields":[{"type":"string","label":"Header text","name":"headerText","namespace":["consulting","afterBody","NewslettersTable","headerText"],"searchable":true,"uid":false}],"namespace":["consulting","afterBody","NewslettersTable"]},{"label":"Organizer","name":"organizer","fields":[{"type":"image","label":"Profile Image","name":"profileImg","namespace":["consulting","afterBody","organizer","profileImg"],"searchable":false,"uid":false},{"type":"string","label":"Profile Link","name":"profileLink","namespace":["consulting","afterBody","organizer","profileLink"],"searchable":true,"uid":false},{"type":"string","label":"Name","name":"name","namespace":["consulting","afterBody","organizer","name"],"searchable":true,"uid":false},{"type":"string","label":"Position","name":"position","namespace":["consulting","afterBody","organizer","position"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","namespace":["consulting","afterBody","organizer","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["consulting","afterBody","organizer"]},{"label":"Payment Block","name":"paymentBlock","ui":{"previewSrc":"/images/thumbs/tina/payment-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["consulting","afterBody","paymentBlock","title"],"searchable":true,"uid":false},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["consulting","afterBody","paymentBlock","subTitle"],"searchable":true,"uid":false},{"type":"reference","label":"Payment Links","name":"payments","collections":["paymentDetails"],"namespace":["consulting","afterBody","paymentBlock","payments"],"searchable":true,"uid":false},{"type":"rich-text","label":"Footer","name":"footer","namespace":["consulting","afterBody","paymentBlock","footer"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"image","label":"Credit Cards Image","name":"creditImgSrc","namespace":["consulting","afterBody","paymentBlock","creditImgSrc"],"searchable":false,"uid":false},{"type":"string","label":"Alt Text","name":"altTxt","namespace":["consulting","afterBody","paymentBlock","altTxt"],"searchable":true,"uid":false}],"namespace":["consulting","afterBody","paymentBlock"]},{"name":"PresenterBlock","label":"Presenters","ui":{"previewSrc":"/images/thumbs/tina/presenters.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["consulting","afterBody","PresenterBlock","header"],"searchable":true,"uid":false},{"type":"object","name":"presenterList","label":"Presenters","list":true,"ui":{},"fields":[{"type":"reference","name":"presenter","label":"Presenters","collections":["presenter"],"namespace":["videoProduction","_body","PresenterBlock","presenterList","presenter"]}],"namespace":["consulting","afterBody","PresenterBlock","presenterList"],"searchable":true,"uid":false},{"type":"object","label":"Other Events","name":"otherEvent","fields":[{"type":"string","label":"Title","name":"title","namespace":["videoProduction","_body","PresenterBlock","otherEvent","title"]},{"type":"string","label":"URL","name":"eventURL","namespace":["videoProduction","_body","PresenterBlock","otherEvent","eventURL"]}],"namespace":["consulting","afterBody","PresenterBlock","otherEvent"],"searchable":true,"uid":false}],"namespace":["consulting","afterBody","PresenterBlock"]},{"label":"Recurring Event","name":"RecurringEvent","ui":{"previewSrc":"/images/thumbs/tina/recurring-event.jpg"},"fields":[{"type":"string","label":"Apply Link Redirect","name":"applyLinkRedirect","namespace":["consulting","afterBody","RecurringEvent","applyLinkRedirect"],"searchable":true,"uid":false},{"type":"string","label":"Day","name":"day","options":[{"label":"Monday","value":"monday"},{"label":"Tuesday","value":"tuesday"},{"label":"Wednesday","value":"wednesday"},{"label":"Thursday","value":"thursday"},{"label":"Friday","value":"friday"},{"label":"Saturday","value":"saturday"},{"label":"Sunday","value":"sunday"}],"required":true,"namespace":["consulting","afterBody","RecurringEvent","day"],"searchable":true,"uid":false}],"namespace":["consulting","afterBody","RecurringEvent"]},{"name":"SectionHeader","label":"Section Header","ui":{"previewSrc":"/images/thumbs/tina/section-header.jpg"},"fields":[{"type":"string","label":"Header Text","name":"headerText","namespace":["consulting","afterBody","SectionHeader","headerText"],"searchable":true,"uid":false}],"namespace":["consulting","afterBody","SectionHeader"]},{"name":"ServiceCards","label":"Service Cards","ui":{"previewSrc":"/images/thumbs/tina/services-cards.jpg"},"fields":[{"type":"string","label":"Big Cards Label","name":"bigCardsLabel","namespace":["consulting","afterBody","ServiceCards","bigCardsLabel"],"searchable":true,"uid":false},{"label":"Big Cards","name":"bigCards","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["videoProduction","_body","ServiceCards","bigCards","title"]},{"type":"string","label":"Description","component":"textarea","name":"description","namespace":["videoProduction","_body","ServiceCards","bigCards","description"]},{"type":"string","label":"URL","name":"link","namespace":["videoProduction","_body","ServiceCards","bigCards","link"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Red","value":"red"},{"label":"Light Gray","value":"lightgray"},{"label":"Medium Gray","value":"mediumgray"},{"label":"Dark Gray","value":"darkgray"}],"namespace":["videoProduction","_body","ServiceCards","bigCards","color"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","ServiceCards","bigCards","imgSrc","uploadDir"]},"namespace":["videoProduction","_body","ServiceCards","bigCards","imgSrc"]}],"namespace":["consulting","afterBody","ServiceCards","bigCards"],"searchable":true,"uid":false},{"type":"string","label":"Small Cards Label","name":"smallCardsLabel","namespace":["consulting","afterBody","ServiceCards","smallCardsLabel"],"searchable":true,"uid":false},{"label":"Small Cards","name":"smallCards","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["videoProduction","_body","ServiceCards","smallCards","title"]},{"type":"string","label":"URL","name":"link","namespace":["videoProduction","_body","ServiceCards","smallCards","link"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Red","value":"red"},{"label":"Light Gray","value":"lightgray"},{"label":"Medium Gray","value":"mediumgray"},{"label":"Dark Gray","value":"darkgray"}],"namespace":["videoProduction","_body","ServiceCards","smallCards","color"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","ServiceCards","smallCards","imgSrc","uploadDir"]},"namespace":["videoProduction","_body","ServiceCards","smallCards","imgSrc"]},{"type":"boolean","label":"External Page","description":"Select this if the link is not part of the website. This includes SSW.Rules, and SSW.People links","name":"isExternal","namespace":["videoProduction","_body","ServiceCards","smallCards","isExternal"]}],"namespace":["consulting","afterBody","ServiceCards","smallCards"],"searchable":true,"uid":false},{"label":"Links","name":"links","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["videoProduction","_body","ServiceCards","links","label"]},{"type":"string","label":"URL","name":"link","namespace":["videoProduction","_body","ServiceCards","links","link"]}],"namespace":["consulting","afterBody","ServiceCards","links"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["consulting","afterBody","ServiceCards","backgroundColor"],"searchable":true,"uid":false}],"namespace":["consulting","afterBody","ServiceCards"]},{"label":"Table Layout","name":"TableLayout","ui":{"previewSrc":"/images/thumbs/tina/table-layout.jpg"},"fields":[{"label":"Table Style","name":"tableStyle","type":"string","options":["none","basicBorder","styled","benefits"],"namespace":["consulting","afterBody","TableLayout","tableStyle"],"searchable":true,"uid":false},{"label":"First column bolded + left aligned","name":"firstColBold","type":"boolean","required":false,"namespace":["consulting","afterBody","TableLayout","firstColBold"],"searchable":true,"uid":false},{"type":"string","label":"Table Headers","name":"headers","list":true,"namespace":["consulting","afterBody","TableLayout","headers"],"searchable":true,"uid":false},{"type":"object","label":"Rows","name":"rows","list":true,"fields":[{"type":"object","label":"Cells","name":"cells","list":true,"fields":[{"type":"string","label":"Value","name":"cellValue","required":true,"component":{"namespace":["page","beforeBody","TableLayout","rows","cells","cellValue",""]},"namespace":["videoProduction","afterBody","TableLayout","rows","cells","cellValue"]}],"ui":{},"namespace":["videoProduction","_body","TableLayout","rows","cells"]},{"type":"boolean","label":"Is Heading","name":"isHeader","required":false,"namespace":["videoProduction","_body","TableLayout","rows","isHeader"]}],"ui":{},"namespace":["consulting","afterBody","TableLayout","rows"],"searchable":true,"uid":false}],"namespace":["consulting","afterBody","TableLayout"]},{"name":"TestimonialsList","label":"Testimonials List","ui":{"previewSrc":"/images/thumbs/tina/testimonials.jpg"},"fields":[{"type":"object","label":"Exclude Categories","name":"excludedCategories","ui":{},"list":true,"fields":[{"type":"reference","label":"Category Name","name":"categoryName","collections":["testimonialCategories"],"namespace":["videoProduction","_body","TestimonialsList","excludedCategories","categoryName"]}],"namespace":["consulting","afterBody","TestimonialsList","excludedCategories"],"searchable":true,"uid":false}],"namespace":["consulting","afterBody","TestimonialsList"]},{"label":"Training Information","name":"TrainingInformation","ui":{"previewSrc":"/images/thumbs/tina/training-information.jpg"},"fields":[{"type":"object","label":"Training Information Items","name":"trainingInformationItems","list":true,"fields":[{"type":"string","label":"Header","name":"header","namespace":["videoProduction","_body","TrainingInformation","trainingInformationItems","header"]},{"type":"rich-text","label":"Body","name":"body","templates":[{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["employment","booking","bookingBody","TrainingInformation","trainingInformationItems","body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["employment","booking","bookingBody","TrainingInformation","trainingInformationItems","body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["employment","booking","bookingBody","TrainingInformation","trainingInformationItems","body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["employment","booking","bookingBody","TrainingInformation","trainingInformationItems","body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["employment","booking","bookingBody","TrainingInformation","trainingInformationItems","body","VerticalListItem","afterBody"]}],"namespace":["videoProduction","afterBody","TrainingInformation","trainingInformationItems","body","VerticalListItem"]},{"label":"Recurring Event","name":"RecurringEvent","ui":{"previewSrc":"/images/thumbs/tina/recurring-event.jpg"},"fields":[{"type":"string","label":"Apply Link Redirect","name":"applyLinkRedirect","namespace":["employment","booking","bookingBody","TrainingInformation","trainingInformationItems","body","RecurringEvent","applyLinkRedirect"]},{"type":"string","label":"Day","name":"day","options":[{"label":"Monday","value":"monday"},{"label":"Tuesday","value":"tuesday"},{"label":"Wednesday","value":"wednesday"},{"label":"Thursday","value":"thursday"},{"label":"Friday","value":"friday"},{"label":"Saturday","value":"saturday"},{"label":"Sunday","value":"sunday"}],"required":true,"namespace":["employment","booking","bookingBody","TrainingInformation","trainingInformationItems","body","RecurringEvent","day"]}],"namespace":["videoProduction","afterBody","TrainingInformation","trainingInformationItems","body","RecurringEvent"]}],"namespace":["videoProduction","_body","TrainingInformation","trainingInformationItems","body"]}],"namespace":["consulting","afterBody","TrainingInformation","trainingInformationItems"],"searchable":true,"uid":false}],"namespace":["consulting","afterBody","TrainingInformation"]},{"label":"Training Learning Outcomes","name":"TrainingLearningOutcome","ui":{"previewSrc":"/images/thumbs/tina/training-learning-outcomes.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["consulting","afterBody","TrainingLearningOutcome","header"],"searchable":true,"uid":false},{"type":"object","label":"List Items","name":"listItems","list":true,"fields":[{"type":"string","label":"Title","name":"title","namespace":["videoProduction","_body","TrainingLearningOutcome","listItems","title"]},{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["videoProduction","_body","TrainingLearningOutcome","listItems","content"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","TrainingLearningOutcome","listItems","icon","uploadDir"]},"namespace":["videoProduction","_body","TrainingLearningOutcome","listItems","icon"]}],"namespace":["consulting","afterBody","TrainingLearningOutcome","listItems"],"searchable":true,"uid":false}],"namespace":["consulting","afterBody","TrainingLearningOutcome"]},{"label":"Tweet Embed","name":"TweetEmbed","ui":{"previewSrc":"/images/thumbs/tina/tweet-embed.jpg"},"fields":[{"type":"string","name":"url","label":"Tweet URL","required":true,"namespace":["consulting","afterBody","TweetEmbed","url"],"searchable":true,"uid":false}],"namespace":["consulting","afterBody","TweetEmbed"]},{"name":"UpcomingEvents","label":"Upcoming Events","ui":{"previewSrc":"/images/thumbs/tina/upcoming-events.jpg","defaultItem":{"title":"Upcoming Events","numberOfEvents":30}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["consulting","afterBody","UpcomingEvents","title"],"searchable":true,"uid":false},{"type":"number","label":"Number of Events","name":"numberOfEvents","namespace":["consulting","afterBody","UpcomingEvents","numberOfEvents"],"searchable":true,"uid":false}],"namespace":["consulting","afterBody","UpcomingEvents"]},{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["consulting","afterBody","UtilityButton","buttonText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"link","required":false,"namespace":["consulting","afterBody","UtilityButton","link"],"searchable":true,"uid":false},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["consulting","afterBody","UtilityButton","size"],"searchable":true,"uid":false},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["consulting","afterBody","UtilityButton","btnIcon"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["consulting","afterBody","UtilityButton","animated"],"searchable":true,"uid":false},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["consulting","afterBody","UtilityButton","uncentered"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["consulting","afterBody","UtilityButton","removeTopMargin"],"searchable":true,"uid":false},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["consulting","afterBody","UtilityButton","openInNewTab"],"searchable":true,"uid":false}],"namespace":["consulting","afterBody","UtilityButton"]},{"name":"VerticalImageLayout","label":"Vertical Image Layout","fields":[{"type":"image","label":"Image","name":"imageSrc","uploadDir":{"namespace":["page","beforeBody","VerticalImageLayout","imageSrc","uploadDir"]},"namespace":["consulting","afterBody","VerticalImageLayout","imageSrc"],"searchable":false,"uid":false},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["consulting","afterBody","VerticalImageLayout","altText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"imageLink","namespace":["consulting","afterBody","VerticalImageLayout","imageLink"],"searchable":true,"uid":false},{"type":"number","label":"Height","name":"height","required":true,"namespace":["consulting","afterBody","VerticalImageLayout","height"],"searchable":true,"uid":false},{"type":"number","label":"Width","name":"width","required":true,"namespace":["consulting","afterBody","VerticalImageLayout","width"],"searchable":true,"uid":false},{"type":"rich-text","label":"Message","name":"message","required":true,"namespace":["consulting","afterBody","VerticalImageLayout","message"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["consulting","afterBody","VerticalImageLayout","sizes"],"searchable":true,"uid":false}],"namespace":["consulting","afterBody","VerticalImageLayout"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["consulting","afterBody","VerticalListItem","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"number","label":"Index number","name":"index","namespace":["consulting","afterBody","VerticalListItem","index"],"searchable":true,"uid":false},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["consulting","afterBody","VerticalListItem","icon"],"searchable":false,"uid":false},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["consulting","afterBody","VerticalListItem","iconScale"],"searchable":true,"uid":false},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["consulting","afterBody","VerticalListItem","afterBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["consulting","afterBody","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["consulting","afterBody","VideoEmbed","url"],"searchable":true,"uid":false},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["consulting","afterBody","VideoEmbed","videoWidth"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["consulting","afterBody","VideoEmbed","removeMargin"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["consulting","afterBody","VideoEmbed","uncentre"],"searchable":true,"uid":false},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["consulting","afterBody","VideoEmbed","overflow"],"searchable":true,"uid":false},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["consulting","afterBody","VideoEmbed","caption"],"searchable":true,"uid":false},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["consulting","afterBody","VideoEmbed","duration"],"searchable":true,"uid":false}],"namespace":["consulting","afterBody","VideoEmbed"]},{"name":"InlineJotForm","label":"In-line JotForm","ui":{"previewSrc":"/images/thumbs/tina/inline-jot-form.jpg"},"fields":[{"type":"string","name":"title","label":"Title","description":"Optional title for JotForm","namespace":["consulting","afterBody","InlineJotForm","title"],"searchable":true,"uid":false},{"type":"string","name":"jotFormId","label":"JotForm ID","required":true,"namespace":["consulting","afterBody","InlineJotForm","jotFormId"],"searchable":true,"uid":false},{"type":"string","name":"additionalClasses","label":"Additional classnames","description":"Optional styling for iframe element only","namespace":["consulting","afterBody","InlineJotForm","additionalClasses"],"searchable":true,"uid":false}],"namespace":["consulting","afterBody","InlineJotForm"]}],"namespace":["consulting","afterBody"],"searchable":true,"uid":false},{"type":"object","label":"Benefits","name":"benefits","fields":[{"type":"object","list":true,"label":"benefit list","name":"benefitList","ui":{},"fields":[{"type":"image","label":"Image URL","name":"image","uploadDir":{"namespace":["consulting","benefits","benefitList","image","uploadDir"]},"namespace":["consulting","benefits","benefitList","image"],"searchable":false,"uid":false},{"type":"string","label":"Title","name":"title","namespace":["consulting","benefits","benefitList","title"],"searchable":true,"uid":false},{"type":"rich-text","label":"Description","name":"description","namespace":["consulting","benefits","benefitList","description"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","required":false,"label":"linkName","name":"linkName","namespace":["consulting","benefits","benefitList","linkName"],"searchable":true,"uid":false},{"type":"string","required":false,"label":"linkURL","name":"linkURL","namespace":["consulting","benefits","benefitList","linkURL"],"searchable":true,"uid":false}],"namespace":["consulting","benefits","benefitList"],"searchable":true,"uid":false},{"type":"object","label":"Rule","name":"rule","list":true,"ui":{},"fields":[{"type":"string","label":"Name","name":"name","namespace":["consulting","benefits","rule","name"],"searchable":true,"uid":false},{"type":"string","label":"URL","name":"url","namespace":["consulting","benefits","rule","url"],"searchable":true,"uid":false}],"namespace":["consulting","benefits","rule"],"searchable":true,"uid":false}],"namespace":["consulting","benefits"],"searchable":true,"uid":false},{"type":"object","label":"Technologies","name":"technologies","fields":[{"type":"string","label":"Header","name":"header","namespace":["consulting","technologies","header"],"searchable":true,"uid":false},{"type":"string","label":"Subheading","name":"subheading","namespace":["consulting","technologies","subheading"],"searchable":true,"uid":false},{"type":"object","label":"Technology Cards","name":"technologyCards","ui":{},"list":true,"fields":[{"type":"reference","label":"Technology Card","name":"technologyCard","collections":["technologies"],"namespace":["consulting","technologies","technologyCards","technologyCard"],"searchable":true,"uid":false}],"namespace":["consulting","technologies","technologyCards"],"searchable":true,"uid":false}],"namespace":["consulting","technologies"],"searchable":true,"uid":false},{"type":"object","label":"Media cards","name":"medias","fields":[{"type":"string","label":"Header","name":"header","namespace":["consulting","medias","header"],"searchable":true,"uid":false},{"type":"object","label":"Media Cards","name":"mediaCards","list":true,"fields":[{"type":"string","label":"Type","name":"type","options":[{"value":"video","label":"Video"},{"value":"blog","label":"Blog"}],"namespace":["consulting","medias","mediaCards","type"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","namespace":["consulting","medias","mediaCards","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"ui":{},"namespace":["consulting","medias","mediaCards"],"searchable":true,"uid":false}],"namespace":["consulting","medias"],"searchable":true,"uid":false}],"namespace":["consulting"]},{"label":"Consulting - Video Production - Pages","name":"videoProduction","format":"mdx","path":"content/video-production","ui":{},"fields":[{"type":"string","name":"tip","label":"Tip","ui":{},"namespace":["videoProduction","tip"],"searchable":true,"uid":false},{"type":"object","label":"SEO Values","name":"seo","fields":[{"type":"string","label":"Title (70 characters)","name":"title","ui":{},"namespace":["videoProduction","seo","title"],"searchable":true,"uid":false},{"type":"string","label":"Description (150 characters)","name":"description","component":"textarea","ui":{},"namespace":["videoProduction","seo","description"],"searchable":true,"uid":false},{"type":"string","label":"Canonical URL","name":"canonical","namespace":["videoProduction","seo","canonical"],"searchable":true,"uid":false},{"type":"boolean","name":"showBreadcrumb","label":"Show Breadcrumb","namespace":["videoProduction","seo","showBreadcrumb"],"searchable":true,"uid":false},{"label":"Images","name":"images","list":true,"type":"object","ui":{"defaultItem":{"url":"/images/ssw-default-og.jpg","width":1200,"height":630,"alt":"SSW Consulting - Enterprise Software Development"}},"fields":[{"type":"image","label":"Image Url","name":"url","require":true,"namespace":["employment","seo","images","url"],"searchable":false,"uid":false},{"type":"number","label":"Width (px)","name":"width","namespace":["employment","seo","images","width"],"searchable":true,"uid":false},{"type":"number","label":"Height (px)","name":"height","namespace":["employment","seo","images","height"],"searchable":true,"uid":false},{"type":"string","label":"Image Alt Text","name":"alt","namespace":["employment","seo","images","alt"],"searchable":true,"uid":false}],"namespace":["videoProduction","seo","images"],"searchable":true,"uid":false}],"namespace":["videoProduction","seo"],"searchable":true,"uid":false},{"type":"object","label":"Booking","name":"booking","fields":[{"type":"string","label":"Title","name":"title","namespace":["videoProduction","booking","title"],"searchable":true,"uid":false},{"type":"string","label":"Subtitle","name":"subTitle","namespace":["videoProduction","booking","subTitle"],"searchable":true,"uid":false},{"type":"string","label":"Button Text","name":"buttonText","namespace":["videoProduction","booking","buttonText"],"searchable":true,"uid":false},{"type":"image","label":"Video Background","name":"videoBackground","uploadDir":{"namespace":["videoProduction","booking","videoBackground","uploadDir"]},"namespace":["videoProduction","booking","videoBackground"],"searchable":false,"uid":false}],"namespace":["videoProduction","booking"],"searchable":true,"uid":false},{"type":"object","label":"Solution","name":"solution","fields":[{"type":"string","label":"Project","name":"project","namespace":["videoProduction","solution","project"],"searchable":true,"uid":false}],"namespace":["videoProduction","solution"],"searchable":true,"uid":false},{"type":"string","label":"Call to Action","description":"Technology title inserted via {{TITLE}}. E.g. 'Talk to us about your {{TITLE}} project'","name":"callToAction","required":false,"namespace":["videoProduction","callToAction"],"searchable":true,"uid":false},{"type":"rich-text","label":"Body","name":"_body","templates":[{"name":"AboutUs","label":"About Us","ui":{"previewSrc":"/images/thumbs/tina/about-us.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["videoProduction","_body","AboutUs","backgroundColor"],"searchable":true,"uid":false},{"type":"boolean","label":"Show Map","name":"showMap","required":false,"namespace":["videoProduction","_body","AboutUs","showMap"],"searchable":true,"uid":false}],"namespace":["videoProduction","_body","AboutUs"]},{"label":"Agenda","name":"Agenda","ui":{"previewSrc":"/images/thumbs/tina/agenda.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["videoProduction","_body","Agenda","header"],"searchable":true,"uid":false},{"type":"string","label":"Header Color","name":"textColor","options":[{"label":"Red","value":"red"},{"label":"Gray","value":"gray"},{"label":"Default","value":"default"}],"namespace":["videoProduction","_body","Agenda","textColor"],"searchable":true,"uid":false},{"type":"object","label":"Agenda Items","name":"agendaItemList","ui":{},"list":true,"fields":[{"type":"string","label":"Placeholder Text","name":"placeholder","namespace":["videoProduction","afterBody","Agenda","agendaItemList","placeholder"]},{"type":"rich-text","label":"Body","name":"body","templates":[{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["employment","_body","Agenda","agendaItemList","body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["employment","_body","Agenda","agendaItemList","body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["employment","_body","Agenda","agendaItemList","body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["employment","_body","Agenda","agendaItemList","body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["employment","_body","Agenda","agendaItemList","body","VerticalListItem","afterBody"]}],"namespace":["employment","booking","bookingBody","Agenda","agendaItemList","body","VerticalListItem"]}],"namespace":["videoProduction","afterBody","Agenda","agendaItemList","body"]}],"namespace":["videoProduction","_body","Agenda","agendaItemList"],"searchable":true,"uid":false}],"namespace":["videoProduction","_body","Agenda"]},{"label":"Agreement Form","name":"AgreementForm","ui":{"previewSrc":"/images/thumbs/tina/agreement-form.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["videoProduction","_body","AgreementForm","backgroundColor"],"searchable":true,"uid":false},{"type":"object","label":"Form fields","name":"fields","list":true,"fields":[{"type":"string","label":"ID","name":"id","required":true,"namespace":["videoProduction","afterBody","AgreementForm","fields","id"]},{"type":"string","label":"Label","name":"label","required":true,"namespace":["videoProduction","afterBody","AgreementForm","fields","label"]},{"type":"string","label":"Placeholder","name":"placeholder","namespace":["videoProduction","afterBody","AgreementForm","fields","placeholder"]},{"type":"boolean","label":"Resizeable","name":"resizeable","required":true,"namespace":["videoProduction","afterBody","AgreementForm","fields","resizeable"]}],"namespace":["videoProduction","_body","AgreementForm","fields"],"searchable":true,"uid":false}],"namespace":["videoProduction","_body","AgreementForm"]},{"label":"Interest Form","name":"InterestForm","ui":{"previewSrc":"/images/thumbs/tina/interest-form.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["videoProduction","_body","InterestForm","buttonText"],"searchable":true,"uid":false}],"namespace":["videoProduction","_body","InterestForm"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["videoProduction","_body","BookingButton","buttonText"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","namespace":["videoProduction","_body","BookingButton","animated"],"searchable":true,"uid":false},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["videoProduction","_body","BookingButton","buttonSubtitle"],"searchable":true,"uid":false}],"namespace":["videoProduction","_body","BookingButton"]},{"name":"BuiltOnAzure","label":"Built on Azure","ui":{"previewSrc":"/images/thumbs/tina/built-on-azure.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["videoProduction","_body","BuiltOnAzure","backgroundColor"],"searchable":true,"uid":false}],"namespace":["videoProduction","_body","BuiltOnAzure"]},{"name":"Carousel","label":"Carousel","ui":{"previewSrc":"/images/thumbs/tina/carousel.jpg"},"fields":[{"label":"Items","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Item description","link":"/","openIn":"sameWindow"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["videoProduction","afterBody","Carousel","items","label"]},{"type":"string","label":"URL","name":"link","description":"If link contains ssw.com.au, you can skip the full URL and just use the path. e.g. /services","namespace":["videoProduction","afterBody","Carousel","items","link"]},{"type":"string","label":"Open in","name":"openIn","description":"If it is external link, please select 'New window' option.","options":[{"label":"Same window","value":"sameWindow"},{"label":"Modal","value":"modal"},{"label":"New window","value":"newWindow"}],"namespace":["videoProduction","afterBody","Carousel","items","openIn"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","Carousel","items","imgSrc","uploadDir"]},"namespace":["videoProduction","afterBody","Carousel","items","imgSrc"]}],"namespace":["videoProduction","_body","Carousel","items"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["videoProduction","_body","Carousel","backgroundColor"],"searchable":true,"uid":false},{"type":"number","label":"Delay (Seconds)","name":"delay","required":true,"namespace":["videoProduction","_body","Carousel","delay"],"searchable":true,"uid":false},{"type":"boolean","label":"Show on mobile devices","name":"showOnMobileDevices","namespace":["videoProduction","_body","Carousel","showOnMobileDevices"],"searchable":true,"uid":false}],"namespace":["videoProduction","_body","Carousel"]},{"name":"Citation","label":"Citation","fields":[{"type":"string","label":"author","name":"author","namespace":["videoProduction","_body","Citation","author"],"searchable":true,"uid":false},{"type":"string","label":"article","name":"article","required":true,"namespace":["videoProduction","_body","Citation","article"],"searchable":true,"uid":false}],"namespace":["videoProduction","_body","Citation"]},{"label":"Client List","name":"ClientList","ui":{"previewSrc":"/images/thumbs/tina/clients-list.jpg"},"fields":[{"type":"object","name":"categories","label":"Categories","list":true,"fields":[{"type":"reference","name":"category","label":"Category","collections":["clientCategories"],"namespace":["videoProduction","afterBody","ClientList","categories","category"]}],"ui":{},"namespace":["videoProduction","_body","ClientList","categories"],"searchable":true,"uid":false},{"type":"object","name":"clients","label":"Clients list","list":true,"ui":{"previewSrc":"/images/thumbs/tina/clients-list.jpg"},"fields":[{"type":"string","name":"name","label":"Name","namespace":["videoProduction","afterBody","ClientList","clients","name"]},{"type":"image","name":"logo","label":"Logo","namespace":["videoProduction","afterBody","ClientList","clients","logo"]},{"type":"string","name":"logoUrl","label":"Logo URL","namespace":["videoProduction","afterBody","ClientList","clients","logoUrl"]},{"type":"rich-text","name":"content","label":"Content","templates":[{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["employment","_body","ClientList","clients","content","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["employment","_body","ClientList","clients","content","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["employment","_body","ClientList","clients","content","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["employment","_body","ClientList","clients","content","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["employment","_body","ClientList","clients","content","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["employment","_body","ClientList","clients","content","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["employment","_body","ClientList","clients","content","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["employment","_body","ClientList","clients","content","UtilityButton","openInNewTab"]}],"namespace":["employment","booking","bookingBody","ClientList","clients","content","UtilityButton"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["employment","_body","ClientList","clients","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["employment","_body","ClientList","clients","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["employment","_body","ClientList","clients","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["employment","_body","ClientList","clients","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["employment","_body","ClientList","clients","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["employment","_body","ClientList","clients","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["employment","_body","ClientList","clients","content","VideoEmbed","duration"]}],"namespace":["employment","booking","bookingBody","ClientList","clients","content","VideoEmbed"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["employment","_body","ClientList","clients","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","_body","ClientList","clients","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["employment","_body","ClientList","clients","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","_body","ClientList","clients","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","_body","ClientList","clients","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["employment","_body","ClientList","clients","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["employment","_body","ClientList","clients","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["employment","_body","ClientList","clients","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["employment","_body","ClientList","clients","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","_body","ClientList","clients","content","CustomImage","sizes"]}],"namespace":["employment","booking","bookingBody","ClientList","clients","content","CustomImage"]},{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["employment","_body","ClientList","clients","content","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["employment","_body","ClientList","clients","content","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["employment","afterBody","ClientList","clients","content","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","afterBody","ClientList","clients","content","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["employment","afterBody","ClientList","clients","content","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","afterBody","ClientList","clients","content","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","afterBody","ClientList","clients","content","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["employment","afterBody","ClientList","clients","content","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["employment","afterBody","ClientList","clients","content","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["employment","afterBody","ClientList","clients","content","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["employment","afterBody","ClientList","clients","content","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","afterBody","ClientList","clients","content","ContentCard","content","CustomImage","sizes"]}],"namespace":["employment","benefitsBody","ClientList","clients","content","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["employment","afterBody","ClientList","clients","content","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["employment","afterBody","ClientList","clients","content","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["employment","afterBody","ClientList","clients","content","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["employment","afterBody","ClientList","clients","content","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["employment","afterBody","ClientList","clients","content","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["employment","benefitsBody","ClientList","clients","content","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["employment","afterBody","ClientList","clients","content","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["employment","afterBody","ClientList","clients","content","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["employment","afterBody","ClientList","clients","content","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["employment","afterBody","ClientList","clients","content","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["employment","afterBody","ClientList","clients","content","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["employment","afterBody","ClientList","clients","content","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["employment","afterBody","ClientList","clients","content","ContentCard","content","VideoEmbed","duration"]}],"namespace":["employment","benefitsBody","ClientList","clients","content","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","afterBody","ClientList","clients","content","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["employment","afterBody","ClientList","clients","content","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["employment","opportunitiesBody","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["employment","opportunitiesBody","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["employment","opportunitiesBody","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["employment","opportunitiesBody","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["employment","opportunitiesBody","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["employment","afterBody","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["employment","benefitsBody","ClientList","clients","content","ContentCard","content","ColorBlock"]}],"namespace":["employment","_body","ClientList","clients","content","ContentCard","content"]}],"namespace":["employment","booking","bookingBody","ClientList","clients","content","ContentCard"]}],"namespace":["videoProduction","afterBody","ClientList","clients","content"]},{"type":"string","name":"caseStudyUrl","label":"Case study URL","namespace":["videoProduction","afterBody","ClientList","clients","caseStudyUrl"]},{"type":"object","name":"categories","label":"Categories","list":true,"ui":{},"fields":[{"type":"reference","name":"category","label":"Category","collections":["clientCategories"],"namespace":["employment","booking","bookingBody","ClientList","clients","categories","category"]}],"namespace":["videoProduction","afterBody","ClientList","clients","categories"]}],"namespace":["videoProduction","_body","ClientList","clients"],"searchable":true,"uid":false}],"namespace":["videoProduction","_body","ClientList"]},{"name":"ClientLogos","label":"Client Logos","ui":{"previewSrc":"/images/thumbs/tina/client-logos.jpg"},"fields":[{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["videoProduction","_body","ClientLogos","altText"],"searchable":true,"uid":false}],"namespace":["videoProduction","_body","ClientLogos"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["videoProduction","_body","ColorBlock","title"],"searchable":true,"uid":false},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["videoProduction","_body","ColorBlock","subTitle"],"searchable":true,"uid":false},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["videoProduction","afterBody","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["videoProduction","afterBody","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["videoProduction","afterBody","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["videoProduction","afterBody","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["videoProduction","afterBody","ColorBlock","colorRow","caption"]}],"namespace":["videoProduction","_body","ColorBlock","colorRow"],"searchable":true,"uid":false}],"namespace":["videoProduction","_body","ColorBlock"]},{"name":"ColorPalette","label":"Color Palette","ui":{"previewSrc":"/images/thumbs/tina/color-palette.jpg"},"fields":[{"type":"string","label":"Name","name":"name","namespace":["videoProduction","_body","ColorPalette","name"],"searchable":true,"uid":false}],"namespace":["videoProduction","_body","ColorPalette"]},{"name":"Content","label":"Content","ui":{"previewSrc":"/images/thumbs/tina/content.jpg","defaultItem":{"body":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["videoProduction","_body","Content","title"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["employment","booking","bookingBody","Content","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","booking","bookingBody","Content","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["employment","booking","bookingBody","Content","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","booking","bookingBody","Content","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","booking","bookingBody","Content","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["employment","booking","bookingBody","Content","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["employment","booking","bookingBody","Content","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["employment","booking","bookingBody","Content","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["employment","booking","bookingBody","Content","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","booking","bookingBody","Content","content","CustomImage","sizes"]}],"namespace":["videoProduction","afterBody","Content","content","CustomImage"]},{"name":"ClientLogos","label":"Client Logos","ui":{"previewSrc":"/images/thumbs/tina/client-logos.jpg"},"fields":[{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","booking","bookingBody","Content","content","ClientLogos","altText"]}],"namespace":["videoProduction","afterBody","Content","content","ClientLogos"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["employment","booking","bookingBody","Content","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["employment","booking","bookingBody","Content","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["employment","booking","bookingBody","Content","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["employment","booking","bookingBody","Content","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["employment","booking","bookingBody","Content","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["employment","booking","bookingBody","Content","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["employment","booking","bookingBody","Content","content","VideoEmbed","duration"]}],"namespace":["videoProduction","afterBody","Content","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","booking","bookingBody","Content","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["employment","booking","bookingBody","Content","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["employment","_body","Content","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["employment","_body","Content","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["employment","_body","Content","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["employment","_body","Content","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["employment","_body","Content","content","ColorBlock","colorRow","caption"]}],"namespace":["employment","booking","bookingBody","Content","content","ColorBlock","colorRow"]}],"namespace":["videoProduction","afterBody","Content","content","ColorBlock"]}],"namespace":["videoProduction","_body","Content","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Container Padding","name":"paddingClass","options":["Mobile: No Padding","Mobile: No Top and Horizontal Padding"],"namespace":["videoProduction","_body","Content","paddingClass"],"searchable":true,"uid":false},{"type":"string","label":"Text size","name":"size","options":[{"label":"small","value":"sm"},{"label":"normal","value":"base"},{"label":"large","value":"lg"},{"label":"extra large","value":"xl"},{"label":"2x large","value":"2xl"}],"namespace":["videoProduction","_body","Content","size"],"searchable":true,"uid":false},{"type":"string","label":"Align","name":"align","options":[{"label":"Left","value":"left"},{"label":"Center","value":"center"},{"label":"Right","value":"right"}],"namespace":["videoProduction","_body","Content","align"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["videoProduction","_body","Content","backgroundColor"],"searchable":true,"uid":false}],"namespace":["videoProduction","_body","Content"]},{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["videoProduction","_body","ContentCard","prose"],"searchable":true,"uid":false},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["videoProduction","_body","ContentCard","centerAlignedText"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["employment","booking","bookingBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","booking","bookingBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["employment","booking","bookingBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","booking","bookingBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","booking","bookingBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["employment","booking","bookingBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["employment","booking","bookingBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["employment","booking","bookingBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["employment","booking","bookingBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","booking","bookingBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["videoProduction","afterBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["employment","booking","bookingBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["employment","booking","bookingBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["employment","booking","bookingBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["employment","booking","bookingBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["employment","booking","bookingBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["videoProduction","afterBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["employment","booking","bookingBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["employment","booking","bookingBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["employment","booking","bookingBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["employment","booking","bookingBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["employment","booking","bookingBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["employment","booking","bookingBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["employment","booking","bookingBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["videoProduction","afterBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","booking","bookingBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["employment","booking","bookingBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["employment","_body","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["employment","_body","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["employment","_body","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["employment","_body","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["employment","_body","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["employment","booking","bookingBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["videoProduction","afterBody","ContentCard","content","ColorBlock"]}],"namespace":["videoProduction","_body","ContentCard","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["videoProduction","_body","ContentCard"]},{"name":"CustomDownloadButton","label":"Custom Download Button","ui":{"previewSrc":"/images/thumbs/tina/custom-download-button.jpg"},"fields":[{"type":"string","label":"Text","name":"btnText","namespace":["videoProduction","_body","CustomDownloadButton","btnText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"btnLink","namespace":["videoProduction","_body","CustomDownloadButton","btnLink"],"searchable":true,"uid":false}],"namespace":["videoProduction","_body","CustomDownloadButton"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["videoProduction","_body","CustomImage","src"],"searchable":false,"uid":false},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["videoProduction","_body","CustomImage","altText"],"searchable":true,"uid":false},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["videoProduction","_body","CustomImage","alignment"],"searchable":true,"uid":false},{"type":"number","label":"Height","name":"height","required":true,"namespace":["videoProduction","_body","CustomImage","height"],"searchable":true,"uid":false},{"type":"number","label":"Width","name":"width","required":true,"namespace":["videoProduction","_body","CustomImage","width"],"searchable":true,"uid":false},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["videoProduction","_body","CustomImage","link"],"searchable":true,"uid":false},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["videoProduction","_body","CustomImage","customClass"],"searchable":true,"uid":false},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["videoProduction","_body","CustomImage","caption"],"searchable":true,"uid":false},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["videoProduction","_body","CustomImage","captionColor"],"searchable":true,"uid":false},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["videoProduction","_body","CustomImage","sizes"],"searchable":true,"uid":false}],"namespace":["videoProduction","_body","CustomImage"]},{"name":"DomainFromQuery","label":"Domain from query","ui":{"previewSrc":"/images/thumbs/tina/domain-from-query.jpg"},"fields":[{"name":"title","label":"Title","type":"string","description":"This is a H1 heading","namespace":["videoProduction","_body","DomainFromQuery","title"],"searchable":true,"uid":false},{"name":"showDomain","label":"Show domain name","type":"boolean","description":"Query param in URL must have key of 'domain'","namespace":["videoProduction","_body","DomainFromQuery","showDomain"],"searchable":true,"uid":false}],"namespace":["videoProduction","_body","DomainFromQuery"]},{"name":"DownloadBlock","label":"Download Block","ui":{"previewSrc":"/images/thumbs/tina/download-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["videoProduction","_body","DownloadBlock","title"],"searchable":true,"uid":false},{"type":"object","label":"Downloads","name":"downloads","ui":{},"list":true,"fields":[{"type":"string","label":"Header","name":"header","namespace":["videoProduction","afterBody","DownloadBlock","downloads","header"]},{"type":"image","label":"Image","name":"img","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","img","uploadDir"]},"namespace":["videoProduction","afterBody","DownloadBlock","downloads","img"]},{"type":"string","label":"Image Background","name":"imgBackground","options":["black","grey","white","darkgrey","darkgreen"],"namespace":["videoProduction","afterBody","DownloadBlock","downloads","imgBackground"]},{"type":"string","label":"First Link Text","name":"firstLinkText","description":"Defaults to PNG","namespace":["videoProduction","afterBody","DownloadBlock","downloads","firstLinkText"]},{"type":"image","label":"First Link","name":"firstLink","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","firstLink","uploadDir"]},"namespace":["videoProduction","afterBody","DownloadBlock","downloads","firstLink"]},{"type":"string","label":"Second Link Text","name":"secondLinkText","description":"Defaults to PDF","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","secondLinkText","uploadDir"]},"namespace":["videoProduction","afterBody","DownloadBlock","downloads","secondLinkText"]},{"type":"image","label":"Second Link","name":"secondLink","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","secondLink","uploadDir"]},"namespace":["videoProduction","afterBody","DownloadBlock","downloads","secondLink"]}],"namespace":["videoProduction","_body","DownloadBlock","downloads"],"searchable":true,"uid":false},{"type":"boolean","label":"Bottom border","name":"bottomBorder","namespace":["videoProduction","_body","DownloadBlock","bottomBorder"],"searchable":true,"uid":false}],"namespace":["videoProduction","_body","DownloadBlock"]},{"name":"DynamicColumns","label":"Dynamic Column Layout","fields":[{"type":"rich-text","label":"Column text body","name":"colBody","required":true,"namespace":["videoProduction","_body","DynamicColumns","colBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"number","label":"Number of columns","name":"colCount","required":true,"ui":{},"namespace":["videoProduction","_body","DynamicColumns","colCount"],"searchable":true,"uid":false}],"namespace":["videoProduction","_body","DynamicColumns"]},{"name":"EventBooking","label":"Events Booking","ui":{"previewSrc":"/images/thumbs/tina/events-booking.jpg"},"fields":[{"type":"number","label":"Duration (In Days)","name":"eventDurationInDays","required":true,"namespace":["videoProduction","_body","EventBooking","eventDurationInDays"],"searchable":true,"uid":false},{"type":"number","label":"Price","name":"price","required":true,"namespace":["videoProduction","_body","EventBooking","price"],"searchable":true,"uid":false},{"type":"number","label":"Discount Price","name":"discountPrice","namespace":["videoProduction","_body","EventBooking","discountPrice"],"searchable":true,"uid":false},{"type":"string","name":"gstText","label":"Select GST Option","options":["inc GST","+ GST"],"required":true,"namespace":["videoProduction","_body","EventBooking","gstText"],"searchable":true,"uid":false},{"type":"string","label":"Discount Note","name":"discountNote","namespace":["videoProduction","_body","EventBooking","discountNote"],"searchable":true,"uid":false},{"type":"object","label":"Event","name":"eventList","ui":{},"list":true,"fields":[{"type":"string","label":"City","name":"city","namespace":["videoProduction","afterBody","EventBooking","eventList","city"]},{"type":"datetime","label":"Start Date","name":"date","ui":{},"namespace":["videoProduction","afterBody","EventBooking","eventList","date"]},{"type":"string","label":"Booking URL","name":"bookingURL","namespace":["videoProduction","afterBody","EventBooking","eventList","bookingURL"]},{"type":"reference","label":"Location","name":"location","collections":["locations"],"namespace":["videoProduction","afterBody","EventBooking","eventList","location"]}],"namespace":["videoProduction","_body","EventBooking","eventList"],"searchable":true,"uid":false}],"namespace":["videoProduction","_body","EventBooking"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["employment","booking","bookingBody","EventLink","content","Flag","country"]}],"namespace":["videoProduction","afterBody","EventLink","content","Flag"]}],"namespace":["videoProduction","_body","EventLink","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Link","name":"link","namespace":["videoProduction","_body","EventLink","link"],"searchable":true,"uid":false},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["videoProduction","_body","EventLink","eventThumbnail"],"searchable":false,"uid":false},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["videoProduction","_body","EventLink","thumbnailAlt"],"searchable":true,"uid":false}],"namespace":["videoProduction","_body","EventLink"]},{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["videoProduction","_body","Flag","country"],"searchable":true,"uid":false}],"namespace":["videoProduction","_body","Flag"]},{"name":"FixedColumns","label":"Fixed Column Layout (2 columns)","ui":{"previewSrc":"/images/thumbs/tina/fixed-columns.jpg"},"fields":[{"type":"rich-text","label":"Header Section (Optional)","name":"headerSection","namespace":["videoProduction","_body","FixedColumns","headerSection"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"First column text","name":"firstColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["employment","booking","bookingBody","FixedColumns","firstColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["employment","booking","bookingBody","FixedColumns","firstColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["employment","benefitsBody","FixedColumns","firstColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","benefitsBody","FixedColumns","firstColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["employment","benefitsBody","FixedColumns","firstColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","benefitsBody","FixedColumns","firstColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","benefitsBody","FixedColumns","firstColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["employment","benefitsBody","FixedColumns","firstColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["employment","benefitsBody","FixedColumns","firstColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["employment","benefitsBody","FixedColumns","firstColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["employment","benefitsBody","FixedColumns","firstColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","benefitsBody","FixedColumns","firstColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["employment","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["employment","benefitsBody","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["employment","benefitsBody","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["employment","benefitsBody","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["employment","benefitsBody","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["employment","benefitsBody","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["employment","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["employment","benefitsBody","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["employment","benefitsBody","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["employment","benefitsBody","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["employment","benefitsBody","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["employment","benefitsBody","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["employment","benefitsBody","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["employment","benefitsBody","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["employment","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","benefitsBody","FixedColumns","firstColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["employment","benefitsBody","FixedColumns","firstColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["employment","afterBody","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["employment","afterBody","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["employment","afterBody","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["employment","afterBody","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["employment","afterBody","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["employment","benefitsBody","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["employment","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock"]}],"namespace":["employment","booking","bookingBody","FixedColumns","firstColBody","ContentCard","content"]}],"namespace":["videoProduction","afterBody","FixedColumns","firstColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["employment","booking","bookingBody","FixedColumns","firstColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","booking","bookingBody","FixedColumns","firstColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["employment","booking","bookingBody","FixedColumns","firstColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","booking","bookingBody","FixedColumns","firstColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","booking","bookingBody","FixedColumns","firstColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["employment","booking","bookingBody","FixedColumns","firstColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["employment","booking","bookingBody","FixedColumns","firstColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["employment","booking","bookingBody","FixedColumns","firstColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["employment","booking","bookingBody","FixedColumns","firstColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","booking","bookingBody","FixedColumns","firstColBody","CustomImage","sizes"]}],"namespace":["videoProduction","afterBody","FixedColumns","firstColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["employment","benefitsBody","FixedColumns","firstColBody","EventLink","content","Flag","country"]}],"namespace":["employment","_body","FixedColumns","firstColBody","EventLink","content","Flag"]}],"namespace":["employment","booking","bookingBody","FixedColumns","firstColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["employment","booking","bookingBody","FixedColumns","firstColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["employment","booking","bookingBody","FixedColumns","firstColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["employment","booking","bookingBody","FixedColumns","firstColBody","EventLink","thumbnailAlt"]}],"namespace":["videoProduction","afterBody","FixedColumns","firstColBody","EventLink"]}],"namespace":["videoProduction","_body","FixedColumns","firstColBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"Second column text","name":"secondColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["employment","booking","bookingBody","FixedColumns","secondColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["employment","booking","bookingBody","FixedColumns","secondColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["employment","benefitsBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","benefitsBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["employment","benefitsBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","benefitsBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","benefitsBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["employment","benefitsBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["employment","benefitsBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["employment","benefitsBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["employment","benefitsBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","benefitsBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["employment","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["employment","benefitsBody","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["employment","benefitsBody","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["employment","benefitsBody","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["employment","benefitsBody","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["employment","benefitsBody","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["employment","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["employment","benefitsBody","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["employment","benefitsBody","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["employment","benefitsBody","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["employment","benefitsBody","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["employment","benefitsBody","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["employment","benefitsBody","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["employment","benefitsBody","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["employment","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","benefitsBody","FixedColumns","secondColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["employment","benefitsBody","FixedColumns","secondColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["employment","afterBody","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["employment","afterBody","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["employment","afterBody","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["employment","afterBody","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["employment","afterBody","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["employment","benefitsBody","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["employment","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock"]}],"namespace":["employment","booking","bookingBody","FixedColumns","secondColBody","ContentCard","content"]}],"namespace":["videoProduction","afterBody","FixedColumns","secondColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["employment","booking","bookingBody","FixedColumns","secondColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","booking","bookingBody","FixedColumns","secondColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["employment","booking","bookingBody","FixedColumns","secondColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","booking","bookingBody","FixedColumns","secondColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","booking","bookingBody","FixedColumns","secondColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["employment","booking","bookingBody","FixedColumns","secondColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["employment","booking","bookingBody","FixedColumns","secondColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["employment","booking","bookingBody","FixedColumns","secondColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["employment","booking","bookingBody","FixedColumns","secondColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","booking","bookingBody","FixedColumns","secondColBody","CustomImage","sizes"]}],"namespace":["videoProduction","afterBody","FixedColumns","secondColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["employment","benefitsBody","FixedColumns","secondColBody","EventLink","content","Flag","country"]}],"namespace":["employment","_body","FixedColumns","secondColBody","EventLink","content","Flag"]}],"namespace":["employment","booking","bookingBody","FixedColumns","secondColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["employment","booking","bookingBody","FixedColumns","secondColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["employment","booking","bookingBody","FixedColumns","secondColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["employment","booking","bookingBody","FixedColumns","secondColBody","EventLink","thumbnailAlt"]}],"namespace":["videoProduction","afterBody","FixedColumns","secondColBody","EventLink"]}],"namespace":["videoProduction","_body","FixedColumns","secondColBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["videoProduction","_body","FixedColumns"]},{"name":"FixedTabsLayout","label":"Fixed Tabs Layout","ui":{"previewSrc":"/images/thumbs/tina/fixed-tabs-layout.jpg"},"fields":[{"type":"string","name":"firstTab","label":"First Tab","namespace":["videoProduction","_body","FixedTabsLayout","firstTab"],"searchable":true,"uid":false},{"type":"rich-text","name":"firstHeading","label":"First Heading","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["employment","booking","bookingBody","FixedTabsLayout","firstHeading","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["employment","booking","bookingBody","FixedTabsLayout","firstHeading","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["employment","booking","bookingBody","FixedTabsLayout","firstHeading","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["employment","booking","bookingBody","FixedTabsLayout","firstHeading","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["employment","booking","bookingBody","FixedTabsLayout","firstHeading","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["employment","booking","bookingBody","FixedTabsLayout","firstHeading","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["employment","booking","bookingBody","FixedTabsLayout","firstHeading","VideoEmbed","duration"]}],"namespace":["videoProduction","afterBody","FixedTabsLayout","firstHeading","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["employment","booking","bookingBody","FixedTabsLayout","firstHeading","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["employment","booking","bookingBody","FixedTabsLayout","firstHeading","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["employment","booking","bookingBody","FixedTabsLayout","firstHeading","BookingButton","buttonSubtitle"]}],"namespace":["videoProduction","afterBody","FixedTabsLayout","firstHeading","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["employment","booking","bookingBody","FixedTabsLayout","firstHeading","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["employment","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["employment","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["employment","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["employment","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList","skills"]}],"namespace":["employment","booking","bookingBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["employment","_body","FixedTabsLayout","firstHeading","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["employment","_body","FixedTabsLayout","firstHeading","ExpertBlock","link","url"]}],"namespace":["employment","booking","bookingBody","FixedTabsLayout","firstHeading","ExpertBlock","link"]}],"namespace":["videoProduction","afterBody","FixedTabsLayout","firstHeading","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["employment","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["employment","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["employment","benefitsBody","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["employment","benefitsBody","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["employment","benefitsBody","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["employment","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["employment","booking","bookingBody","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["videoProduction","afterBody","FixedTabsLayout","firstHeading","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["employment","booking","bookingBody","FixedTabsLayout","firstHeading","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","booking","bookingBody","FixedTabsLayout","firstHeading","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["employment","booking","bookingBody","FixedTabsLayout","firstHeading","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","booking","bookingBody","FixedTabsLayout","firstHeading","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","booking","bookingBody","FixedTabsLayout","firstHeading","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["employment","booking","bookingBody","FixedTabsLayout","firstHeading","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["employment","booking","bookingBody","FixedTabsLayout","firstHeading","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["employment","booking","bookingBody","FixedTabsLayout","firstHeading","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["employment","booking","bookingBody","FixedTabsLayout","firstHeading","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","booking","bookingBody","FixedTabsLayout","firstHeading","CustomImage","sizes"]}],"namespace":["videoProduction","afterBody","FixedTabsLayout","firstHeading","CustomImage"]}],"namespace":["videoProduction","_body","FixedTabsLayout","firstHeading"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","name":"firstBody","label":"First Body","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["employment","booking","bookingBody","FixedTabsLayout","firstBody","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["employment","booking","bookingBody","FixedTabsLayout","firstBody","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["employment","booking","bookingBody","FixedTabsLayout","firstBody","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["employment","booking","bookingBody","FixedTabsLayout","firstBody","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["employment","booking","bookingBody","FixedTabsLayout","firstBody","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["employment","booking","bookingBody","FixedTabsLayout","firstBody","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["employment","booking","bookingBody","FixedTabsLayout","firstBody","VideoEmbed","duration"]}],"namespace":["videoProduction","afterBody","FixedTabsLayout","firstBody","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["employment","booking","bookingBody","FixedTabsLayout","firstBody","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["employment","booking","bookingBody","FixedTabsLayout","firstBody","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["employment","booking","bookingBody","FixedTabsLayout","firstBody","BookingButton","buttonSubtitle"]}],"namespace":["videoProduction","afterBody","FixedTabsLayout","firstBody","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["employment","booking","bookingBody","FixedTabsLayout","firstBody","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["employment","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["employment","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["employment","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["employment","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList","skills"]}],"namespace":["employment","booking","bookingBody","FixedTabsLayout","firstBody","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["employment","_body","FixedTabsLayout","firstBody","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["employment","_body","FixedTabsLayout","firstBody","ExpertBlock","link","url"]}],"namespace":["employment","booking","bookingBody","FixedTabsLayout","firstBody","ExpertBlock","link"]}],"namespace":["videoProduction","afterBody","FixedTabsLayout","firstBody","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["employment","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["employment","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["employment","benefitsBody","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["employment","benefitsBody","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["employment","benefitsBody","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["employment","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["employment","booking","bookingBody","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["videoProduction","afterBody","FixedTabsLayout","firstBody","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["employment","booking","bookingBody","FixedTabsLayout","firstBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","booking","bookingBody","FixedTabsLayout","firstBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["employment","booking","bookingBody","FixedTabsLayout","firstBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","booking","bookingBody","FixedTabsLayout","firstBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","booking","bookingBody","FixedTabsLayout","firstBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["employment","booking","bookingBody","FixedTabsLayout","firstBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["employment","booking","bookingBody","FixedTabsLayout","firstBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["employment","booking","bookingBody","FixedTabsLayout","firstBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["employment","booking","bookingBody","FixedTabsLayout","firstBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","booking","bookingBody","FixedTabsLayout","firstBody","CustomImage","sizes"]}],"namespace":["videoProduction","afterBody","FixedTabsLayout","firstBody","CustomImage"]}],"namespace":["videoProduction","_body","FixedTabsLayout","firstBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","name":"secondTab","label":"Second Tab","namespace":["videoProduction","_body","FixedTabsLayout","secondTab"],"searchable":true,"uid":false},{"type":"rich-text","name":"secondHeading","label":"Second Heading","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["employment","booking","bookingBody","FixedTabsLayout","secondHeading","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["employment","booking","bookingBody","FixedTabsLayout","secondHeading","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["employment","booking","bookingBody","FixedTabsLayout","secondHeading","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["employment","booking","bookingBody","FixedTabsLayout","secondHeading","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["employment","booking","bookingBody","FixedTabsLayout","secondHeading","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["employment","booking","bookingBody","FixedTabsLayout","secondHeading","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["employment","booking","bookingBody","FixedTabsLayout","secondHeading","VideoEmbed","duration"]}],"namespace":["videoProduction","afterBody","FixedTabsLayout","secondHeading","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["employment","booking","bookingBody","FixedTabsLayout","secondHeading","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["employment","booking","bookingBody","FixedTabsLayout","secondHeading","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["employment","booking","bookingBody","FixedTabsLayout","secondHeading","BookingButton","buttonSubtitle"]}],"namespace":["videoProduction","afterBody","FixedTabsLayout","secondHeading","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["employment","booking","bookingBody","FixedTabsLayout","secondHeading","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["employment","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["employment","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["employment","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["employment","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList","skills"]}],"namespace":["employment","booking","bookingBody","FixedTabsLayout","secondHeading","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["employment","_body","FixedTabsLayout","secondHeading","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["employment","_body","FixedTabsLayout","secondHeading","ExpertBlock","link","url"]}],"namespace":["employment","booking","bookingBody","FixedTabsLayout","secondHeading","ExpertBlock","link"]}],"namespace":["videoProduction","afterBody","FixedTabsLayout","secondHeading","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["employment","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["employment","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["employment","benefitsBody","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["employment","benefitsBody","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["employment","benefitsBody","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["employment","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["employment","booking","bookingBody","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["videoProduction","afterBody","FixedTabsLayout","secondHeading","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["employment","booking","bookingBody","FixedTabsLayout","secondHeading","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","booking","bookingBody","FixedTabsLayout","secondHeading","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["employment","booking","bookingBody","FixedTabsLayout","secondHeading","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","booking","bookingBody","FixedTabsLayout","secondHeading","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","booking","bookingBody","FixedTabsLayout","secondHeading","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["employment","booking","bookingBody","FixedTabsLayout","secondHeading","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["employment","booking","bookingBody","FixedTabsLayout","secondHeading","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["employment","booking","bookingBody","FixedTabsLayout","secondHeading","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["employment","booking","bookingBody","FixedTabsLayout","secondHeading","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","booking","bookingBody","FixedTabsLayout","secondHeading","CustomImage","sizes"]}],"namespace":["videoProduction","afterBody","FixedTabsLayout","secondHeading","CustomImage"]}],"namespace":["videoProduction","_body","FixedTabsLayout","secondHeading"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","name":"secondBody","label":"Second Body","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["employment","booking","bookingBody","FixedTabsLayout","secondBody","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["employment","booking","bookingBody","FixedTabsLayout","secondBody","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["employment","booking","bookingBody","FixedTabsLayout","secondBody","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["employment","booking","bookingBody","FixedTabsLayout","secondBody","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["employment","booking","bookingBody","FixedTabsLayout","secondBody","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["employment","booking","bookingBody","FixedTabsLayout","secondBody","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["employment","booking","bookingBody","FixedTabsLayout","secondBody","VideoEmbed","duration"]}],"namespace":["videoProduction","afterBody","FixedTabsLayout","secondBody","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["employment","booking","bookingBody","FixedTabsLayout","secondBody","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["employment","booking","bookingBody","FixedTabsLayout","secondBody","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["employment","booking","bookingBody","FixedTabsLayout","secondBody","BookingButton","buttonSubtitle"]}],"namespace":["videoProduction","afterBody","FixedTabsLayout","secondBody","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["employment","booking","bookingBody","FixedTabsLayout","secondBody","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["employment","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["employment","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["employment","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["employment","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList","skills"]}],"namespace":["employment","booking","bookingBody","FixedTabsLayout","secondBody","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["employment","_body","FixedTabsLayout","secondBody","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["employment","_body","FixedTabsLayout","secondBody","ExpertBlock","link","url"]}],"namespace":["employment","booking","bookingBody","FixedTabsLayout","secondBody","ExpertBlock","link"]}],"namespace":["videoProduction","afterBody","FixedTabsLayout","secondBody","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["employment","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["employment","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["employment","benefitsBody","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["employment","benefitsBody","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["employment","benefitsBody","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["employment","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["employment","booking","bookingBody","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["videoProduction","afterBody","FixedTabsLayout","secondBody","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["employment","booking","bookingBody","FixedTabsLayout","secondBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","booking","bookingBody","FixedTabsLayout","secondBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["employment","booking","bookingBody","FixedTabsLayout","secondBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","booking","bookingBody","FixedTabsLayout","secondBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","booking","bookingBody","FixedTabsLayout","secondBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["employment","booking","bookingBody","FixedTabsLayout","secondBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["employment","booking","bookingBody","FixedTabsLayout","secondBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["employment","booking","bookingBody","FixedTabsLayout","secondBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["employment","booking","bookingBody","FixedTabsLayout","secondBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","booking","bookingBody","FixedTabsLayout","secondBody","CustomImage","sizes"]}],"namespace":["videoProduction","afterBody","FixedTabsLayout","secondBody","CustomImage"]}],"namespace":["videoProduction","_body","FixedTabsLayout","secondBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["videoProduction","_body","FixedTabsLayout"]},{"label":"Google Maps","name":"GoogleMaps","ui":{"previewSrc":"/images/thumbs/tina/google-maps.jpg"},"fields":[{"type":"string","label":"URL","name":"embedUrl","required":true,"namespace":["videoProduction","_body","GoogleMaps","embedUrl"],"searchable":true,"uid":false},{"type":"string","label":"Width","name":"embedWidth","namespace":["videoProduction","_body","GoogleMaps","embedWidth"],"searchable":true,"uid":false},{"type":"string","label":"Height","name":"embedHeight","namespace":["videoProduction","_body","GoogleMaps","embedHeight"],"searchable":true,"uid":false}],"namespace":["videoProduction","_body","GoogleMaps"]},{"label":"Grid Layout","name":"GridLayout","ui":{"previewSrc":"/images/thumbs/tina/grid-layout.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["videoProduction","_body","GridLayout","title"],"searchable":true,"uid":false},{"type":"object","list":true,"label":"Grid Items","name":"grids","ui":{},"fields":[{"type":"string","label":"Grid Title","name":"gridTitle","namespace":["videoProduction","afterBody","GridLayout","grids","gridTitle"]},{"type":"boolean","label":"Show Grid Title","name":"showGridTitle","namespace":["videoProduction","afterBody","GridLayout","grids","showGridTitle"]},{"type":"boolean","label":"Centered Grid Title","name":"centeredGridTitle","namespace":["videoProduction","afterBody","GridLayout","grids","centeredGridTitle"]},{"type":"boolean","label":"Show Header Divider","name":"showHeaderDivider","namespace":["videoProduction","afterBody","GridLayout","grids","showHeaderDivider"]},{"type":"boolean","label":"Offset Grid Start","name":"offsetGridStart","namespace":["videoProduction","afterBody","GridLayout","grids","offsetGridStart"]},{"type":"object","label":"Blocks","name":"blocks","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","booking","bookingBody","GridLayout","grids","blocks","title"]},{"type":"boolean","label":"Show Title","name":"showTitle","namespace":["employment","booking","bookingBody","GridLayout","grids","blocks","showTitle"]},{"type":"image","label":"Image","name":"image","uploadDir":{"namespace":["page","beforeBody","GridLayout","grids","blocks","image","uploadDir"]},"namespace":["employment","booking","bookingBody","GridLayout","grids","blocks","image"]},{"type":"image","label":"Related Image","name":"relatedImage","uploadDir":{"namespace":["page","beforeBody","GridLayout","grids","blocks","relatedImage","uploadDir"]},"namespace":["employment","booking","bookingBody","GridLayout","grids","blocks","relatedImage"]},{"type":"rich-text","name":"linkContent","label":"Link Content","templates":[{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["employment","benefitsBody","GridLayout","grids","blocks","linkContent","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["employment","benefitsBody","GridLayout","grids","blocks","linkContent","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["employment","benefitsBody","GridLayout","grids","blocks","linkContent","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["employment","benefitsBody","GridLayout","grids","blocks","linkContent","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["employment","benefitsBody","GridLayout","grids","blocks","linkContent","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["employment","benefitsBody","GridLayout","grids","blocks","linkContent","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["employment","benefitsBody","GridLayout","grids","blocks","linkContent","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["employment","benefitsBody","GridLayout","grids","blocks","linkContent","UtilityButton","openInNewTab"]}],"namespace":["employment","_body","GridLayout","grids","blocks","linkContent","UtilityButton"]}],"namespace":["employment","booking","bookingBody","GridLayout","grids","blocks","linkContent"]}],"namespace":["videoProduction","afterBody","GridLayout","grids","blocks"]}],"namespace":["videoProduction","_body","GridLayout","grids"],"searchable":true,"uid":false}],"namespace":["videoProduction","_body","GridLayout"]},{"name":"Hero","label":"Hero","ui":{"previewSrc":"/blocks/hero.png","defaultItem":{"tagline":"Here's some text above the other text","headline":"This Big Text is Totally Awesome","text":"Phasellus scelerisque, libero eu finibus rutrum, risus risus accumsan libero, nec molestie urna dui a leo."}},"fields":[{"type":"string","label":"Tagline","name":"tagline","namespace":["videoProduction","_body","Hero","tagline"],"searchable":true,"uid":false},{"type":"string","label":"Headline","name":"headline","namespace":["videoProduction","_body","Hero","headline"],"searchable":true,"uid":false},{"label":"Text","name":"text","type":"rich-text","namespace":["videoProduction","_body","Hero","text"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"label":"Actions","name":"actions","type":"object","list":true,"ui":{"defaultItem":{"label":"Action Label","type":"button","icon":true,"link":"/"}},"fields":[{"label":"Label","name":"label","type":"string","namespace":["videoProduction","afterBody","Hero","actions","label"]},{"label":"Type","name":"type","type":"string","options":[{"label":"Button","value":"button"},{"label":"Link","value":"link"}],"namespace":["videoProduction","afterBody","Hero","actions","type"]},{"label":"Icon","name":"icon","type":"boolean","namespace":["videoProduction","afterBody","Hero","actions","icon"]},{"label":"Link","name":"link","type":"string","namespace":["videoProduction","afterBody","Hero","actions","link"]}],"namespace":["videoProduction","_body","Hero","actions"],"searchable":true,"uid":false},{"type":"object","label":"Image","name":"image","fields":[{"name":"src","label":"Image Source","type":"image","namespace":["videoProduction","afterBody","Hero","image","src"]},{"name":"alt","label":"Alt Text","type":"string","namespace":["videoProduction","afterBody","Hero","image","alt"]}],"namespace":["videoProduction","_body","Hero","image"],"searchable":true,"uid":false},{"type":"string","label":"Color","name":"color","options":[{"label":"Default","value":"default"},{"label":"Tint","value":"tint"},{"label":"Primary","value":"primary"}],"namespace":["videoProduction","_body","Hero","color"],"searchable":true,"uid":false}],"namespace":["videoProduction","_body","Hero"]},{"name":"HorizontalCard","label":"Horizontal Card","ui":{"previewSrc":"/images/thumbs/tina/horizontal-card.jpg"},"fields":[{"type":"object","label":"Cards","name":"cardList","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["videoProduction","afterBody","HorizontalCard","cardList","title"]},{"type":"rich-text","label":"Content","name":"content","namespace":["videoProduction","afterBody","HorizontalCard","cardList","content"]},{"type":"image","label":"Thumbnail","name":"thumbnail","uploadDir":{"namespace":["page","beforeBody","HorizontalCard","cardList","thumbnail","uploadDir"]},"namespace":["videoProduction","afterBody","HorizontalCard","cardList","thumbnail"]},{"type":"string","label":"Link","name":"link","namespace":["videoProduction","afterBody","HorizontalCard","cardList","link"]}],"namespace":["videoProduction","_body","HorizontalCard","cardList"],"searchable":true,"uid":false},{"type":"object","label":"Button","name":"button","fields":[{"type":"string","label":"Text","name":"text","namespace":["videoProduction","afterBody","HorizontalCard","button","text"]},{"type":"string","label":"Link","name":"link","namespace":["videoProduction","afterBody","HorizontalCard","button","link"]}],"namespace":["videoProduction","_body","HorizontalCard","button"],"searchable":true,"uid":false}],"namespace":["videoProduction","_body","HorizontalCard"]},{"name":"InternalCarousel","label":"Internal Carousel","ui":{"previewSrc":"/images/thumbs/tina/internal-carousel.jpg"},"fields":[{"label":"Images","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Image description"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["videoProduction","afterBody","InternalCarousel","items","label"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","InternalCarousel","items","imgSrc","uploadDir"]},"namespace":["videoProduction","afterBody","InternalCarousel","items","imgSrc"]}],"namespace":["videoProduction","_body","InternalCarousel","items"],"searchable":true,"uid":false},{"type":"string","label":"Header","name":"header","namespace":["videoProduction","_body","InternalCarousel","header"],"searchable":true,"uid":false},{"type":"rich-text","label":"Text","name":"paragraph","isBody":false,"namespace":["videoProduction","_body","InternalCarousel","paragraph"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Website","name":"website","namespace":["videoProduction","_body","InternalCarousel","website"],"searchable":true,"uid":false},{"type":"object","label":"Technologies","name":"technologies","list":true,"ui":{},"fields":[{"type":"string","label":"Name","name":"name","namespace":["videoProduction","afterBody","InternalCarousel","technologies","name"]}],"namespace":["videoProduction","_body","InternalCarousel","technologies"],"searchable":true,"uid":false},{"type":"string","label":"Case Study","name":"caseStudyUrl","namespace":["videoProduction","_body","InternalCarousel","caseStudyUrl"],"searchable":true,"uid":false},{"type":"string","label":"Video URL","name":"videoUrl","namespace":["videoProduction","_body","InternalCarousel","videoUrl"],"searchable":true,"uid":false}],"namespace":["videoProduction","_body","InternalCarousel"]},{"label":"Join As Presenter","name":"joinAsPresenter","fields":[{"label":"Learn More Link","name":"link","type":"string","namespace":["videoProduction","_body","joinAsPresenter","link"],"searchable":true,"uid":false},{"label":"Image","name":"img","type":"image","namespace":["videoProduction","_body","joinAsPresenter","img"],"searchable":false,"uid":false}],"namespace":["videoProduction","_body","joinAsPresenter"]},{"label":"Join Github","name":"joinGithub","ui":{"previewSrc":"/images/thumbs/tina/join-github.jpg"},"fields":[{"label":"Title","name":"title","type":"string","namespace":["videoProduction","_body","joinGithub","title"],"searchable":true,"uid":false},{"label":"Join Github Link","name":"link","type":"string","namespace":["videoProduction","_body","joinGithub","link"],"searchable":true,"uid":false}],"namespace":["videoProduction","_body","joinGithub"]},{"name":"JotFormEmbed","label":"JotForm Embed","ui":{"previewSrc":"/images/thumbs/tina/jotform-embed.jpg"},"fields":[{"type":"string","name":"jotFormId","label":"JotForm Id","required":true,"namespace":["videoProduction","_body","JotFormEmbed","jotFormId"],"searchable":true,"uid":false},{"type":"string","label":"Button Text","name":"buttonText","namespace":["videoProduction","_body","JotFormEmbed","buttonText"],"searchable":true,"uid":false},{"type":"string","name":"containerClass","label":"Container Class","namespace":["videoProduction","_body","JotFormEmbed","containerClass"],"searchable":true,"uid":false},{"type":"string","label":"Button Class","name":"buttonClass","namespace":["videoProduction","_body","JotFormEmbed","buttonClass"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","namespace":["videoProduction","_body","JotFormEmbed","animated"],"searchable":true,"uid":false}],"namespace":["videoProduction","_body","JotFormEmbed"]},{"name":"LatestTech","label":"Latest Tech","ui":{"previewSrc":"/images/thumbs/tina/latest-tech.jpg"},"fields":[{"type":"reference","description":"Select a config file including a set of badges","collections":["userGroupGlobal"],"label":"Badges","name":"badges","namespace":["videoProduction","_body","LatestTech","badges"],"searchable":true,"uid":false}],"namespace":["videoProduction","_body","LatestTech"]},{"name":"LocationBlock","label":"Locations","ui":{"previewSrc":"/images/thumbs/tina/locations.jpg"},"fields":[{"type":"string","name":"title","label":"Title","namespace":["videoProduction","_body","LocationBlock","title"],"searchable":true,"uid":false},{"type":"object","label":"Location List","name":"locationList","list":true,"ui":{},"fields":[{"type":"reference","collections":["locations"],"label":"Location","name":"location","namespace":["videoProduction","afterBody","LocationBlock","locationList","location"]}],"namespace":["videoProduction","_body","LocationBlock","locationList"],"searchable":true,"uid":false},{"type":"object","name":"chapelWebsite","label":"Chapel Website","fields":[{"type":"string","name":"title","label":"Text","namespace":["videoProduction","afterBody","LocationBlock","chapelWebsite","title"]},{"type":"string","name":"URL","label":"URL","namespace":["videoProduction","afterBody","LocationBlock","chapelWebsite","URL"]}],"namespace":["videoProduction","_body","LocationBlock","chapelWebsite"],"searchable":true,"uid":false}],"namespace":["videoProduction","_body","LocationBlock"]},{"name":"NewslettersTable","label":"Newsletters Table","ui":{"previewSrc":"/images/thumbs/tina/newsletters-table.jpg"},"fields":[{"type":"string","label":"Header text","name":"headerText","namespace":["videoProduction","_body","NewslettersTable","headerText"],"searchable":true,"uid":false}],"namespace":["videoProduction","_body","NewslettersTable"]},{"label":"Organizer","name":"organizer","fields":[{"type":"image","label":"Profile Image","name":"profileImg","namespace":["videoProduction","_body","organizer","profileImg"],"searchable":false,"uid":false},{"type":"string","label":"Profile Link","name":"profileLink","namespace":["videoProduction","_body","organizer","profileLink"],"searchable":true,"uid":false},{"type":"string","label":"Name","name":"name","namespace":["videoProduction","_body","organizer","name"],"searchable":true,"uid":false},{"type":"string","label":"Position","name":"position","namespace":["videoProduction","_body","organizer","position"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","namespace":["videoProduction","_body","organizer","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["videoProduction","_body","organizer"]},{"label":"Payment Block","name":"paymentBlock","ui":{"previewSrc":"/images/thumbs/tina/payment-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["videoProduction","_body","paymentBlock","title"],"searchable":true,"uid":false},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["videoProduction","_body","paymentBlock","subTitle"],"searchable":true,"uid":false},{"type":"reference","label":"Payment Links","name":"payments","collections":["paymentDetails"],"namespace":["videoProduction","_body","paymentBlock","payments"],"searchable":true,"uid":false},{"type":"rich-text","label":"Footer","name":"footer","namespace":["videoProduction","_body","paymentBlock","footer"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"image","label":"Credit Cards Image","name":"creditImgSrc","namespace":["videoProduction","_body","paymentBlock","creditImgSrc"],"searchable":false,"uid":false},{"type":"string","label":"Alt Text","name":"altTxt","namespace":["videoProduction","_body","paymentBlock","altTxt"],"searchable":true,"uid":false}],"namespace":["videoProduction","_body","paymentBlock"]},{"name":"PresenterBlock","label":"Presenters","ui":{"previewSrc":"/images/thumbs/tina/presenters.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["videoProduction","_body","PresenterBlock","header"],"searchable":true,"uid":false},{"type":"object","name":"presenterList","label":"Presenters","list":true,"ui":{},"fields":[{"type":"reference","name":"presenter","label":"Presenters","collections":["presenter"],"namespace":["videoProduction","afterBody","PresenterBlock","presenterList","presenter"]}],"namespace":["videoProduction","_body","PresenterBlock","presenterList"],"searchable":true,"uid":false},{"type":"object","label":"Other Events","name":"otherEvent","fields":[{"type":"string","label":"Title","name":"title","namespace":["videoProduction","afterBody","PresenterBlock","otherEvent","title"]},{"type":"string","label":"URL","name":"eventURL","namespace":["videoProduction","afterBody","PresenterBlock","otherEvent","eventURL"]}],"namespace":["videoProduction","_body","PresenterBlock","otherEvent"],"searchable":true,"uid":false}],"namespace":["videoProduction","_body","PresenterBlock"]},{"label":"Recurring Event","name":"RecurringEvent","ui":{"previewSrc":"/images/thumbs/tina/recurring-event.jpg"},"fields":[{"type":"string","label":"Apply Link Redirect","name":"applyLinkRedirect","namespace":["videoProduction","_body","RecurringEvent","applyLinkRedirect"],"searchable":true,"uid":false},{"type":"string","label":"Day","name":"day","options":[{"label":"Monday","value":"monday"},{"label":"Tuesday","value":"tuesday"},{"label":"Wednesday","value":"wednesday"},{"label":"Thursday","value":"thursday"},{"label":"Friday","value":"friday"},{"label":"Saturday","value":"saturday"},{"label":"Sunday","value":"sunday"}],"required":true,"namespace":["videoProduction","_body","RecurringEvent","day"],"searchable":true,"uid":false}],"namespace":["videoProduction","_body","RecurringEvent"]},{"name":"SectionHeader","label":"Section Header","ui":{"previewSrc":"/images/thumbs/tina/section-header.jpg"},"fields":[{"type":"string","label":"Header Text","name":"headerText","namespace":["videoProduction","_body","SectionHeader","headerText"],"searchable":true,"uid":false}],"namespace":["videoProduction","_body","SectionHeader"]},{"name":"ServiceCards","label":"Service Cards","ui":{"previewSrc":"/images/thumbs/tina/services-cards.jpg"},"fields":[{"type":"string","label":"Big Cards Label","name":"bigCardsLabel","namespace":["videoProduction","_body","ServiceCards","bigCardsLabel"],"searchable":true,"uid":false},{"label":"Big Cards","name":"bigCards","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["videoProduction","afterBody","ServiceCards","bigCards","title"]},{"type":"string","label":"Description","component":"textarea","name":"description","namespace":["videoProduction","afterBody","ServiceCards","bigCards","description"]},{"type":"string","label":"URL","name":"link","namespace":["videoProduction","afterBody","ServiceCards","bigCards","link"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Red","value":"red"},{"label":"Light Gray","value":"lightgray"},{"label":"Medium Gray","value":"mediumgray"},{"label":"Dark Gray","value":"darkgray"}],"namespace":["videoProduction","afterBody","ServiceCards","bigCards","color"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","ServiceCards","bigCards","imgSrc","uploadDir"]},"namespace":["videoProduction","afterBody","ServiceCards","bigCards","imgSrc"]}],"namespace":["videoProduction","_body","ServiceCards","bigCards"],"searchable":true,"uid":false},{"type":"string","label":"Small Cards Label","name":"smallCardsLabel","namespace":["videoProduction","_body","ServiceCards","smallCardsLabel"],"searchable":true,"uid":false},{"label":"Small Cards","name":"smallCards","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["videoProduction","afterBody","ServiceCards","smallCards","title"]},{"type":"string","label":"URL","name":"link","namespace":["videoProduction","afterBody","ServiceCards","smallCards","link"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Red","value":"red"},{"label":"Light Gray","value":"lightgray"},{"label":"Medium Gray","value":"mediumgray"},{"label":"Dark Gray","value":"darkgray"}],"namespace":["videoProduction","afterBody","ServiceCards","smallCards","color"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","ServiceCards","smallCards","imgSrc","uploadDir"]},"namespace":["videoProduction","afterBody","ServiceCards","smallCards","imgSrc"]},{"type":"boolean","label":"External Page","description":"Select this if the link is not part of the website. This includes SSW.Rules, and SSW.People links","name":"isExternal","namespace":["videoProduction","afterBody","ServiceCards","smallCards","isExternal"]}],"namespace":["videoProduction","_body","ServiceCards","smallCards"],"searchable":true,"uid":false},{"label":"Links","name":"links","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["videoProduction","afterBody","ServiceCards","links","label"]},{"type":"string","label":"URL","name":"link","namespace":["videoProduction","afterBody","ServiceCards","links","link"]}],"namespace":["videoProduction","_body","ServiceCards","links"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["videoProduction","_body","ServiceCards","backgroundColor"],"searchable":true,"uid":false}],"namespace":["videoProduction","_body","ServiceCards"]},{"label":"Table Layout","name":"TableLayout","ui":{"previewSrc":"/images/thumbs/tina/table-layout.jpg"},"fields":[{"label":"Table Style","name":"tableStyle","type":"string","options":["none","basicBorder","styled","benefits"],"namespace":["videoProduction","_body","TableLayout","tableStyle"],"searchable":true,"uid":false},{"label":"First column bolded + left aligned","name":"firstColBold","type":"boolean","required":false,"namespace":["videoProduction","_body","TableLayout","firstColBold"],"searchable":true,"uid":false},{"type":"string","label":"Table Headers","name":"headers","list":true,"namespace":["videoProduction","_body","TableLayout","headers"],"searchable":true,"uid":false},{"type":"object","label":"Rows","name":"rows","list":true,"fields":[{"type":"object","label":"Cells","name":"cells","list":true,"fields":[{"type":"string","label":"Value","name":"cellValue","required":true,"component":{"namespace":["page","beforeBody","TableLayout","rows","cells","cellValue",""]},"namespace":["employment","booking","bookingBody","TableLayout","rows","cells","cellValue"]}],"ui":{},"namespace":["videoProduction","afterBody","TableLayout","rows","cells"]},{"type":"boolean","label":"Is Heading","name":"isHeader","required":false,"namespace":["videoProduction","afterBody","TableLayout","rows","isHeader"]}],"ui":{},"namespace":["videoProduction","_body","TableLayout","rows"],"searchable":true,"uid":false}],"namespace":["videoProduction","_body","TableLayout"]},{"name":"TestimonialsList","label":"Testimonials List","ui":{"previewSrc":"/images/thumbs/tina/testimonials.jpg"},"fields":[{"type":"object","label":"Exclude Categories","name":"excludedCategories","ui":{},"list":true,"fields":[{"type":"reference","label":"Category Name","name":"categoryName","collections":["testimonialCategories"],"namespace":["videoProduction","afterBody","TestimonialsList","excludedCategories","categoryName"]}],"namespace":["videoProduction","_body","TestimonialsList","excludedCategories"],"searchable":true,"uid":false}],"namespace":["videoProduction","_body","TestimonialsList"]},{"label":"Training Information","name":"TrainingInformation","ui":{"previewSrc":"/images/thumbs/tina/training-information.jpg"},"fields":[{"type":"object","label":"Training Information Items","name":"trainingInformationItems","list":true,"fields":[{"type":"string","label":"Header","name":"header","namespace":["videoProduction","afterBody","TrainingInformation","trainingInformationItems","header"]},{"type":"rich-text","label":"Body","name":"body","templates":[{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["employment","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["employment","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["employment","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["employment","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["employment","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","afterBody"]}],"namespace":["employment","booking","bookingBody","TrainingInformation","trainingInformationItems","body","VerticalListItem"]},{"label":"Recurring Event","name":"RecurringEvent","ui":{"previewSrc":"/images/thumbs/tina/recurring-event.jpg"},"fields":[{"type":"string","label":"Apply Link Redirect","name":"applyLinkRedirect","namespace":["employment","_body","TrainingInformation","trainingInformationItems","body","RecurringEvent","applyLinkRedirect"]},{"type":"string","label":"Day","name":"day","options":[{"label":"Monday","value":"monday"},{"label":"Tuesday","value":"tuesday"},{"label":"Wednesday","value":"wednesday"},{"label":"Thursday","value":"thursday"},{"label":"Friday","value":"friday"},{"label":"Saturday","value":"saturday"},{"label":"Sunday","value":"sunday"}],"required":true,"namespace":["employment","_body","TrainingInformation","trainingInformationItems","body","RecurringEvent","day"]}],"namespace":["employment","booking","bookingBody","TrainingInformation","trainingInformationItems","body","RecurringEvent"]}],"namespace":["videoProduction","afterBody","TrainingInformation","trainingInformationItems","body"]}],"namespace":["videoProduction","_body","TrainingInformation","trainingInformationItems"],"searchable":true,"uid":false}],"namespace":["videoProduction","_body","TrainingInformation"]},{"label":"Training Learning Outcomes","name":"TrainingLearningOutcome","ui":{"previewSrc":"/images/thumbs/tina/training-learning-outcomes.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["videoProduction","_body","TrainingLearningOutcome","header"],"searchable":true,"uid":false},{"type":"object","label":"List Items","name":"listItems","list":true,"fields":[{"type":"string","label":"Title","name":"title","namespace":["videoProduction","afterBody","TrainingLearningOutcome","listItems","title"]},{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["videoProduction","afterBody","TrainingLearningOutcome","listItems","content"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","TrainingLearningOutcome","listItems","icon","uploadDir"]},"namespace":["videoProduction","afterBody","TrainingLearningOutcome","listItems","icon"]}],"namespace":["videoProduction","_body","TrainingLearningOutcome","listItems"],"searchable":true,"uid":false}],"namespace":["videoProduction","_body","TrainingLearningOutcome"]},{"label":"Tweet Embed","name":"TweetEmbed","ui":{"previewSrc":"/images/thumbs/tina/tweet-embed.jpg"},"fields":[{"type":"string","name":"url","label":"Tweet URL","required":true,"namespace":["videoProduction","_body","TweetEmbed","url"],"searchable":true,"uid":false}],"namespace":["videoProduction","_body","TweetEmbed"]},{"name":"UpcomingEvents","label":"Upcoming Events","ui":{"previewSrc":"/images/thumbs/tina/upcoming-events.jpg","defaultItem":{"title":"Upcoming Events","numberOfEvents":30}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["videoProduction","_body","UpcomingEvents","title"],"searchable":true,"uid":false},{"type":"number","label":"Number of Events","name":"numberOfEvents","namespace":["videoProduction","_body","UpcomingEvents","numberOfEvents"],"searchable":true,"uid":false}],"namespace":["videoProduction","_body","UpcomingEvents"]},{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["videoProduction","_body","UtilityButton","buttonText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"link","required":false,"namespace":["videoProduction","_body","UtilityButton","link"],"searchable":true,"uid":false},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["videoProduction","_body","UtilityButton","size"],"searchable":true,"uid":false},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["videoProduction","_body","UtilityButton","btnIcon"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["videoProduction","_body","UtilityButton","animated"],"searchable":true,"uid":false},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["videoProduction","_body","UtilityButton","uncentered"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["videoProduction","_body","UtilityButton","removeTopMargin"],"searchable":true,"uid":false},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["videoProduction","_body","UtilityButton","openInNewTab"],"searchable":true,"uid":false}],"namespace":["videoProduction","_body","UtilityButton"]},{"name":"VerticalImageLayout","label":"Vertical Image Layout","fields":[{"type":"image","label":"Image","name":"imageSrc","uploadDir":{"namespace":["page","beforeBody","VerticalImageLayout","imageSrc","uploadDir"]},"namespace":["videoProduction","_body","VerticalImageLayout","imageSrc"],"searchable":false,"uid":false},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["videoProduction","_body","VerticalImageLayout","altText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"imageLink","namespace":["videoProduction","_body","VerticalImageLayout","imageLink"],"searchable":true,"uid":false},{"type":"number","label":"Height","name":"height","required":true,"namespace":["videoProduction","_body","VerticalImageLayout","height"],"searchable":true,"uid":false},{"type":"number","label":"Width","name":"width","required":true,"namespace":["videoProduction","_body","VerticalImageLayout","width"],"searchable":true,"uid":false},{"type":"rich-text","label":"Message","name":"message","required":true,"namespace":["videoProduction","_body","VerticalImageLayout","message"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["videoProduction","_body","VerticalImageLayout","sizes"],"searchable":true,"uid":false}],"namespace":["videoProduction","_body","VerticalImageLayout"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["videoProduction","_body","VerticalListItem","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"number","label":"Index number","name":"index","namespace":["videoProduction","_body","VerticalListItem","index"],"searchable":true,"uid":false},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["videoProduction","_body","VerticalListItem","icon"],"searchable":false,"uid":false},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["videoProduction","_body","VerticalListItem","iconScale"],"searchable":true,"uid":false},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["videoProduction","_body","VerticalListItem","afterBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["videoProduction","_body","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["videoProduction","_body","VideoEmbed","url"],"searchable":true,"uid":false},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["videoProduction","_body","VideoEmbed","videoWidth"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["videoProduction","_body","VideoEmbed","removeMargin"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["videoProduction","_body","VideoEmbed","uncentre"],"searchable":true,"uid":false},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["videoProduction","_body","VideoEmbed","overflow"],"searchable":true,"uid":false},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["videoProduction","_body","VideoEmbed","caption"],"searchable":true,"uid":false},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["videoProduction","_body","VideoEmbed","duration"],"searchable":true,"uid":false}],"namespace":["videoProduction","_body","VideoEmbed"]},{"name":"InlineJotForm","label":"In-line JotForm","ui":{"previewSrc":"/images/thumbs/tina/inline-jot-form.jpg"},"fields":[{"type":"string","name":"title","label":"Title","description":"Optional title for JotForm","namespace":["videoProduction","_body","InlineJotForm","title"],"searchable":true,"uid":false},{"type":"string","name":"jotFormId","label":"JotForm ID","required":true,"namespace":["videoProduction","_body","InlineJotForm","jotFormId"],"searchable":true,"uid":false},{"type":"string","name":"additionalClasses","label":"Additional classnames","description":"Optional styling for iframe element only","namespace":["videoProduction","_body","InlineJotForm","additionalClasses"],"searchable":true,"uid":false}],"namespace":["videoProduction","_body","InlineJotForm"]}],"isBody":true,"namespace":["videoProduction","_body"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"object","list":true,"name":"afterBody","label":"After body","ui":{"visualSelector":true},"templates":[{"name":"AboutUs","label":"About Us","ui":{"previewSrc":"/images/thumbs/tina/about-us.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["videoProduction","afterBody","AboutUs","backgroundColor"],"searchable":true,"uid":false},{"type":"boolean","label":"Show Map","name":"showMap","required":false,"namespace":["videoProduction","afterBody","AboutUs","showMap"],"searchable":true,"uid":false}],"namespace":["videoProduction","afterBody","AboutUs"]},{"label":"Agenda","name":"Agenda","ui":{"previewSrc":"/images/thumbs/tina/agenda.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["videoProduction","afterBody","Agenda","header"],"searchable":true,"uid":false},{"type":"string","label":"Header Color","name":"textColor","options":[{"label":"Red","value":"red"},{"label":"Gray","value":"gray"},{"label":"Default","value":"default"}],"namespace":["videoProduction","afterBody","Agenda","textColor"],"searchable":true,"uid":false},{"type":"object","label":"Agenda Items","name":"agendaItemList","ui":{},"list":true,"fields":[{"type":"string","label":"Placeholder Text","name":"placeholder","namespace":["employment","booking","bookingBody","Agenda","agendaItemList","placeholder"]},{"type":"rich-text","label":"Body","name":"body","templates":[{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["employment","benefitsBody","Agenda","agendaItemList","body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["employment","benefitsBody","Agenda","agendaItemList","body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["employment","benefitsBody","Agenda","agendaItemList","body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["employment","benefitsBody","Agenda","agendaItemList","body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["employment","benefitsBody","Agenda","agendaItemList","body","VerticalListItem","afterBody"]}],"namespace":["employment","_body","Agenda","agendaItemList","body","VerticalListItem"]}],"namespace":["employment","booking","bookingBody","Agenda","agendaItemList","body"]}],"namespace":["videoProduction","afterBody","Agenda","agendaItemList"],"searchable":true,"uid":false}],"namespace":["videoProduction","afterBody","Agenda"]},{"label":"Agreement Form","name":"AgreementForm","ui":{"previewSrc":"/images/thumbs/tina/agreement-form.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["videoProduction","afterBody","AgreementForm","backgroundColor"],"searchable":true,"uid":false},{"type":"object","label":"Form fields","name":"fields","list":true,"fields":[{"type":"string","label":"ID","name":"id","required":true,"namespace":["employment","booking","bookingBody","AgreementForm","fields","id"]},{"type":"string","label":"Label","name":"label","required":true,"namespace":["employment","booking","bookingBody","AgreementForm","fields","label"]},{"type":"string","label":"Placeholder","name":"placeholder","namespace":["employment","booking","bookingBody","AgreementForm","fields","placeholder"]},{"type":"boolean","label":"Resizeable","name":"resizeable","required":true,"namespace":["employment","booking","bookingBody","AgreementForm","fields","resizeable"]}],"namespace":["videoProduction","afterBody","AgreementForm","fields"],"searchable":true,"uid":false}],"namespace":["videoProduction","afterBody","AgreementForm"]},{"label":"Interest Form","name":"InterestForm","ui":{"previewSrc":"/images/thumbs/tina/interest-form.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["videoProduction","afterBody","InterestForm","buttonText"],"searchable":true,"uid":false}],"namespace":["videoProduction","afterBody","InterestForm"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["videoProduction","afterBody","BookingButton","buttonText"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","namespace":["videoProduction","afterBody","BookingButton","animated"],"searchable":true,"uid":false},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["videoProduction","afterBody","BookingButton","buttonSubtitle"],"searchable":true,"uid":false}],"namespace":["videoProduction","afterBody","BookingButton"]},{"name":"BuiltOnAzure","label":"Built on Azure","ui":{"previewSrc":"/images/thumbs/tina/built-on-azure.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["videoProduction","afterBody","BuiltOnAzure","backgroundColor"],"searchable":true,"uid":false}],"namespace":["videoProduction","afterBody","BuiltOnAzure"]},{"name":"Carousel","label":"Carousel","ui":{"previewSrc":"/images/thumbs/tina/carousel.jpg"},"fields":[{"label":"Items","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Item description","link":"/","openIn":"sameWindow"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["employment","booking","bookingBody","Carousel","items","label"]},{"type":"string","label":"URL","name":"link","description":"If link contains ssw.com.au, you can skip the full URL and just use the path. e.g. /services","namespace":["employment","booking","bookingBody","Carousel","items","link"]},{"type":"string","label":"Open in","name":"openIn","description":"If it is external link, please select 'New window' option.","options":[{"label":"Same window","value":"sameWindow"},{"label":"Modal","value":"modal"},{"label":"New window","value":"newWindow"}],"namespace":["employment","booking","bookingBody","Carousel","items","openIn"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","Carousel","items","imgSrc","uploadDir"]},"namespace":["employment","booking","bookingBody","Carousel","items","imgSrc"]}],"namespace":["videoProduction","afterBody","Carousel","items"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["videoProduction","afterBody","Carousel","backgroundColor"],"searchable":true,"uid":false},{"type":"number","label":"Delay (Seconds)","name":"delay","required":true,"namespace":["videoProduction","afterBody","Carousel","delay"],"searchable":true,"uid":false},{"type":"boolean","label":"Show on mobile devices","name":"showOnMobileDevices","namespace":["videoProduction","afterBody","Carousel","showOnMobileDevices"],"searchable":true,"uid":false}],"namespace":["videoProduction","afterBody","Carousel"]},{"name":"Citation","label":"Citation","fields":[{"type":"string","label":"author","name":"author","namespace":["videoProduction","afterBody","Citation","author"],"searchable":true,"uid":false},{"type":"string","label":"article","name":"article","required":true,"namespace":["videoProduction","afterBody","Citation","article"],"searchable":true,"uid":false}],"namespace":["videoProduction","afterBody","Citation"]},{"label":"Client List","name":"ClientList","ui":{"previewSrc":"/images/thumbs/tina/clients-list.jpg"},"fields":[{"type":"object","name":"categories","label":"Categories","list":true,"fields":[{"type":"reference","name":"category","label":"Category","collections":["clientCategories"],"namespace":["employment","booking","bookingBody","ClientList","categories","category"]}],"ui":{},"namespace":["videoProduction","afterBody","ClientList","categories"],"searchable":true,"uid":false},{"type":"object","name":"clients","label":"Clients list","list":true,"ui":{"previewSrc":"/images/thumbs/tina/clients-list.jpg"},"fields":[{"type":"string","name":"name","label":"Name","namespace":["employment","booking","bookingBody","ClientList","clients","name"]},{"type":"image","name":"logo","label":"Logo","namespace":["employment","booking","bookingBody","ClientList","clients","logo"]},{"type":"string","name":"logoUrl","label":"Logo URL","namespace":["employment","booking","bookingBody","ClientList","clients","logoUrl"]},{"type":"rich-text","name":"content","label":"Content","templates":[{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["employment","benefitsBody","ClientList","clients","content","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["employment","benefitsBody","ClientList","clients","content","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["employment","benefitsBody","ClientList","clients","content","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["employment","benefitsBody","ClientList","clients","content","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["employment","benefitsBody","ClientList","clients","content","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["employment","benefitsBody","ClientList","clients","content","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["employment","benefitsBody","ClientList","clients","content","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["employment","benefitsBody","ClientList","clients","content","UtilityButton","openInNewTab"]}],"namespace":["employment","_body","ClientList","clients","content","UtilityButton"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["employment","benefitsBody","ClientList","clients","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["employment","benefitsBody","ClientList","clients","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["employment","benefitsBody","ClientList","clients","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["employment","benefitsBody","ClientList","clients","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["employment","benefitsBody","ClientList","clients","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["employment","benefitsBody","ClientList","clients","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["employment","benefitsBody","ClientList","clients","content","VideoEmbed","duration"]}],"namespace":["employment","_body","ClientList","clients","content","VideoEmbed"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["employment","benefitsBody","ClientList","clients","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","benefitsBody","ClientList","clients","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["employment","benefitsBody","ClientList","clients","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","benefitsBody","ClientList","clients","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","benefitsBody","ClientList","clients","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["employment","benefitsBody","ClientList","clients","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["employment","benefitsBody","ClientList","clients","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["employment","benefitsBody","ClientList","clients","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["employment","benefitsBody","ClientList","clients","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","benefitsBody","ClientList","clients","content","CustomImage","sizes"]}],"namespace":["employment","_body","ClientList","clients","content","CustomImage"]},{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["employment","benefitsBody","ClientList","clients","content","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["employment","benefitsBody","ClientList","clients","content","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["employment","opportunitiesBody","ClientList","clients","content","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","opportunitiesBody","ClientList","clients","content","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["employment","opportunitiesBody","ClientList","clients","content","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","opportunitiesBody","ClientList","clients","content","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","opportunitiesBody","ClientList","clients","content","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["employment","opportunitiesBody","ClientList","clients","content","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["employment","opportunitiesBody","ClientList","clients","content","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["employment","opportunitiesBody","ClientList","clients","content","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["employment","opportunitiesBody","ClientList","clients","content","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","opportunitiesBody","ClientList","clients","content","ContentCard","content","CustomImage","sizes"]}],"namespace":["employment","afterBody","ClientList","clients","content","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["employment","opportunitiesBody","ClientList","clients","content","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["employment","opportunitiesBody","ClientList","clients","content","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["employment","opportunitiesBody","ClientList","clients","content","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["employment","opportunitiesBody","ClientList","clients","content","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["employment","opportunitiesBody","ClientList","clients","content","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["employment","afterBody","ClientList","clients","content","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["employment","opportunitiesBody","ClientList","clients","content","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["employment","opportunitiesBody","ClientList","clients","content","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["employment","opportunitiesBody","ClientList","clients","content","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["employment","opportunitiesBody","ClientList","clients","content","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["employment","opportunitiesBody","ClientList","clients","content","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["employment","opportunitiesBody","ClientList","clients","content","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["employment","opportunitiesBody","ClientList","clients","content","ContentCard","content","VideoEmbed","duration"]}],"namespace":["employment","afterBody","ClientList","clients","content","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","opportunitiesBody","ClientList","clients","content","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["employment","opportunitiesBody","ClientList","clients","content","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["employment","callToActionBody","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["employment","callToActionBody","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["employment","callToActionBody","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["employment","callToActionBody","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["employment","callToActionBody","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["employment","opportunitiesBody","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["employment","afterBody","ClientList","clients","content","ContentCard","content","ColorBlock"]}],"namespace":["employment","benefitsBody","ClientList","clients","content","ContentCard","content"]}],"namespace":["employment","_body","ClientList","clients","content","ContentCard"]}],"namespace":["employment","booking","bookingBody","ClientList","clients","content"]},{"type":"string","name":"caseStudyUrl","label":"Case study URL","namespace":["employment","booking","bookingBody","ClientList","clients","caseStudyUrl"]},{"type":"object","name":"categories","label":"Categories","list":true,"ui":{},"fields":[{"type":"reference","name":"category","label":"Category","collections":["clientCategories"],"namespace":["employment","_body","ClientList","clients","categories","category"]}],"namespace":["employment","booking","bookingBody","ClientList","clients","categories"]}],"namespace":["videoProduction","afterBody","ClientList","clients"],"searchable":true,"uid":false}],"namespace":["videoProduction","afterBody","ClientList"]},{"name":"ClientLogos","label":"Client Logos","ui":{"previewSrc":"/images/thumbs/tina/client-logos.jpg"},"fields":[{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["videoProduction","afterBody","ClientLogos","altText"],"searchable":true,"uid":false}],"namespace":["videoProduction","afterBody","ClientLogos"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["videoProduction","afterBody","ColorBlock","title"],"searchable":true,"uid":false},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["videoProduction","afterBody","ColorBlock","subTitle"],"searchable":true,"uid":false},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["employment","booking","bookingBody","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["employment","booking","bookingBody","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["employment","booking","bookingBody","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["employment","booking","bookingBody","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["employment","booking","bookingBody","ColorBlock","colorRow","caption"]}],"namespace":["videoProduction","afterBody","ColorBlock","colorRow"],"searchable":true,"uid":false}],"namespace":["videoProduction","afterBody","ColorBlock"]},{"name":"ColorPalette","label":"Color Palette","ui":{"previewSrc":"/images/thumbs/tina/color-palette.jpg"},"fields":[{"type":"string","label":"Name","name":"name","namespace":["videoProduction","afterBody","ColorPalette","name"],"searchable":true,"uid":false}],"namespace":["videoProduction","afterBody","ColorPalette"]},{"name":"Content","label":"Content","ui":{"previewSrc":"/images/thumbs/tina/content.jpg","defaultItem":{"body":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["videoProduction","afterBody","Content","title"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["employment","_body","Content","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","_body","Content","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["employment","_body","Content","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","_body","Content","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","_body","Content","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["employment","_body","Content","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["employment","_body","Content","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["employment","_body","Content","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["employment","_body","Content","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","_body","Content","content","CustomImage","sizes"]}],"namespace":["employment","booking","bookingBody","Content","content","CustomImage"]},{"name":"ClientLogos","label":"Client Logos","ui":{"previewSrc":"/images/thumbs/tina/client-logos.jpg"},"fields":[{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","_body","Content","content","ClientLogos","altText"]}],"namespace":["employment","booking","bookingBody","Content","content","ClientLogos"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["employment","_body","Content","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["employment","_body","Content","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["employment","_body","Content","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["employment","_body","Content","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["employment","_body","Content","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["employment","_body","Content","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["employment","_body","Content","content","VideoEmbed","duration"]}],"namespace":["employment","booking","bookingBody","Content","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","_body","Content","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["employment","_body","Content","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["employment","benefitsBody","Content","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["employment","benefitsBody","Content","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["employment","benefitsBody","Content","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["employment","benefitsBody","Content","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["employment","benefitsBody","Content","content","ColorBlock","colorRow","caption"]}],"namespace":["employment","_body","Content","content","ColorBlock","colorRow"]}],"namespace":["employment","booking","bookingBody","Content","content","ColorBlock"]}],"namespace":["videoProduction","afterBody","Content","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Container Padding","name":"paddingClass","options":["Mobile: No Padding","Mobile: No Top and Horizontal Padding"],"namespace":["videoProduction","afterBody","Content","paddingClass"],"searchable":true,"uid":false},{"type":"string","label":"Text size","name":"size","options":[{"label":"small","value":"sm"},{"label":"normal","value":"base"},{"label":"large","value":"lg"},{"label":"extra large","value":"xl"},{"label":"2x large","value":"2xl"}],"namespace":["videoProduction","afterBody","Content","size"],"searchable":true,"uid":false},{"type":"string","label":"Align","name":"align","options":[{"label":"Left","value":"left"},{"label":"Center","value":"center"},{"label":"Right","value":"right"}],"namespace":["videoProduction","afterBody","Content","align"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["videoProduction","afterBody","Content","backgroundColor"],"searchable":true,"uid":false}],"namespace":["videoProduction","afterBody","Content"]},{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["videoProduction","afterBody","ContentCard","prose"],"searchable":true,"uid":false},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["videoProduction","afterBody","ContentCard","centerAlignedText"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["employment","_body","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","_body","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["employment","_body","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","_body","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","_body","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["employment","_body","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["employment","_body","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["employment","_body","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["employment","_body","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","_body","ContentCard","content","CustomImage","sizes"]}],"namespace":["employment","booking","bookingBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["employment","_body","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["employment","_body","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["employment","_body","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["employment","_body","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["employment","_body","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["employment","booking","bookingBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["employment","_body","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["employment","_body","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["employment","_body","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["employment","_body","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["employment","_body","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["employment","_body","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["employment","_body","ContentCard","content","VideoEmbed","duration"]}],"namespace":["employment","booking","bookingBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","_body","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["employment","_body","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["employment","benefitsBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["employment","benefitsBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["employment","benefitsBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["employment","benefitsBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["employment","benefitsBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["employment","_body","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["employment","booking","bookingBody","ContentCard","content","ColorBlock"]}],"namespace":["videoProduction","afterBody","ContentCard","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["videoProduction","afterBody","ContentCard"]},{"name":"CustomDownloadButton","label":"Custom Download Button","ui":{"previewSrc":"/images/thumbs/tina/custom-download-button.jpg"},"fields":[{"type":"string","label":"Text","name":"btnText","namespace":["videoProduction","afterBody","CustomDownloadButton","btnText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"btnLink","namespace":["videoProduction","afterBody","CustomDownloadButton","btnLink"],"searchable":true,"uid":false}],"namespace":["videoProduction","afterBody","CustomDownloadButton"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["videoProduction","afterBody","CustomImage","src"],"searchable":false,"uid":false},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["videoProduction","afterBody","CustomImage","altText"],"searchable":true,"uid":false},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["videoProduction","afterBody","CustomImage","alignment"],"searchable":true,"uid":false},{"type":"number","label":"Height","name":"height","required":true,"namespace":["videoProduction","afterBody","CustomImage","height"],"searchable":true,"uid":false},{"type":"number","label":"Width","name":"width","required":true,"namespace":["videoProduction","afterBody","CustomImage","width"],"searchable":true,"uid":false},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["videoProduction","afterBody","CustomImage","link"],"searchable":true,"uid":false},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["videoProduction","afterBody","CustomImage","customClass"],"searchable":true,"uid":false},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["videoProduction","afterBody","CustomImage","caption"],"searchable":true,"uid":false},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["videoProduction","afterBody","CustomImage","captionColor"],"searchable":true,"uid":false},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["videoProduction","afterBody","CustomImage","sizes"],"searchable":true,"uid":false}],"namespace":["videoProduction","afterBody","CustomImage"]},{"name":"DomainFromQuery","label":"Domain from query","ui":{"previewSrc":"/images/thumbs/tina/domain-from-query.jpg"},"fields":[{"name":"title","label":"Title","type":"string","description":"This is a H1 heading","namespace":["videoProduction","afterBody","DomainFromQuery","title"],"searchable":true,"uid":false},{"name":"showDomain","label":"Show domain name","type":"boolean","description":"Query param in URL must have key of 'domain'","namespace":["videoProduction","afterBody","DomainFromQuery","showDomain"],"searchable":true,"uid":false}],"namespace":["videoProduction","afterBody","DomainFromQuery"]},{"name":"DownloadBlock","label":"Download Block","ui":{"previewSrc":"/images/thumbs/tina/download-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["videoProduction","afterBody","DownloadBlock","title"],"searchable":true,"uid":false},{"type":"object","label":"Downloads","name":"downloads","ui":{},"list":true,"fields":[{"type":"string","label":"Header","name":"header","namespace":["employment","booking","bookingBody","DownloadBlock","downloads","header"]},{"type":"image","label":"Image","name":"img","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","img","uploadDir"]},"namespace":["employment","booking","bookingBody","DownloadBlock","downloads","img"]},{"type":"string","label":"Image Background","name":"imgBackground","options":["black","grey","white","darkgrey","darkgreen"],"namespace":["employment","booking","bookingBody","DownloadBlock","downloads","imgBackground"]},{"type":"string","label":"First Link Text","name":"firstLinkText","description":"Defaults to PNG","namespace":["employment","booking","bookingBody","DownloadBlock","downloads","firstLinkText"]},{"type":"image","label":"First Link","name":"firstLink","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","firstLink","uploadDir"]},"namespace":["employment","booking","bookingBody","DownloadBlock","downloads","firstLink"]},{"type":"string","label":"Second Link Text","name":"secondLinkText","description":"Defaults to PDF","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","secondLinkText","uploadDir"]},"namespace":["employment","booking","bookingBody","DownloadBlock","downloads","secondLinkText"]},{"type":"image","label":"Second Link","name":"secondLink","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","secondLink","uploadDir"]},"namespace":["employment","booking","bookingBody","DownloadBlock","downloads","secondLink"]}],"namespace":["videoProduction","afterBody","DownloadBlock","downloads"],"searchable":true,"uid":false},{"type":"boolean","label":"Bottom border","name":"bottomBorder","namespace":["videoProduction","afterBody","DownloadBlock","bottomBorder"],"searchable":true,"uid":false}],"namespace":["videoProduction","afterBody","DownloadBlock"]},{"name":"DynamicColumns","label":"Dynamic Column Layout","fields":[{"type":"rich-text","label":"Column text body","name":"colBody","required":true,"namespace":["videoProduction","afterBody","DynamicColumns","colBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"number","label":"Number of columns","name":"colCount","required":true,"ui":{},"namespace":["videoProduction","afterBody","DynamicColumns","colCount"],"searchable":true,"uid":false}],"namespace":["videoProduction","afterBody","DynamicColumns"]},{"name":"EventBooking","label":"Events Booking","ui":{"previewSrc":"/images/thumbs/tina/events-booking.jpg"},"fields":[{"type":"number","label":"Duration (In Days)","name":"eventDurationInDays","required":true,"namespace":["videoProduction","afterBody","EventBooking","eventDurationInDays"],"searchable":true,"uid":false},{"type":"number","label":"Price","name":"price","required":true,"namespace":["videoProduction","afterBody","EventBooking","price"],"searchable":true,"uid":false},{"type":"number","label":"Discount Price","name":"discountPrice","namespace":["videoProduction","afterBody","EventBooking","discountPrice"],"searchable":true,"uid":false},{"type":"string","name":"gstText","label":"Select GST Option","options":["inc GST","+ GST"],"required":true,"namespace":["videoProduction","afterBody","EventBooking","gstText"],"searchable":true,"uid":false},{"type":"string","label":"Discount Note","name":"discountNote","namespace":["videoProduction","afterBody","EventBooking","discountNote"],"searchable":true,"uid":false},{"type":"object","label":"Event","name":"eventList","ui":{},"list":true,"fields":[{"type":"string","label":"City","name":"city","namespace":["employment","booking","bookingBody","EventBooking","eventList","city"]},{"type":"datetime","label":"Start Date","name":"date","ui":{},"namespace":["employment","booking","bookingBody","EventBooking","eventList","date"]},{"type":"string","label":"Booking URL","name":"bookingURL","namespace":["employment","booking","bookingBody","EventBooking","eventList","bookingURL"]},{"type":"reference","label":"Location","name":"location","collections":["locations"],"namespace":["employment","booking","bookingBody","EventBooking","eventList","location"]}],"namespace":["videoProduction","afterBody","EventBooking","eventList"],"searchable":true,"uid":false}],"namespace":["videoProduction","afterBody","EventBooking"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["employment","_body","EventLink","content","Flag","country"]}],"namespace":["employment","booking","bookingBody","EventLink","content","Flag"]}],"namespace":["videoProduction","afterBody","EventLink","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Link","name":"link","namespace":["videoProduction","afterBody","EventLink","link"],"searchable":true,"uid":false},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["videoProduction","afterBody","EventLink","eventThumbnail"],"searchable":false,"uid":false},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["videoProduction","afterBody","EventLink","thumbnailAlt"],"searchable":true,"uid":false}],"namespace":["videoProduction","afterBody","EventLink"]},{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["videoProduction","afterBody","Flag","country"],"searchable":true,"uid":false}],"namespace":["videoProduction","afterBody","Flag"]},{"name":"FixedColumns","label":"Fixed Column Layout (2 columns)","ui":{"previewSrc":"/images/thumbs/tina/fixed-columns.jpg"},"fields":[{"type":"rich-text","label":"Header Section (Optional)","name":"headerSection","namespace":["videoProduction","afterBody","FixedColumns","headerSection"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"First column text","name":"firstColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["employment","_body","FixedColumns","firstColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["employment","_body","FixedColumns","firstColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["employment","afterBody","FixedColumns","firstColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","afterBody","FixedColumns","firstColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["employment","afterBody","FixedColumns","firstColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","afterBody","FixedColumns","firstColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","afterBody","FixedColumns","firstColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["employment","afterBody","FixedColumns","firstColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["employment","afterBody","FixedColumns","firstColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["employment","afterBody","FixedColumns","firstColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["employment","afterBody","FixedColumns","firstColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","afterBody","FixedColumns","firstColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["employment","benefitsBody","FixedColumns","firstColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["employment","afterBody","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["employment","afterBody","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["employment","afterBody","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["employment","afterBody","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["employment","afterBody","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["employment","benefitsBody","FixedColumns","firstColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["employment","afterBody","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["employment","afterBody","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["employment","afterBody","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["employment","afterBody","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["employment","afterBody","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["employment","afterBody","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["employment","afterBody","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["employment","benefitsBody","FixedColumns","firstColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","afterBody","FixedColumns","firstColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["employment","afterBody","FixedColumns","firstColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["employment","opportunitiesBody","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["employment","opportunitiesBody","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["employment","opportunitiesBody","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["employment","opportunitiesBody","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["employment","opportunitiesBody","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["employment","afterBody","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["employment","benefitsBody","FixedColumns","firstColBody","ContentCard","content","ColorBlock"]}],"namespace":["employment","_body","FixedColumns","firstColBody","ContentCard","content"]}],"namespace":["employment","booking","bookingBody","FixedColumns","firstColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["employment","_body","FixedColumns","firstColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","_body","FixedColumns","firstColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["employment","_body","FixedColumns","firstColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","_body","FixedColumns","firstColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","_body","FixedColumns","firstColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["employment","_body","FixedColumns","firstColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["employment","_body","FixedColumns","firstColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["employment","_body","FixedColumns","firstColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["employment","_body","FixedColumns","firstColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","_body","FixedColumns","firstColBody","CustomImage","sizes"]}],"namespace":["employment","booking","bookingBody","FixedColumns","firstColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["employment","afterBody","FixedColumns","firstColBody","EventLink","content","Flag","country"]}],"namespace":["employment","benefitsBody","FixedColumns","firstColBody","EventLink","content","Flag"]}],"namespace":["employment","_body","FixedColumns","firstColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["employment","_body","FixedColumns","firstColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["employment","_body","FixedColumns","firstColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["employment","_body","FixedColumns","firstColBody","EventLink","thumbnailAlt"]}],"namespace":["employment","booking","bookingBody","FixedColumns","firstColBody","EventLink"]}],"namespace":["videoProduction","afterBody","FixedColumns","firstColBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"Second column text","name":"secondColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["employment","_body","FixedColumns","secondColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["employment","_body","FixedColumns","secondColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["employment","afterBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","afterBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["employment","afterBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","afterBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","afterBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["employment","afterBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["employment","afterBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["employment","afterBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["employment","afterBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","afterBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["employment","benefitsBody","FixedColumns","secondColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["employment","afterBody","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["employment","afterBody","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["employment","afterBody","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["employment","afterBody","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["employment","afterBody","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["employment","benefitsBody","FixedColumns","secondColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["employment","afterBody","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["employment","afterBody","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["employment","afterBody","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["employment","afterBody","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["employment","afterBody","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["employment","afterBody","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["employment","afterBody","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["employment","benefitsBody","FixedColumns","secondColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","afterBody","FixedColumns","secondColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["employment","afterBody","FixedColumns","secondColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["employment","opportunitiesBody","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["employment","opportunitiesBody","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["employment","opportunitiesBody","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["employment","opportunitiesBody","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["employment","opportunitiesBody","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["employment","afterBody","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["employment","benefitsBody","FixedColumns","secondColBody","ContentCard","content","ColorBlock"]}],"namespace":["employment","_body","FixedColumns","secondColBody","ContentCard","content"]}],"namespace":["employment","booking","bookingBody","FixedColumns","secondColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["employment","_body","FixedColumns","secondColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","_body","FixedColumns","secondColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["employment","_body","FixedColumns","secondColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","_body","FixedColumns","secondColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","_body","FixedColumns","secondColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["employment","_body","FixedColumns","secondColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["employment","_body","FixedColumns","secondColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["employment","_body","FixedColumns","secondColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["employment","_body","FixedColumns","secondColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","_body","FixedColumns","secondColBody","CustomImage","sizes"]}],"namespace":["employment","booking","bookingBody","FixedColumns","secondColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["employment","afterBody","FixedColumns","secondColBody","EventLink","content","Flag","country"]}],"namespace":["employment","benefitsBody","FixedColumns","secondColBody","EventLink","content","Flag"]}],"namespace":["employment","_body","FixedColumns","secondColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["employment","_body","FixedColumns","secondColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["employment","_body","FixedColumns","secondColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["employment","_body","FixedColumns","secondColBody","EventLink","thumbnailAlt"]}],"namespace":["employment","booking","bookingBody","FixedColumns","secondColBody","EventLink"]}],"namespace":["videoProduction","afterBody","FixedColumns","secondColBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["videoProduction","afterBody","FixedColumns"]},{"name":"FixedTabsLayout","label":"Fixed Tabs Layout","ui":{"previewSrc":"/images/thumbs/tina/fixed-tabs-layout.jpg"},"fields":[{"type":"string","name":"firstTab","label":"First Tab","namespace":["videoProduction","afterBody","FixedTabsLayout","firstTab"],"searchable":true,"uid":false},{"type":"rich-text","name":"firstHeading","label":"First Heading","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["employment","_body","FixedTabsLayout","firstHeading","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["employment","_body","FixedTabsLayout","firstHeading","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["employment","_body","FixedTabsLayout","firstHeading","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["employment","_body","FixedTabsLayout","firstHeading","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["employment","_body","FixedTabsLayout","firstHeading","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["employment","_body","FixedTabsLayout","firstHeading","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["employment","_body","FixedTabsLayout","firstHeading","VideoEmbed","duration"]}],"namespace":["employment","booking","bookingBody","FixedTabsLayout","firstHeading","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["employment","_body","FixedTabsLayout","firstHeading","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["employment","_body","FixedTabsLayout","firstHeading","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["employment","_body","FixedTabsLayout","firstHeading","BookingButton","buttonSubtitle"]}],"namespace":["employment","booking","bookingBody","FixedTabsLayout","firstHeading","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["employment","_body","FixedTabsLayout","firstHeading","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["employment","benefitsBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["employment","benefitsBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["employment","benefitsBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["employment","benefitsBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","skills"]}],"namespace":["employment","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["employment","benefitsBody","FixedTabsLayout","firstHeading","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["employment","benefitsBody","FixedTabsLayout","firstHeading","ExpertBlock","link","url"]}],"namespace":["employment","_body","FixedTabsLayout","firstHeading","ExpertBlock","link"]}],"namespace":["employment","booking","bookingBody","FixedTabsLayout","firstHeading","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","benefitsBody","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["employment","benefitsBody","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["employment","benefitsBody","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["employment","afterBody","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["employment","afterBody","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["employment","afterBody","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["employment","benefitsBody","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["employment","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["employment","booking","bookingBody","FixedTabsLayout","firstHeading","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["employment","_body","FixedTabsLayout","firstHeading","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","_body","FixedTabsLayout","firstHeading","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["employment","_body","FixedTabsLayout","firstHeading","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","_body","FixedTabsLayout","firstHeading","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","_body","FixedTabsLayout","firstHeading","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["employment","_body","FixedTabsLayout","firstHeading","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["employment","_body","FixedTabsLayout","firstHeading","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["employment","_body","FixedTabsLayout","firstHeading","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["employment","_body","FixedTabsLayout","firstHeading","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","_body","FixedTabsLayout","firstHeading","CustomImage","sizes"]}],"namespace":["employment","booking","bookingBody","FixedTabsLayout","firstHeading","CustomImage"]}],"namespace":["videoProduction","afterBody","FixedTabsLayout","firstHeading"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","name":"firstBody","label":"First Body","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["employment","_body","FixedTabsLayout","firstBody","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["employment","_body","FixedTabsLayout","firstBody","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["employment","_body","FixedTabsLayout","firstBody","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["employment","_body","FixedTabsLayout","firstBody","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["employment","_body","FixedTabsLayout","firstBody","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["employment","_body","FixedTabsLayout","firstBody","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["employment","_body","FixedTabsLayout","firstBody","VideoEmbed","duration"]}],"namespace":["employment","booking","bookingBody","FixedTabsLayout","firstBody","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["employment","_body","FixedTabsLayout","firstBody","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["employment","_body","FixedTabsLayout","firstBody","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["employment","_body","FixedTabsLayout","firstBody","BookingButton","buttonSubtitle"]}],"namespace":["employment","booking","bookingBody","FixedTabsLayout","firstBody","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["employment","_body","FixedTabsLayout","firstBody","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["employment","benefitsBody","FixedTabsLayout","firstBody","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["employment","benefitsBody","FixedTabsLayout","firstBody","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["employment","benefitsBody","FixedTabsLayout","firstBody","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["employment","benefitsBody","FixedTabsLayout","firstBody","ExpertBlock","expertList","skills"]}],"namespace":["employment","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["employment","benefitsBody","FixedTabsLayout","firstBody","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["employment","benefitsBody","FixedTabsLayout","firstBody","ExpertBlock","link","url"]}],"namespace":["employment","_body","FixedTabsLayout","firstBody","ExpertBlock","link"]}],"namespace":["employment","booking","bookingBody","FixedTabsLayout","firstBody","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","benefitsBody","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["employment","benefitsBody","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["employment","benefitsBody","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["employment","afterBody","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["employment","afterBody","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["employment","afterBody","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["employment","benefitsBody","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["employment","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["employment","booking","bookingBody","FixedTabsLayout","firstBody","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["employment","_body","FixedTabsLayout","firstBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","_body","FixedTabsLayout","firstBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["employment","_body","FixedTabsLayout","firstBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","_body","FixedTabsLayout","firstBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","_body","FixedTabsLayout","firstBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["employment","_body","FixedTabsLayout","firstBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["employment","_body","FixedTabsLayout","firstBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["employment","_body","FixedTabsLayout","firstBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["employment","_body","FixedTabsLayout","firstBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","_body","FixedTabsLayout","firstBody","CustomImage","sizes"]}],"namespace":["employment","booking","bookingBody","FixedTabsLayout","firstBody","CustomImage"]}],"namespace":["videoProduction","afterBody","FixedTabsLayout","firstBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","name":"secondTab","label":"Second Tab","namespace":["videoProduction","afterBody","FixedTabsLayout","secondTab"],"searchable":true,"uid":false},{"type":"rich-text","name":"secondHeading","label":"Second Heading","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["employment","_body","FixedTabsLayout","secondHeading","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["employment","_body","FixedTabsLayout","secondHeading","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["employment","_body","FixedTabsLayout","secondHeading","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["employment","_body","FixedTabsLayout","secondHeading","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["employment","_body","FixedTabsLayout","secondHeading","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["employment","_body","FixedTabsLayout","secondHeading","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["employment","_body","FixedTabsLayout","secondHeading","VideoEmbed","duration"]}],"namespace":["employment","booking","bookingBody","FixedTabsLayout","secondHeading","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["employment","_body","FixedTabsLayout","secondHeading","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["employment","_body","FixedTabsLayout","secondHeading","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["employment","_body","FixedTabsLayout","secondHeading","BookingButton","buttonSubtitle"]}],"namespace":["employment","booking","bookingBody","FixedTabsLayout","secondHeading","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["employment","_body","FixedTabsLayout","secondHeading","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["employment","benefitsBody","FixedTabsLayout","secondHeading","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["employment","benefitsBody","FixedTabsLayout","secondHeading","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["employment","benefitsBody","FixedTabsLayout","secondHeading","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["employment","benefitsBody","FixedTabsLayout","secondHeading","ExpertBlock","expertList","skills"]}],"namespace":["employment","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["employment","benefitsBody","FixedTabsLayout","secondHeading","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["employment","benefitsBody","FixedTabsLayout","secondHeading","ExpertBlock","link","url"]}],"namespace":["employment","_body","FixedTabsLayout","secondHeading","ExpertBlock","link"]}],"namespace":["employment","booking","bookingBody","FixedTabsLayout","secondHeading","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","benefitsBody","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["employment","benefitsBody","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["employment","benefitsBody","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["employment","afterBody","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["employment","afterBody","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["employment","afterBody","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["employment","benefitsBody","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["employment","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["employment","booking","bookingBody","FixedTabsLayout","secondHeading","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["employment","_body","FixedTabsLayout","secondHeading","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","_body","FixedTabsLayout","secondHeading","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["employment","_body","FixedTabsLayout","secondHeading","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","_body","FixedTabsLayout","secondHeading","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","_body","FixedTabsLayout","secondHeading","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["employment","_body","FixedTabsLayout","secondHeading","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["employment","_body","FixedTabsLayout","secondHeading","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["employment","_body","FixedTabsLayout","secondHeading","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["employment","_body","FixedTabsLayout","secondHeading","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","_body","FixedTabsLayout","secondHeading","CustomImage","sizes"]}],"namespace":["employment","booking","bookingBody","FixedTabsLayout","secondHeading","CustomImage"]}],"namespace":["videoProduction","afterBody","FixedTabsLayout","secondHeading"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","name":"secondBody","label":"Second Body","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["employment","_body","FixedTabsLayout","secondBody","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["employment","_body","FixedTabsLayout","secondBody","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["employment","_body","FixedTabsLayout","secondBody","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["employment","_body","FixedTabsLayout","secondBody","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["employment","_body","FixedTabsLayout","secondBody","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["employment","_body","FixedTabsLayout","secondBody","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["employment","_body","FixedTabsLayout","secondBody","VideoEmbed","duration"]}],"namespace":["employment","booking","bookingBody","FixedTabsLayout","secondBody","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["employment","_body","FixedTabsLayout","secondBody","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["employment","_body","FixedTabsLayout","secondBody","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["employment","_body","FixedTabsLayout","secondBody","BookingButton","buttonSubtitle"]}],"namespace":["employment","booking","bookingBody","FixedTabsLayout","secondBody","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["employment","_body","FixedTabsLayout","secondBody","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["employment","benefitsBody","FixedTabsLayout","secondBody","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["employment","benefitsBody","FixedTabsLayout","secondBody","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["employment","benefitsBody","FixedTabsLayout","secondBody","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["employment","benefitsBody","FixedTabsLayout","secondBody","ExpertBlock","expertList","skills"]}],"namespace":["employment","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["employment","benefitsBody","FixedTabsLayout","secondBody","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["employment","benefitsBody","FixedTabsLayout","secondBody","ExpertBlock","link","url"]}],"namespace":["employment","_body","FixedTabsLayout","secondBody","ExpertBlock","link"]}],"namespace":["employment","booking","bookingBody","FixedTabsLayout","secondBody","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","benefitsBody","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["employment","benefitsBody","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["employment","benefitsBody","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["employment","afterBody","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["employment","afterBody","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["employment","afterBody","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["employment","benefitsBody","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["employment","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["employment","booking","bookingBody","FixedTabsLayout","secondBody","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["employment","_body","FixedTabsLayout","secondBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","_body","FixedTabsLayout","secondBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["employment","_body","FixedTabsLayout","secondBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","_body","FixedTabsLayout","secondBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","_body","FixedTabsLayout","secondBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["employment","_body","FixedTabsLayout","secondBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["employment","_body","FixedTabsLayout","secondBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["employment","_body","FixedTabsLayout","secondBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["employment","_body","FixedTabsLayout","secondBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","_body","FixedTabsLayout","secondBody","CustomImage","sizes"]}],"namespace":["employment","booking","bookingBody","FixedTabsLayout","secondBody","CustomImage"]}],"namespace":["videoProduction","afterBody","FixedTabsLayout","secondBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["videoProduction","afterBody","FixedTabsLayout"]},{"label":"Google Maps","name":"GoogleMaps","ui":{"previewSrc":"/images/thumbs/tina/google-maps.jpg"},"fields":[{"type":"string","label":"URL","name":"embedUrl","required":true,"namespace":["videoProduction","afterBody","GoogleMaps","embedUrl"],"searchable":true,"uid":false},{"type":"string","label":"Width","name":"embedWidth","namespace":["videoProduction","afterBody","GoogleMaps","embedWidth"],"searchable":true,"uid":false},{"type":"string","label":"Height","name":"embedHeight","namespace":["videoProduction","afterBody","GoogleMaps","embedHeight"],"searchable":true,"uid":false}],"namespace":["videoProduction","afterBody","GoogleMaps"]},{"label":"Grid Layout","name":"GridLayout","ui":{"previewSrc":"/images/thumbs/tina/grid-layout.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["videoProduction","afterBody","GridLayout","title"],"searchable":true,"uid":false},{"type":"object","list":true,"label":"Grid Items","name":"grids","ui":{},"fields":[{"type":"string","label":"Grid Title","name":"gridTitle","namespace":["employment","booking","bookingBody","GridLayout","grids","gridTitle"]},{"type":"boolean","label":"Show Grid Title","name":"showGridTitle","namespace":["employment","booking","bookingBody","GridLayout","grids","showGridTitle"]},{"type":"boolean","label":"Centered Grid Title","name":"centeredGridTitle","namespace":["employment","booking","bookingBody","GridLayout","grids","centeredGridTitle"]},{"type":"boolean","label":"Show Header Divider","name":"showHeaderDivider","namespace":["employment","booking","bookingBody","GridLayout","grids","showHeaderDivider"]},{"type":"boolean","label":"Offset Grid Start","name":"offsetGridStart","namespace":["employment","booking","bookingBody","GridLayout","grids","offsetGridStart"]},{"type":"object","label":"Blocks","name":"blocks","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","_body","GridLayout","grids","blocks","title"]},{"type":"boolean","label":"Show Title","name":"showTitle","namespace":["employment","_body","GridLayout","grids","blocks","showTitle"]},{"type":"image","label":"Image","name":"image","uploadDir":{"namespace":["page","beforeBody","GridLayout","grids","blocks","image","uploadDir"]},"namespace":["employment","_body","GridLayout","grids","blocks","image"]},{"type":"image","label":"Related Image","name":"relatedImage","uploadDir":{"namespace":["page","beforeBody","GridLayout","grids","blocks","relatedImage","uploadDir"]},"namespace":["employment","_body","GridLayout","grids","blocks","relatedImage"]},{"type":"rich-text","name":"linkContent","label":"Link Content","templates":[{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["employment","afterBody","GridLayout","grids","blocks","linkContent","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["employment","afterBody","GridLayout","grids","blocks","linkContent","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["employment","afterBody","GridLayout","grids","blocks","linkContent","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["employment","afterBody","GridLayout","grids","blocks","linkContent","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["employment","afterBody","GridLayout","grids","blocks","linkContent","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["employment","afterBody","GridLayout","grids","blocks","linkContent","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["employment","afterBody","GridLayout","grids","blocks","linkContent","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["employment","afterBody","GridLayout","grids","blocks","linkContent","UtilityButton","openInNewTab"]}],"namespace":["employment","benefitsBody","GridLayout","grids","blocks","linkContent","UtilityButton"]}],"namespace":["employment","_body","GridLayout","grids","blocks","linkContent"]}],"namespace":["employment","booking","bookingBody","GridLayout","grids","blocks"]}],"namespace":["videoProduction","afterBody","GridLayout","grids"],"searchable":true,"uid":false}],"namespace":["videoProduction","afterBody","GridLayout"]},{"name":"Hero","label":"Hero","ui":{"previewSrc":"/blocks/hero.png","defaultItem":{"tagline":"Here's some text above the other text","headline":"This Big Text is Totally Awesome","text":"Phasellus scelerisque, libero eu finibus rutrum, risus risus accumsan libero, nec molestie urna dui a leo."}},"fields":[{"type":"string","label":"Tagline","name":"tagline","namespace":["videoProduction","afterBody","Hero","tagline"],"searchable":true,"uid":false},{"type":"string","label":"Headline","name":"headline","namespace":["videoProduction","afterBody","Hero","headline"],"searchable":true,"uid":false},{"label":"Text","name":"text","type":"rich-text","namespace":["videoProduction","afterBody","Hero","text"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"label":"Actions","name":"actions","type":"object","list":true,"ui":{"defaultItem":{"label":"Action Label","type":"button","icon":true,"link":"/"}},"fields":[{"label":"Label","name":"label","type":"string","namespace":["employment","booking","bookingBody","Hero","actions","label"]},{"label":"Type","name":"type","type":"string","options":[{"label":"Button","value":"button"},{"label":"Link","value":"link"}],"namespace":["employment","booking","bookingBody","Hero","actions","type"]},{"label":"Icon","name":"icon","type":"boolean","namespace":["employment","booking","bookingBody","Hero","actions","icon"]},{"label":"Link","name":"link","type":"string","namespace":["employment","booking","bookingBody","Hero","actions","link"]}],"namespace":["videoProduction","afterBody","Hero","actions"],"searchable":true,"uid":false},{"type":"object","label":"Image","name":"image","fields":[{"name":"src","label":"Image Source","type":"image","namespace":["employment","booking","bookingBody","Hero","image","src"]},{"name":"alt","label":"Alt Text","type":"string","namespace":["employment","booking","bookingBody","Hero","image","alt"]}],"namespace":["videoProduction","afterBody","Hero","image"],"searchable":true,"uid":false},{"type":"string","label":"Color","name":"color","options":[{"label":"Default","value":"default"},{"label":"Tint","value":"tint"},{"label":"Primary","value":"primary"}],"namespace":["videoProduction","afterBody","Hero","color"],"searchable":true,"uid":false}],"namespace":["videoProduction","afterBody","Hero"]},{"name":"HorizontalCard","label":"Horizontal Card","ui":{"previewSrc":"/images/thumbs/tina/horizontal-card.jpg"},"fields":[{"type":"object","label":"Cards","name":"cardList","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","booking","bookingBody","HorizontalCard","cardList","title"]},{"type":"rich-text","label":"Content","name":"content","namespace":["employment","booking","bookingBody","HorizontalCard","cardList","content"]},{"type":"image","label":"Thumbnail","name":"thumbnail","uploadDir":{"namespace":["page","beforeBody","HorizontalCard","cardList","thumbnail","uploadDir"]},"namespace":["employment","booking","bookingBody","HorizontalCard","cardList","thumbnail"]},{"type":"string","label":"Link","name":"link","namespace":["employment","booking","bookingBody","HorizontalCard","cardList","link"]}],"namespace":["videoProduction","afterBody","HorizontalCard","cardList"],"searchable":true,"uid":false},{"type":"object","label":"Button","name":"button","fields":[{"type":"string","label":"Text","name":"text","namespace":["employment","booking","bookingBody","HorizontalCard","button","text"]},{"type":"string","label":"Link","name":"link","namespace":["employment","booking","bookingBody","HorizontalCard","button","link"]}],"namespace":["videoProduction","afterBody","HorizontalCard","button"],"searchable":true,"uid":false}],"namespace":["videoProduction","afterBody","HorizontalCard"]},{"name":"InternalCarousel","label":"Internal Carousel","ui":{"previewSrc":"/images/thumbs/tina/internal-carousel.jpg"},"fields":[{"label":"Images","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Image description"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["employment","booking","bookingBody","InternalCarousel","items","label"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","InternalCarousel","items","imgSrc","uploadDir"]},"namespace":["employment","booking","bookingBody","InternalCarousel","items","imgSrc"]}],"namespace":["videoProduction","afterBody","InternalCarousel","items"],"searchable":true,"uid":false},{"type":"string","label":"Header","name":"header","namespace":["videoProduction","afterBody","InternalCarousel","header"],"searchable":true,"uid":false},{"type":"rich-text","label":"Text","name":"paragraph","isBody":false,"namespace":["videoProduction","afterBody","InternalCarousel","paragraph"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Website","name":"website","namespace":["videoProduction","afterBody","InternalCarousel","website"],"searchable":true,"uid":false},{"type":"object","label":"Technologies","name":"technologies","list":true,"ui":{},"fields":[{"type":"string","label":"Name","name":"name","namespace":["employment","booking","bookingBody","InternalCarousel","technologies","name"]}],"namespace":["videoProduction","afterBody","InternalCarousel","technologies"],"searchable":true,"uid":false},{"type":"string","label":"Case Study","name":"caseStudyUrl","namespace":["videoProduction","afterBody","InternalCarousel","caseStudyUrl"],"searchable":true,"uid":false},{"type":"string","label":"Video URL","name":"videoUrl","namespace":["videoProduction","afterBody","InternalCarousel","videoUrl"],"searchable":true,"uid":false}],"namespace":["videoProduction","afterBody","InternalCarousel"]},{"label":"Join As Presenter","name":"joinAsPresenter","fields":[{"label":"Learn More Link","name":"link","type":"string","namespace":["videoProduction","afterBody","joinAsPresenter","link"],"searchable":true,"uid":false},{"label":"Image","name":"img","type":"image","namespace":["videoProduction","afterBody","joinAsPresenter","img"],"searchable":false,"uid":false}],"namespace":["videoProduction","afterBody","joinAsPresenter"]},{"label":"Join Github","name":"joinGithub","ui":{"previewSrc":"/images/thumbs/tina/join-github.jpg"},"fields":[{"label":"Title","name":"title","type":"string","namespace":["videoProduction","afterBody","joinGithub","title"],"searchable":true,"uid":false},{"label":"Join Github Link","name":"link","type":"string","namespace":["videoProduction","afterBody","joinGithub","link"],"searchable":true,"uid":false}],"namespace":["videoProduction","afterBody","joinGithub"]},{"name":"JotFormEmbed","label":"JotForm Embed","ui":{"previewSrc":"/images/thumbs/tina/jotform-embed.jpg"},"fields":[{"type":"string","name":"jotFormId","label":"JotForm Id","required":true,"namespace":["videoProduction","afterBody","JotFormEmbed","jotFormId"],"searchable":true,"uid":false},{"type":"string","label":"Button Text","name":"buttonText","namespace":["videoProduction","afterBody","JotFormEmbed","buttonText"],"searchable":true,"uid":false},{"type":"string","name":"containerClass","label":"Container Class","namespace":["videoProduction","afterBody","JotFormEmbed","containerClass"],"searchable":true,"uid":false},{"type":"string","label":"Button Class","name":"buttonClass","namespace":["videoProduction","afterBody","JotFormEmbed","buttonClass"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","namespace":["videoProduction","afterBody","JotFormEmbed","animated"],"searchable":true,"uid":false}],"namespace":["videoProduction","afterBody","JotFormEmbed"]},{"name":"LatestTech","label":"Latest Tech","ui":{"previewSrc":"/images/thumbs/tina/latest-tech.jpg"},"fields":[{"type":"reference","description":"Select a config file including a set of badges","collections":["userGroupGlobal"],"label":"Badges","name":"badges","namespace":["videoProduction","afterBody","LatestTech","badges"],"searchable":true,"uid":false}],"namespace":["videoProduction","afterBody","LatestTech"]},{"name":"LocationBlock","label":"Locations","ui":{"previewSrc":"/images/thumbs/tina/locations.jpg"},"fields":[{"type":"string","name":"title","label":"Title","namespace":["videoProduction","afterBody","LocationBlock","title"],"searchable":true,"uid":false},{"type":"object","label":"Location List","name":"locationList","list":true,"ui":{},"fields":[{"type":"reference","collections":["locations"],"label":"Location","name":"location","namespace":["employment","booking","bookingBody","LocationBlock","locationList","location"]}],"namespace":["videoProduction","afterBody","LocationBlock","locationList"],"searchable":true,"uid":false},{"type":"object","name":"chapelWebsite","label":"Chapel Website","fields":[{"type":"string","name":"title","label":"Text","namespace":["employment","booking","bookingBody","LocationBlock","chapelWebsite","title"]},{"type":"string","name":"URL","label":"URL","namespace":["employment","booking","bookingBody","LocationBlock","chapelWebsite","URL"]}],"namespace":["videoProduction","afterBody","LocationBlock","chapelWebsite"],"searchable":true,"uid":false}],"namespace":["videoProduction","afterBody","LocationBlock"]},{"name":"NewslettersTable","label":"Newsletters Table","ui":{"previewSrc":"/images/thumbs/tina/newsletters-table.jpg"},"fields":[{"type":"string","label":"Header text","name":"headerText","namespace":["videoProduction","afterBody","NewslettersTable","headerText"],"searchable":true,"uid":false}],"namespace":["videoProduction","afterBody","NewslettersTable"]},{"label":"Organizer","name":"organizer","fields":[{"type":"image","label":"Profile Image","name":"profileImg","namespace":["videoProduction","afterBody","organizer","profileImg"],"searchable":false,"uid":false},{"type":"string","label":"Profile Link","name":"profileLink","namespace":["videoProduction","afterBody","organizer","profileLink"],"searchable":true,"uid":false},{"type":"string","label":"Name","name":"name","namespace":["videoProduction","afterBody","organizer","name"],"searchable":true,"uid":false},{"type":"string","label":"Position","name":"position","namespace":["videoProduction","afterBody","organizer","position"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","namespace":["videoProduction","afterBody","organizer","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["videoProduction","afterBody","organizer"]},{"label":"Payment Block","name":"paymentBlock","ui":{"previewSrc":"/images/thumbs/tina/payment-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["videoProduction","afterBody","paymentBlock","title"],"searchable":true,"uid":false},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["videoProduction","afterBody","paymentBlock","subTitle"],"searchable":true,"uid":false},{"type":"reference","label":"Payment Links","name":"payments","collections":["paymentDetails"],"namespace":["videoProduction","afterBody","paymentBlock","payments"],"searchable":true,"uid":false},{"type":"rich-text","label":"Footer","name":"footer","namespace":["videoProduction","afterBody","paymentBlock","footer"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"image","label":"Credit Cards Image","name":"creditImgSrc","namespace":["videoProduction","afterBody","paymentBlock","creditImgSrc"],"searchable":false,"uid":false},{"type":"string","label":"Alt Text","name":"altTxt","namespace":["videoProduction","afterBody","paymentBlock","altTxt"],"searchable":true,"uid":false}],"namespace":["videoProduction","afterBody","paymentBlock"]},{"name":"PresenterBlock","label":"Presenters","ui":{"previewSrc":"/images/thumbs/tina/presenters.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["videoProduction","afterBody","PresenterBlock","header"],"searchable":true,"uid":false},{"type":"object","name":"presenterList","label":"Presenters","list":true,"ui":{},"fields":[{"type":"reference","name":"presenter","label":"Presenters","collections":["presenter"],"namespace":["employment","booking","bookingBody","PresenterBlock","presenterList","presenter"]}],"namespace":["videoProduction","afterBody","PresenterBlock","presenterList"],"searchable":true,"uid":false},{"type":"object","label":"Other Events","name":"otherEvent","fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","booking","bookingBody","PresenterBlock","otherEvent","title"]},{"type":"string","label":"URL","name":"eventURL","namespace":["employment","booking","bookingBody","PresenterBlock","otherEvent","eventURL"]}],"namespace":["videoProduction","afterBody","PresenterBlock","otherEvent"],"searchable":true,"uid":false}],"namespace":["videoProduction","afterBody","PresenterBlock"]},{"label":"Recurring Event","name":"RecurringEvent","ui":{"previewSrc":"/images/thumbs/tina/recurring-event.jpg"},"fields":[{"type":"string","label":"Apply Link Redirect","name":"applyLinkRedirect","namespace":["videoProduction","afterBody","RecurringEvent","applyLinkRedirect"],"searchable":true,"uid":false},{"type":"string","label":"Day","name":"day","options":[{"label":"Monday","value":"monday"},{"label":"Tuesday","value":"tuesday"},{"label":"Wednesday","value":"wednesday"},{"label":"Thursday","value":"thursday"},{"label":"Friday","value":"friday"},{"label":"Saturday","value":"saturday"},{"label":"Sunday","value":"sunday"}],"required":true,"namespace":["videoProduction","afterBody","RecurringEvent","day"],"searchable":true,"uid":false}],"namespace":["videoProduction","afterBody","RecurringEvent"]},{"name":"SectionHeader","label":"Section Header","ui":{"previewSrc":"/images/thumbs/tina/section-header.jpg"},"fields":[{"type":"string","label":"Header Text","name":"headerText","namespace":["videoProduction","afterBody","SectionHeader","headerText"],"searchable":true,"uid":false}],"namespace":["videoProduction","afterBody","SectionHeader"]},{"name":"ServiceCards","label":"Service Cards","ui":{"previewSrc":"/images/thumbs/tina/services-cards.jpg"},"fields":[{"type":"string","label":"Big Cards Label","name":"bigCardsLabel","namespace":["videoProduction","afterBody","ServiceCards","bigCardsLabel"],"searchable":true,"uid":false},{"label":"Big Cards","name":"bigCards","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","booking","bookingBody","ServiceCards","bigCards","title"]},{"type":"string","label":"Description","component":"textarea","name":"description","namespace":["employment","booking","bookingBody","ServiceCards","bigCards","description"]},{"type":"string","label":"URL","name":"link","namespace":["employment","booking","bookingBody","ServiceCards","bigCards","link"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Red","value":"red"},{"label":"Light Gray","value":"lightgray"},{"label":"Medium Gray","value":"mediumgray"},{"label":"Dark Gray","value":"darkgray"}],"namespace":["employment","booking","bookingBody","ServiceCards","bigCards","color"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","ServiceCards","bigCards","imgSrc","uploadDir"]},"namespace":["employment","booking","bookingBody","ServiceCards","bigCards","imgSrc"]}],"namespace":["videoProduction","afterBody","ServiceCards","bigCards"],"searchable":true,"uid":false},{"type":"string","label":"Small Cards Label","name":"smallCardsLabel","namespace":["videoProduction","afterBody","ServiceCards","smallCardsLabel"],"searchable":true,"uid":false},{"label":"Small Cards","name":"smallCards","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","booking","bookingBody","ServiceCards","smallCards","title"]},{"type":"string","label":"URL","name":"link","namespace":["employment","booking","bookingBody","ServiceCards","smallCards","link"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Red","value":"red"},{"label":"Light Gray","value":"lightgray"},{"label":"Medium Gray","value":"mediumgray"},{"label":"Dark Gray","value":"darkgray"}],"namespace":["employment","booking","bookingBody","ServiceCards","smallCards","color"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","ServiceCards","smallCards","imgSrc","uploadDir"]},"namespace":["employment","booking","bookingBody","ServiceCards","smallCards","imgSrc"]},{"type":"boolean","label":"External Page","description":"Select this if the link is not part of the website. This includes SSW.Rules, and SSW.People links","name":"isExternal","namespace":["employment","booking","bookingBody","ServiceCards","smallCards","isExternal"]}],"namespace":["videoProduction","afterBody","ServiceCards","smallCards"],"searchable":true,"uid":false},{"label":"Links","name":"links","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["employment","booking","bookingBody","ServiceCards","links","label"]},{"type":"string","label":"URL","name":"link","namespace":["employment","booking","bookingBody","ServiceCards","links","link"]}],"namespace":["videoProduction","afterBody","ServiceCards","links"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["videoProduction","afterBody","ServiceCards","backgroundColor"],"searchable":true,"uid":false}],"namespace":["videoProduction","afterBody","ServiceCards"]},{"label":"Table Layout","name":"TableLayout","ui":{"previewSrc":"/images/thumbs/tina/table-layout.jpg"},"fields":[{"label":"Table Style","name":"tableStyle","type":"string","options":["none","basicBorder","styled","benefits"],"namespace":["videoProduction","afterBody","TableLayout","tableStyle"],"searchable":true,"uid":false},{"label":"First column bolded + left aligned","name":"firstColBold","type":"boolean","required":false,"namespace":["videoProduction","afterBody","TableLayout","firstColBold"],"searchable":true,"uid":false},{"type":"string","label":"Table Headers","name":"headers","list":true,"namespace":["videoProduction","afterBody","TableLayout","headers"],"searchable":true,"uid":false},{"type":"object","label":"Rows","name":"rows","list":true,"fields":[{"type":"object","label":"Cells","name":"cells","list":true,"fields":[{"type":"string","label":"Value","name":"cellValue","required":true,"component":{"namespace":["page","beforeBody","TableLayout","rows","cells","cellValue",""]},"namespace":["employment","_body","TableLayout","rows","cells","cellValue"]}],"ui":{},"namespace":["employment","booking","bookingBody","TableLayout","rows","cells"]},{"type":"boolean","label":"Is Heading","name":"isHeader","required":false,"namespace":["employment","booking","bookingBody","TableLayout","rows","isHeader"]}],"ui":{},"namespace":["videoProduction","afterBody","TableLayout","rows"],"searchable":true,"uid":false}],"namespace":["videoProduction","afterBody","TableLayout"]},{"name":"TestimonialsList","label":"Testimonials List","ui":{"previewSrc":"/images/thumbs/tina/testimonials.jpg"},"fields":[{"type":"object","label":"Exclude Categories","name":"excludedCategories","ui":{},"list":true,"fields":[{"type":"reference","label":"Category Name","name":"categoryName","collections":["testimonialCategories"],"namespace":["employment","booking","bookingBody","TestimonialsList","excludedCategories","categoryName"]}],"namespace":["videoProduction","afterBody","TestimonialsList","excludedCategories"],"searchable":true,"uid":false}],"namespace":["videoProduction","afterBody","TestimonialsList"]},{"label":"Training Information","name":"TrainingInformation","ui":{"previewSrc":"/images/thumbs/tina/training-information.jpg"},"fields":[{"type":"object","label":"Training Information Items","name":"trainingInformationItems","list":true,"fields":[{"type":"string","label":"Header","name":"header","namespace":["employment","booking","bookingBody","TrainingInformation","trainingInformationItems","header"]},{"type":"rich-text","label":"Body","name":"body","templates":[{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["employment","benefitsBody","TrainingInformation","trainingInformationItems","body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["employment","benefitsBody","TrainingInformation","trainingInformationItems","body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["employment","benefitsBody","TrainingInformation","trainingInformationItems","body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["employment","benefitsBody","TrainingInformation","trainingInformationItems","body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["employment","benefitsBody","TrainingInformation","trainingInformationItems","body","VerticalListItem","afterBody"]}],"namespace":["employment","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem"]},{"label":"Recurring Event","name":"RecurringEvent","ui":{"previewSrc":"/images/thumbs/tina/recurring-event.jpg"},"fields":[{"type":"string","label":"Apply Link Redirect","name":"applyLinkRedirect","namespace":["employment","benefitsBody","TrainingInformation","trainingInformationItems","body","RecurringEvent","applyLinkRedirect"]},{"type":"string","label":"Day","name":"day","options":[{"label":"Monday","value":"monday"},{"label":"Tuesday","value":"tuesday"},{"label":"Wednesday","value":"wednesday"},{"label":"Thursday","value":"thursday"},{"label":"Friday","value":"friday"},{"label":"Saturday","value":"saturday"},{"label":"Sunday","value":"sunday"}],"required":true,"namespace":["employment","benefitsBody","TrainingInformation","trainingInformationItems","body","RecurringEvent","day"]}],"namespace":["employment","_body","TrainingInformation","trainingInformationItems","body","RecurringEvent"]}],"namespace":["employment","booking","bookingBody","TrainingInformation","trainingInformationItems","body"]}],"namespace":["videoProduction","afterBody","TrainingInformation","trainingInformationItems"],"searchable":true,"uid":false}],"namespace":["videoProduction","afterBody","TrainingInformation"]},{"label":"Training Learning Outcomes","name":"TrainingLearningOutcome","ui":{"previewSrc":"/images/thumbs/tina/training-learning-outcomes.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["videoProduction","afterBody","TrainingLearningOutcome","header"],"searchable":true,"uid":false},{"type":"object","label":"List Items","name":"listItems","list":true,"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","booking","bookingBody","TrainingLearningOutcome","listItems","title"]},{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["employment","booking","bookingBody","TrainingLearningOutcome","listItems","content"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","TrainingLearningOutcome","listItems","icon","uploadDir"]},"namespace":["employment","booking","bookingBody","TrainingLearningOutcome","listItems","icon"]}],"namespace":["videoProduction","afterBody","TrainingLearningOutcome","listItems"],"searchable":true,"uid":false}],"namespace":["videoProduction","afterBody","TrainingLearningOutcome"]},{"label":"Tweet Embed","name":"TweetEmbed","ui":{"previewSrc":"/images/thumbs/tina/tweet-embed.jpg"},"fields":[{"type":"string","name":"url","label":"Tweet URL","required":true,"namespace":["videoProduction","afterBody","TweetEmbed","url"],"searchable":true,"uid":false}],"namespace":["videoProduction","afterBody","TweetEmbed"]},{"name":"UpcomingEvents","label":"Upcoming Events","ui":{"previewSrc":"/images/thumbs/tina/upcoming-events.jpg","defaultItem":{"title":"Upcoming Events","numberOfEvents":30}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["videoProduction","afterBody","UpcomingEvents","title"],"searchable":true,"uid":false},{"type":"number","label":"Number of Events","name":"numberOfEvents","namespace":["videoProduction","afterBody","UpcomingEvents","numberOfEvents"],"searchable":true,"uid":false}],"namespace":["videoProduction","afterBody","UpcomingEvents"]},{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["videoProduction","afterBody","UtilityButton","buttonText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"link","required":false,"namespace":["videoProduction","afterBody","UtilityButton","link"],"searchable":true,"uid":false},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["videoProduction","afterBody","UtilityButton","size"],"searchable":true,"uid":false},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["videoProduction","afterBody","UtilityButton","btnIcon"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["videoProduction","afterBody","UtilityButton","animated"],"searchable":true,"uid":false},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["videoProduction","afterBody","UtilityButton","uncentered"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["videoProduction","afterBody","UtilityButton","removeTopMargin"],"searchable":true,"uid":false},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["videoProduction","afterBody","UtilityButton","openInNewTab"],"searchable":true,"uid":false}],"namespace":["videoProduction","afterBody","UtilityButton"]},{"name":"VerticalImageLayout","label":"Vertical Image Layout","fields":[{"type":"image","label":"Image","name":"imageSrc","uploadDir":{"namespace":["page","beforeBody","VerticalImageLayout","imageSrc","uploadDir"]},"namespace":["videoProduction","afterBody","VerticalImageLayout","imageSrc"],"searchable":false,"uid":false},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["videoProduction","afterBody","VerticalImageLayout","altText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"imageLink","namespace":["videoProduction","afterBody","VerticalImageLayout","imageLink"],"searchable":true,"uid":false},{"type":"number","label":"Height","name":"height","required":true,"namespace":["videoProduction","afterBody","VerticalImageLayout","height"],"searchable":true,"uid":false},{"type":"number","label":"Width","name":"width","required":true,"namespace":["videoProduction","afterBody","VerticalImageLayout","width"],"searchable":true,"uid":false},{"type":"rich-text","label":"Message","name":"message","required":true,"namespace":["videoProduction","afterBody","VerticalImageLayout","message"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["videoProduction","afterBody","VerticalImageLayout","sizes"],"searchable":true,"uid":false}],"namespace":["videoProduction","afterBody","VerticalImageLayout"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["videoProduction","afterBody","VerticalListItem","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"number","label":"Index number","name":"index","namespace":["videoProduction","afterBody","VerticalListItem","index"],"searchable":true,"uid":false},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["videoProduction","afterBody","VerticalListItem","icon"],"searchable":false,"uid":false},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["videoProduction","afterBody","VerticalListItem","iconScale"],"searchable":true,"uid":false},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["videoProduction","afterBody","VerticalListItem","afterBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["videoProduction","afterBody","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["videoProduction","afterBody","VideoEmbed","url"],"searchable":true,"uid":false},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["videoProduction","afterBody","VideoEmbed","videoWidth"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["videoProduction","afterBody","VideoEmbed","removeMargin"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["videoProduction","afterBody","VideoEmbed","uncentre"],"searchable":true,"uid":false},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["videoProduction","afterBody","VideoEmbed","overflow"],"searchable":true,"uid":false},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["videoProduction","afterBody","VideoEmbed","caption"],"searchable":true,"uid":false},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["videoProduction","afterBody","VideoEmbed","duration"],"searchable":true,"uid":false}],"namespace":["videoProduction","afterBody","VideoEmbed"]},{"name":"InlineJotForm","label":"In-line JotForm","ui":{"previewSrc":"/images/thumbs/tina/inline-jot-form.jpg"},"fields":[{"type":"string","name":"title","label":"Title","description":"Optional title for JotForm","namespace":["videoProduction","afterBody","InlineJotForm","title"],"searchable":true,"uid":false},{"type":"string","name":"jotFormId","label":"JotForm ID","required":true,"namespace":["videoProduction","afterBody","InlineJotForm","jotFormId"],"searchable":true,"uid":false},{"type":"string","name":"additionalClasses","label":"Additional classnames","description":"Optional styling for iframe element only","namespace":["videoProduction","afterBody","InlineJotForm","additionalClasses"],"searchable":true,"uid":false}],"namespace":["videoProduction","afterBody","InlineJotForm"]}],"namespace":["videoProduction","afterBody"],"searchable":true,"uid":false}],"namespace":["videoProduction"]},{"label":"Consulting - Categories","name":"consultingCategory","path":"content/consulting/category","format":"json","ui":{"global":true},"fields":[{"type":"string","label":"Name","name":"name","namespace":["consultingCategory","name"],"searchable":true,"uid":false}],"namespace":["consultingCategory"]},{"label":"Consulting - Tags","name":"consultingTag","path":"content/consulting/tag","format":"json","ui":{"global":true},"fields":[{"type":"string","label":"Name","name":"name","namespace":["consultingTag","name"],"searchable":true,"uid":false}],"namespace":["consultingTag"]},{"label":"Consulting - Technology Cards","name":"technologies","format":"mdx","path":"content/technologies","fields":[{"type":"string","name":"tip","label":"Tip","ui":{},"namespace":["technologies","tip"],"searchable":true,"uid":false},{"type":"string","label":"Name","name":"name","isTitle":true,"required":true,"namespace":["technologies","name"],"searchable":true,"uid":false},{"type":"string","label":"Read More Slug","name":"readMoreSlug","namespace":["technologies","readMoreSlug"],"searchable":true,"uid":false},{"type":"image","label":"Thumbnail","name":"thumbnail","uploadDir":{"namespace":["technologies","thumbnail","uploadDir"]},"namespace":["technologies","thumbnail"],"searchable":false,"uid":false},{"type":"rich-text","label":"Body","name":"body","isBody":true,"namespace":["technologies","body"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["technologies"]},{"label":"Employment - Index","name":"employment","format":"mdx","path":"content/employment","ui":{},"fields":[{"type":"string","name":"tip","label":"Tip","ui":{},"namespace":["employment","tip"],"searchable":true,"uid":false},{"type":"object","label":"SEO Values","name":"seo","fields":[{"type":"string","label":"Title (70 characters)","name":"title","ui":{},"namespace":["employment","seo","title"],"searchable":true,"uid":false},{"type":"string","label":"Description (150 characters)","name":"description","component":"textarea","ui":{},"namespace":["employment","seo","description"],"searchable":true,"uid":false},{"type":"string","label":"Canonical URL","name":"canonical","namespace":["employment","seo","canonical"],"searchable":true,"uid":false},{"type":"boolean","name":"showBreadcrumb","label":"Show Breadcrumb","namespace":["employment","seo","showBreadcrumb"],"searchable":true,"uid":false},{"label":"Images","name":"images","list":true,"type":"object","ui":{"defaultItem":{"url":"/images/ssw-default-og.jpg","width":1200,"height":630,"alt":"SSW Consulting - Enterprise Software Development"}},"fields":[{"type":"image","label":"Image Url","name":"url","require":true,"namespace":["eventsIndex","seo","images","url"],"searchable":false,"uid":false},{"type":"number","label":"Width (px)","name":"width","namespace":["eventsIndex","seo","images","width"],"searchable":true,"uid":false},{"type":"number","label":"Height (px)","name":"height","namespace":["eventsIndex","seo","images","height"],"searchable":true,"uid":false},{"type":"string","label":"Image Alt Text","name":"alt","namespace":["eventsIndex","seo","images","alt"],"searchable":true,"uid":false}],"namespace":["employment","seo","images"],"searchable":true,"uid":false}],"namespace":["employment","seo"],"searchable":true,"uid":false},{"type":"object","label":"Booking","name":"booking","fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","booking","title"],"searchable":true,"uid":false},{"type":"string","label":"Subtitle","name":"subTitle","namespace":["employment","booking","subTitle"],"searchable":true,"uid":false},{"type":"rich-text","label":"Booking body","name":"bookingBody","templates":[{"name":"AboutUs","label":"About Us","ui":{"previewSrc":"/images/thumbs/tina/about-us.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["employment","booking","bookingBody","AboutUs","backgroundColor"],"searchable":true,"uid":false},{"type":"boolean","label":"Show Map","name":"showMap","required":false,"namespace":["employment","booking","bookingBody","AboutUs","showMap"],"searchable":true,"uid":false}],"namespace":["employment","booking","bookingBody","AboutUs"]},{"label":"Agenda","name":"Agenda","ui":{"previewSrc":"/images/thumbs/tina/agenda.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["employment","booking","bookingBody","Agenda","header"],"searchable":true,"uid":false},{"type":"string","label":"Header Color","name":"textColor","options":[{"label":"Red","value":"red"},{"label":"Gray","value":"gray"},{"label":"Default","value":"default"}],"namespace":["employment","booking","bookingBody","Agenda","textColor"],"searchable":true,"uid":false},{"type":"object","label":"Agenda Items","name":"agendaItemList","ui":{},"list":true,"fields":[{"type":"string","label":"Placeholder Text","name":"placeholder","namespace":["employment","_body","Agenda","agendaItemList","placeholder"]},{"type":"rich-text","label":"Body","name":"body","templates":[{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["employment","afterBody","Agenda","agendaItemList","body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["employment","afterBody","Agenda","agendaItemList","body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["employment","afterBody","Agenda","agendaItemList","body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["employment","afterBody","Agenda","agendaItemList","body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["employment","afterBody","Agenda","agendaItemList","body","VerticalListItem","afterBody"]}],"namespace":["employment","benefitsBody","Agenda","agendaItemList","body","VerticalListItem"]}],"namespace":["employment","_body","Agenda","agendaItemList","body"]}],"namespace":["employment","booking","bookingBody","Agenda","agendaItemList"],"searchable":true,"uid":false}],"namespace":["employment","booking","bookingBody","Agenda"]},{"label":"Agreement Form","name":"AgreementForm","ui":{"previewSrc":"/images/thumbs/tina/agreement-form.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["employment","booking","bookingBody","AgreementForm","backgroundColor"],"searchable":true,"uid":false},{"type":"object","label":"Form fields","name":"fields","list":true,"fields":[{"type":"string","label":"ID","name":"id","required":true,"namespace":["employment","_body","AgreementForm","fields","id"]},{"type":"string","label":"Label","name":"label","required":true,"namespace":["employment","_body","AgreementForm","fields","label"]},{"type":"string","label":"Placeholder","name":"placeholder","namespace":["employment","_body","AgreementForm","fields","placeholder"]},{"type":"boolean","label":"Resizeable","name":"resizeable","required":true,"namespace":["employment","_body","AgreementForm","fields","resizeable"]}],"namespace":["employment","booking","bookingBody","AgreementForm","fields"],"searchable":true,"uid":false}],"namespace":["employment","booking","bookingBody","AgreementForm"]},{"label":"Interest Form","name":"InterestForm","ui":{"previewSrc":"/images/thumbs/tina/interest-form.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["employment","booking","bookingBody","InterestForm","buttonText"],"searchable":true,"uid":false}],"namespace":["employment","booking","bookingBody","InterestForm"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["employment","booking","bookingBody","BookingButton","buttonText"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","namespace":["employment","booking","bookingBody","BookingButton","animated"],"searchable":true,"uid":false},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["employment","booking","bookingBody","BookingButton","buttonSubtitle"],"searchable":true,"uid":false}],"namespace":["employment","booking","bookingBody","BookingButton"]},{"name":"BuiltOnAzure","label":"Built on Azure","ui":{"previewSrc":"/images/thumbs/tina/built-on-azure.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["employment","booking","bookingBody","BuiltOnAzure","backgroundColor"],"searchable":true,"uid":false}],"namespace":["employment","booking","bookingBody","BuiltOnAzure"]},{"name":"Carousel","label":"Carousel","ui":{"previewSrc":"/images/thumbs/tina/carousel.jpg"},"fields":[{"label":"Items","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Item description","link":"/","openIn":"sameWindow"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["employment","_body","Carousel","items","label"]},{"type":"string","label":"URL","name":"link","description":"If link contains ssw.com.au, you can skip the full URL and just use the path. e.g. /services","namespace":["employment","_body","Carousel","items","link"]},{"type":"string","label":"Open in","name":"openIn","description":"If it is external link, please select 'New window' option.","options":[{"label":"Same window","value":"sameWindow"},{"label":"Modal","value":"modal"},{"label":"New window","value":"newWindow"}],"namespace":["employment","_body","Carousel","items","openIn"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","Carousel","items","imgSrc","uploadDir"]},"namespace":["employment","_body","Carousel","items","imgSrc"]}],"namespace":["employment","booking","bookingBody","Carousel","items"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["employment","booking","bookingBody","Carousel","backgroundColor"],"searchable":true,"uid":false},{"type":"number","label":"Delay (Seconds)","name":"delay","required":true,"namespace":["employment","booking","bookingBody","Carousel","delay"],"searchable":true,"uid":false},{"type":"boolean","label":"Show on mobile devices","name":"showOnMobileDevices","namespace":["employment","booking","bookingBody","Carousel","showOnMobileDevices"],"searchable":true,"uid":false}],"namespace":["employment","booking","bookingBody","Carousel"]},{"name":"Citation","label":"Citation","fields":[{"type":"string","label":"author","name":"author","namespace":["employment","booking","bookingBody","Citation","author"],"searchable":true,"uid":false},{"type":"string","label":"article","name":"article","required":true,"namespace":["employment","booking","bookingBody","Citation","article"],"searchable":true,"uid":false}],"namespace":["employment","booking","bookingBody","Citation"]},{"label":"Client List","name":"ClientList","ui":{"previewSrc":"/images/thumbs/tina/clients-list.jpg"},"fields":[{"type":"object","name":"categories","label":"Categories","list":true,"fields":[{"type":"reference","name":"category","label":"Category","collections":["clientCategories"],"namespace":["employment","_body","ClientList","categories","category"]}],"ui":{},"namespace":["employment","booking","bookingBody","ClientList","categories"],"searchable":true,"uid":false},{"type":"object","name":"clients","label":"Clients list","list":true,"ui":{"previewSrc":"/images/thumbs/tina/clients-list.jpg"},"fields":[{"type":"string","name":"name","label":"Name","namespace":["employment","_body","ClientList","clients","name"]},{"type":"image","name":"logo","label":"Logo","namespace":["employment","_body","ClientList","clients","logo"]},{"type":"string","name":"logoUrl","label":"Logo URL","namespace":["employment","_body","ClientList","clients","logoUrl"]},{"type":"rich-text","name":"content","label":"Content","templates":[{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["employment","afterBody","ClientList","clients","content","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["employment","afterBody","ClientList","clients","content","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["employment","afterBody","ClientList","clients","content","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["employment","afterBody","ClientList","clients","content","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["employment","afterBody","ClientList","clients","content","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["employment","afterBody","ClientList","clients","content","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["employment","afterBody","ClientList","clients","content","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["employment","afterBody","ClientList","clients","content","UtilityButton","openInNewTab"]}],"namespace":["employment","benefitsBody","ClientList","clients","content","UtilityButton"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["employment","afterBody","ClientList","clients","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["employment","afterBody","ClientList","clients","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["employment","afterBody","ClientList","clients","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["employment","afterBody","ClientList","clients","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["employment","afterBody","ClientList","clients","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["employment","afterBody","ClientList","clients","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["employment","afterBody","ClientList","clients","content","VideoEmbed","duration"]}],"namespace":["employment","benefitsBody","ClientList","clients","content","VideoEmbed"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["employment","afterBody","ClientList","clients","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","afterBody","ClientList","clients","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["employment","afterBody","ClientList","clients","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","afterBody","ClientList","clients","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","afterBody","ClientList","clients","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["employment","afterBody","ClientList","clients","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["employment","afterBody","ClientList","clients","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["employment","afterBody","ClientList","clients","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["employment","afterBody","ClientList","clients","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","afterBody","ClientList","clients","content","CustomImage","sizes"]}],"namespace":["employment","benefitsBody","ClientList","clients","content","CustomImage"]},{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["employment","afterBody","ClientList","clients","content","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["employment","afterBody","ClientList","clients","content","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["employment","callToActionBody","ClientList","clients","content","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","callToActionBody","ClientList","clients","content","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["employment","callToActionBody","ClientList","clients","content","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","callToActionBody","ClientList","clients","content","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","callToActionBody","ClientList","clients","content","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["employment","callToActionBody","ClientList","clients","content","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["employment","callToActionBody","ClientList","clients","content","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["employment","callToActionBody","ClientList","clients","content","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["employment","callToActionBody","ClientList","clients","content","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","callToActionBody","ClientList","clients","content","ContentCard","content","CustomImage","sizes"]}],"namespace":["employment","opportunitiesBody","ClientList","clients","content","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["employment","callToActionBody","ClientList","clients","content","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["employment","callToActionBody","ClientList","clients","content","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["employment","callToActionBody","ClientList","clients","content","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["employment","callToActionBody","ClientList","clients","content","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["employment","callToActionBody","ClientList","clients","content","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["employment","opportunitiesBody","ClientList","clients","content","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["employment","callToActionBody","ClientList","clients","content","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["employment","callToActionBody","ClientList","clients","content","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["employment","callToActionBody","ClientList","clients","content","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["employment","callToActionBody","ClientList","clients","content","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["employment","callToActionBody","ClientList","clients","content","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["employment","callToActionBody","ClientList","clients","content","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["employment","callToActionBody","ClientList","clients","content","ContentCard","content","VideoEmbed","duration"]}],"namespace":["employment","opportunitiesBody","ClientList","clients","content","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","callToActionBody","ClientList","clients","content","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["employment","callToActionBody","ClientList","clients","content","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["opportunities","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["opportunities","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["opportunities","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["opportunities","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["opportunities","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["employment","callToActionBody","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["employment","opportunitiesBody","ClientList","clients","content","ContentCard","content","ColorBlock"]}],"namespace":["employment","afterBody","ClientList","clients","content","ContentCard","content"]}],"namespace":["employment","benefitsBody","ClientList","clients","content","ContentCard"]}],"namespace":["employment","_body","ClientList","clients","content"]},{"type":"string","name":"caseStudyUrl","label":"Case study URL","namespace":["employment","_body","ClientList","clients","caseStudyUrl"]},{"type":"object","name":"categories","label":"Categories","list":true,"ui":{},"fields":[{"type":"reference","name":"category","label":"Category","collections":["clientCategories"],"namespace":["employment","benefitsBody","ClientList","clients","categories","category"]}],"namespace":["employment","_body","ClientList","clients","categories"]}],"namespace":["employment","booking","bookingBody","ClientList","clients"],"searchable":true,"uid":false}],"namespace":["employment","booking","bookingBody","ClientList"]},{"name":"ClientLogos","label":"Client Logos","ui":{"previewSrc":"/images/thumbs/tina/client-logos.jpg"},"fields":[{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","booking","bookingBody","ClientLogos","altText"],"searchable":true,"uid":false}],"namespace":["employment","booking","bookingBody","ClientLogos"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","booking","bookingBody","ColorBlock","title"],"searchable":true,"uid":false},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["employment","booking","bookingBody","ColorBlock","subTitle"],"searchable":true,"uid":false},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["employment","_body","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["employment","_body","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["employment","_body","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["employment","_body","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["employment","_body","ColorBlock","colorRow","caption"]}],"namespace":["employment","booking","bookingBody","ColorBlock","colorRow"],"searchable":true,"uid":false}],"namespace":["employment","booking","bookingBody","ColorBlock"]},{"name":"ColorPalette","label":"Color Palette","ui":{"previewSrc":"/images/thumbs/tina/color-palette.jpg"},"fields":[{"type":"string","label":"Name","name":"name","namespace":["employment","booking","bookingBody","ColorPalette","name"],"searchable":true,"uid":false}],"namespace":["employment","booking","bookingBody","ColorPalette"]},{"name":"Content","label":"Content","ui":{"previewSrc":"/images/thumbs/tina/content.jpg","defaultItem":{"body":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","booking","bookingBody","Content","title"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["employment","benefitsBody","Content","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","benefitsBody","Content","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["employment","benefitsBody","Content","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","benefitsBody","Content","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","benefitsBody","Content","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["employment","benefitsBody","Content","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["employment","benefitsBody","Content","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["employment","benefitsBody","Content","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["employment","benefitsBody","Content","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","benefitsBody","Content","content","CustomImage","sizes"]}],"namespace":["employment","_body","Content","content","CustomImage"]},{"name":"ClientLogos","label":"Client Logos","ui":{"previewSrc":"/images/thumbs/tina/client-logos.jpg"},"fields":[{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","benefitsBody","Content","content","ClientLogos","altText"]}],"namespace":["employment","_body","Content","content","ClientLogos"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["employment","benefitsBody","Content","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["employment","benefitsBody","Content","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["employment","benefitsBody","Content","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["employment","benefitsBody","Content","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["employment","benefitsBody","Content","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["employment","benefitsBody","Content","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["employment","benefitsBody","Content","content","VideoEmbed","duration"]}],"namespace":["employment","_body","Content","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","benefitsBody","Content","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["employment","benefitsBody","Content","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["employment","afterBody","Content","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["employment","afterBody","Content","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["employment","afterBody","Content","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["employment","afterBody","Content","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["employment","afterBody","Content","content","ColorBlock","colorRow","caption"]}],"namespace":["employment","benefitsBody","Content","content","ColorBlock","colorRow"]}],"namespace":["employment","_body","Content","content","ColorBlock"]}],"namespace":["employment","booking","bookingBody","Content","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Container Padding","name":"paddingClass","options":["Mobile: No Padding","Mobile: No Top and Horizontal Padding"],"namespace":["employment","booking","bookingBody","Content","paddingClass"],"searchable":true,"uid":false},{"type":"string","label":"Text size","name":"size","options":[{"label":"small","value":"sm"},{"label":"normal","value":"base"},{"label":"large","value":"lg"},{"label":"extra large","value":"xl"},{"label":"2x large","value":"2xl"}],"namespace":["employment","booking","bookingBody","Content","size"],"searchable":true,"uid":false},{"type":"string","label":"Align","name":"align","options":[{"label":"Left","value":"left"},{"label":"Center","value":"center"},{"label":"Right","value":"right"}],"namespace":["employment","booking","bookingBody","Content","align"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["employment","booking","bookingBody","Content","backgroundColor"],"searchable":true,"uid":false}],"namespace":["employment","booking","bookingBody","Content"]},{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["employment","booking","bookingBody","ContentCard","prose"],"searchable":true,"uid":false},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["employment","booking","bookingBody","ContentCard","centerAlignedText"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["employment","benefitsBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","benefitsBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["employment","benefitsBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","benefitsBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","benefitsBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["employment","benefitsBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["employment","benefitsBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["employment","benefitsBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["employment","benefitsBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","benefitsBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["employment","_body","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["employment","benefitsBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["employment","benefitsBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["employment","benefitsBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["employment","benefitsBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["employment","benefitsBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["employment","_body","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["employment","benefitsBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["employment","benefitsBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["employment","benefitsBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["employment","benefitsBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["employment","benefitsBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["employment","benefitsBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["employment","benefitsBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["employment","_body","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","benefitsBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["employment","benefitsBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["employment","afterBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["employment","afterBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["employment","afterBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["employment","afterBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["employment","afterBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["employment","benefitsBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["employment","_body","ContentCard","content","ColorBlock"]}],"namespace":["employment","booking","bookingBody","ContentCard","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["employment","booking","bookingBody","ContentCard"]},{"name":"CustomDownloadButton","label":"Custom Download Button","ui":{"previewSrc":"/images/thumbs/tina/custom-download-button.jpg"},"fields":[{"type":"string","label":"Text","name":"btnText","namespace":["employment","booking","bookingBody","CustomDownloadButton","btnText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"btnLink","namespace":["employment","booking","bookingBody","CustomDownloadButton","btnLink"],"searchable":true,"uid":false}],"namespace":["employment","booking","bookingBody","CustomDownloadButton"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["employment","booking","bookingBody","CustomImage","src"],"searchable":false,"uid":false},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","booking","bookingBody","CustomImage","altText"],"searchable":true,"uid":false},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["employment","booking","bookingBody","CustomImage","alignment"],"searchable":true,"uid":false},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","booking","bookingBody","CustomImage","height"],"searchable":true,"uid":false},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","booking","bookingBody","CustomImage","width"],"searchable":true,"uid":false},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["employment","booking","bookingBody","CustomImage","link"],"searchable":true,"uid":false},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["employment","booking","bookingBody","CustomImage","customClass"],"searchable":true,"uid":false},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["employment","booking","bookingBody","CustomImage","caption"],"searchable":true,"uid":false},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["employment","booking","bookingBody","CustomImage","captionColor"],"searchable":true,"uid":false},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","booking","bookingBody","CustomImage","sizes"],"searchable":true,"uid":false}],"namespace":["employment","booking","bookingBody","CustomImage"]},{"name":"DomainFromQuery","label":"Domain from query","ui":{"previewSrc":"/images/thumbs/tina/domain-from-query.jpg"},"fields":[{"name":"title","label":"Title","type":"string","description":"This is a H1 heading","namespace":["employment","booking","bookingBody","DomainFromQuery","title"],"searchable":true,"uid":false},{"name":"showDomain","label":"Show domain name","type":"boolean","description":"Query param in URL must have key of 'domain'","namespace":["employment","booking","bookingBody","DomainFromQuery","showDomain"],"searchable":true,"uid":false}],"namespace":["employment","booking","bookingBody","DomainFromQuery"]},{"name":"DownloadBlock","label":"Download Block","ui":{"previewSrc":"/images/thumbs/tina/download-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","booking","bookingBody","DownloadBlock","title"],"searchable":true,"uid":false},{"type":"object","label":"Downloads","name":"downloads","ui":{},"list":true,"fields":[{"type":"string","label":"Header","name":"header","namespace":["employment","_body","DownloadBlock","downloads","header"]},{"type":"image","label":"Image","name":"img","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","img","uploadDir"]},"namespace":["employment","_body","DownloadBlock","downloads","img"]},{"type":"string","label":"Image Background","name":"imgBackground","options":["black","grey","white","darkgrey","darkgreen"],"namespace":["employment","_body","DownloadBlock","downloads","imgBackground"]},{"type":"string","label":"First Link Text","name":"firstLinkText","description":"Defaults to PNG","namespace":["employment","_body","DownloadBlock","downloads","firstLinkText"]},{"type":"image","label":"First Link","name":"firstLink","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","firstLink","uploadDir"]},"namespace":["employment","_body","DownloadBlock","downloads","firstLink"]},{"type":"string","label":"Second Link Text","name":"secondLinkText","description":"Defaults to PDF","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","secondLinkText","uploadDir"]},"namespace":["employment","_body","DownloadBlock","downloads","secondLinkText"]},{"type":"image","label":"Second Link","name":"secondLink","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","secondLink","uploadDir"]},"namespace":["employment","_body","DownloadBlock","downloads","secondLink"]}],"namespace":["employment","booking","bookingBody","DownloadBlock","downloads"],"searchable":true,"uid":false},{"type":"boolean","label":"Bottom border","name":"bottomBorder","namespace":["employment","booking","bookingBody","DownloadBlock","bottomBorder"],"searchable":true,"uid":false}],"namespace":["employment","booking","bookingBody","DownloadBlock"]},{"name":"DynamicColumns","label":"Dynamic Column Layout","fields":[{"type":"rich-text","label":"Column text body","name":"colBody","required":true,"namespace":["employment","booking","bookingBody","DynamicColumns","colBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"number","label":"Number of columns","name":"colCount","required":true,"ui":{},"namespace":["employment","booking","bookingBody","DynamicColumns","colCount"],"searchable":true,"uid":false}],"namespace":["employment","booking","bookingBody","DynamicColumns"]},{"name":"EventBooking","label":"Events Booking","ui":{"previewSrc":"/images/thumbs/tina/events-booking.jpg"},"fields":[{"type":"number","label":"Duration (In Days)","name":"eventDurationInDays","required":true,"namespace":["employment","booking","bookingBody","EventBooking","eventDurationInDays"],"searchable":true,"uid":false},{"type":"number","label":"Price","name":"price","required":true,"namespace":["employment","booking","bookingBody","EventBooking","price"],"searchable":true,"uid":false},{"type":"number","label":"Discount Price","name":"discountPrice","namespace":["employment","booking","bookingBody","EventBooking","discountPrice"],"searchable":true,"uid":false},{"type":"string","name":"gstText","label":"Select GST Option","options":["inc GST","+ GST"],"required":true,"namespace":["employment","booking","bookingBody","EventBooking","gstText"],"searchable":true,"uid":false},{"type":"string","label":"Discount Note","name":"discountNote","namespace":["employment","booking","bookingBody","EventBooking","discountNote"],"searchable":true,"uid":false},{"type":"object","label":"Event","name":"eventList","ui":{},"list":true,"fields":[{"type":"string","label":"City","name":"city","namespace":["employment","_body","EventBooking","eventList","city"]},{"type":"datetime","label":"Start Date","name":"date","ui":{},"namespace":["employment","_body","EventBooking","eventList","date"]},{"type":"string","label":"Booking URL","name":"bookingURL","namespace":["employment","_body","EventBooking","eventList","bookingURL"]},{"type":"reference","label":"Location","name":"location","collections":["locations"],"namespace":["employment","_body","EventBooking","eventList","location"]}],"namespace":["employment","booking","bookingBody","EventBooking","eventList"],"searchable":true,"uid":false}],"namespace":["employment","booking","bookingBody","EventBooking"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["employment","benefitsBody","EventLink","content","Flag","country"]}],"namespace":["employment","_body","EventLink","content","Flag"]}],"namespace":["employment","booking","bookingBody","EventLink","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Link","name":"link","namespace":["employment","booking","bookingBody","EventLink","link"],"searchable":true,"uid":false},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["employment","booking","bookingBody","EventLink","eventThumbnail"],"searchable":false,"uid":false},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["employment","booking","bookingBody","EventLink","thumbnailAlt"],"searchable":true,"uid":false}],"namespace":["employment","booking","bookingBody","EventLink"]},{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["employment","booking","bookingBody","Flag","country"],"searchable":true,"uid":false}],"namespace":["employment","booking","bookingBody","Flag"]},{"name":"FixedColumns","label":"Fixed Column Layout (2 columns)","ui":{"previewSrc":"/images/thumbs/tina/fixed-columns.jpg"},"fields":[{"type":"rich-text","label":"Header Section (Optional)","name":"headerSection","namespace":["employment","booking","bookingBody","FixedColumns","headerSection"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"First column text","name":"firstColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["employment","benefitsBody","FixedColumns","firstColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["employment","benefitsBody","FixedColumns","firstColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["employment","opportunitiesBody","FixedColumns","firstColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","opportunitiesBody","FixedColumns","firstColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["employment","opportunitiesBody","FixedColumns","firstColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","opportunitiesBody","FixedColumns","firstColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","opportunitiesBody","FixedColumns","firstColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["employment","opportunitiesBody","FixedColumns","firstColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["employment","opportunitiesBody","FixedColumns","firstColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["employment","opportunitiesBody","FixedColumns","firstColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["employment","opportunitiesBody","FixedColumns","firstColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","opportunitiesBody","FixedColumns","firstColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["employment","afterBody","FixedColumns","firstColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["employment","opportunitiesBody","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["employment","opportunitiesBody","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["employment","opportunitiesBody","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["employment","opportunitiesBody","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["employment","opportunitiesBody","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["employment","afterBody","FixedColumns","firstColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["employment","opportunitiesBody","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["employment","opportunitiesBody","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["employment","opportunitiesBody","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["employment","opportunitiesBody","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["employment","opportunitiesBody","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["employment","opportunitiesBody","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["employment","opportunitiesBody","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["employment","afterBody","FixedColumns","firstColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","opportunitiesBody","FixedColumns","firstColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["employment","opportunitiesBody","FixedColumns","firstColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["employment","callToActionBody","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["employment","callToActionBody","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["employment","callToActionBody","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["employment","callToActionBody","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["employment","callToActionBody","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["employment","opportunitiesBody","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["employment","afterBody","FixedColumns","firstColBody","ContentCard","content","ColorBlock"]}],"namespace":["employment","benefitsBody","FixedColumns","firstColBody","ContentCard","content"]}],"namespace":["employment","_body","FixedColumns","firstColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["employment","benefitsBody","FixedColumns","firstColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","benefitsBody","FixedColumns","firstColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["employment","benefitsBody","FixedColumns","firstColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","benefitsBody","FixedColumns","firstColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","benefitsBody","FixedColumns","firstColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["employment","benefitsBody","FixedColumns","firstColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["employment","benefitsBody","FixedColumns","firstColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["employment","benefitsBody","FixedColumns","firstColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["employment","benefitsBody","FixedColumns","firstColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","benefitsBody","FixedColumns","firstColBody","CustomImage","sizes"]}],"namespace":["employment","_body","FixedColumns","firstColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["employment","opportunitiesBody","FixedColumns","firstColBody","EventLink","content","Flag","country"]}],"namespace":["employment","afterBody","FixedColumns","firstColBody","EventLink","content","Flag"]}],"namespace":["employment","benefitsBody","FixedColumns","firstColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["employment","benefitsBody","FixedColumns","firstColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["employment","benefitsBody","FixedColumns","firstColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["employment","benefitsBody","FixedColumns","firstColBody","EventLink","thumbnailAlt"]}],"namespace":["employment","_body","FixedColumns","firstColBody","EventLink"]}],"namespace":["employment","booking","bookingBody","FixedColumns","firstColBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"Second column text","name":"secondColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["employment","benefitsBody","FixedColumns","secondColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["employment","benefitsBody","FixedColumns","secondColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["employment","opportunitiesBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","opportunitiesBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["employment","opportunitiesBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","opportunitiesBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","opportunitiesBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["employment","opportunitiesBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["employment","opportunitiesBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["employment","opportunitiesBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["employment","opportunitiesBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","opportunitiesBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["employment","afterBody","FixedColumns","secondColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["employment","opportunitiesBody","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["employment","opportunitiesBody","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["employment","opportunitiesBody","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["employment","opportunitiesBody","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["employment","opportunitiesBody","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["employment","afterBody","FixedColumns","secondColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["employment","opportunitiesBody","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["employment","opportunitiesBody","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["employment","opportunitiesBody","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["employment","opportunitiesBody","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["employment","opportunitiesBody","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["employment","opportunitiesBody","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["employment","opportunitiesBody","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["employment","afterBody","FixedColumns","secondColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","opportunitiesBody","FixedColumns","secondColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["employment","opportunitiesBody","FixedColumns","secondColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["employment","callToActionBody","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["employment","callToActionBody","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["employment","callToActionBody","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["employment","callToActionBody","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["employment","callToActionBody","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["employment","opportunitiesBody","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["employment","afterBody","FixedColumns","secondColBody","ContentCard","content","ColorBlock"]}],"namespace":["employment","benefitsBody","FixedColumns","secondColBody","ContentCard","content"]}],"namespace":["employment","_body","FixedColumns","secondColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["employment","benefitsBody","FixedColumns","secondColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","benefitsBody","FixedColumns","secondColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["employment","benefitsBody","FixedColumns","secondColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","benefitsBody","FixedColumns","secondColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","benefitsBody","FixedColumns","secondColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["employment","benefitsBody","FixedColumns","secondColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["employment","benefitsBody","FixedColumns","secondColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["employment","benefitsBody","FixedColumns","secondColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["employment","benefitsBody","FixedColumns","secondColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","benefitsBody","FixedColumns","secondColBody","CustomImage","sizes"]}],"namespace":["employment","_body","FixedColumns","secondColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["employment","opportunitiesBody","FixedColumns","secondColBody","EventLink","content","Flag","country"]}],"namespace":["employment","afterBody","FixedColumns","secondColBody","EventLink","content","Flag"]}],"namespace":["employment","benefitsBody","FixedColumns","secondColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["employment","benefitsBody","FixedColumns","secondColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["employment","benefitsBody","FixedColumns","secondColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["employment","benefitsBody","FixedColumns","secondColBody","EventLink","thumbnailAlt"]}],"namespace":["employment","_body","FixedColumns","secondColBody","EventLink"]}],"namespace":["employment","booking","bookingBody","FixedColumns","secondColBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["employment","booking","bookingBody","FixedColumns"]},{"name":"FixedTabsLayout","label":"Fixed Tabs Layout","ui":{"previewSrc":"/images/thumbs/tina/fixed-tabs-layout.jpg"},"fields":[{"type":"string","name":"firstTab","label":"First Tab","namespace":["employment","booking","bookingBody","FixedTabsLayout","firstTab"],"searchable":true,"uid":false},{"type":"rich-text","name":"firstHeading","label":"First Heading","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["employment","benefitsBody","FixedTabsLayout","firstHeading","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["employment","benefitsBody","FixedTabsLayout","firstHeading","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["employment","benefitsBody","FixedTabsLayout","firstHeading","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["employment","benefitsBody","FixedTabsLayout","firstHeading","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["employment","benefitsBody","FixedTabsLayout","firstHeading","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["employment","benefitsBody","FixedTabsLayout","firstHeading","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["employment","benefitsBody","FixedTabsLayout","firstHeading","VideoEmbed","duration"]}],"namespace":["employment","_body","FixedTabsLayout","firstHeading","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["employment","benefitsBody","FixedTabsLayout","firstHeading","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["employment","benefitsBody","FixedTabsLayout","firstHeading","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["employment","benefitsBody","FixedTabsLayout","firstHeading","BookingButton","buttonSubtitle"]}],"namespace":["employment","_body","FixedTabsLayout","firstHeading","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["employment","benefitsBody","FixedTabsLayout","firstHeading","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["employment","afterBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["employment","afterBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["employment","afterBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["employment","afterBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","skills"]}],"namespace":["employment","benefitsBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["employment","afterBody","FixedTabsLayout","firstHeading","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["employment","afterBody","FixedTabsLayout","firstHeading","ExpertBlock","link","url"]}],"namespace":["employment","benefitsBody","FixedTabsLayout","firstHeading","ExpertBlock","link"]}],"namespace":["employment","_body","FixedTabsLayout","firstHeading","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","afterBody","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["employment","afterBody","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["employment","afterBody","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["employment","opportunitiesBody","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["employment","opportunitiesBody","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["employment","opportunitiesBody","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["employment","afterBody","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["employment","benefitsBody","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["employment","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["employment","benefitsBody","FixedTabsLayout","firstHeading","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","benefitsBody","FixedTabsLayout","firstHeading","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["employment","benefitsBody","FixedTabsLayout","firstHeading","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","benefitsBody","FixedTabsLayout","firstHeading","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","benefitsBody","FixedTabsLayout","firstHeading","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["employment","benefitsBody","FixedTabsLayout","firstHeading","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["employment","benefitsBody","FixedTabsLayout","firstHeading","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["employment","benefitsBody","FixedTabsLayout","firstHeading","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["employment","benefitsBody","FixedTabsLayout","firstHeading","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","benefitsBody","FixedTabsLayout","firstHeading","CustomImage","sizes"]}],"namespace":["employment","_body","FixedTabsLayout","firstHeading","CustomImage"]}],"namespace":["employment","booking","bookingBody","FixedTabsLayout","firstHeading"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","name":"firstBody","label":"First Body","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["employment","benefitsBody","FixedTabsLayout","firstBody","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["employment","benefitsBody","FixedTabsLayout","firstBody","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["employment","benefitsBody","FixedTabsLayout","firstBody","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["employment","benefitsBody","FixedTabsLayout","firstBody","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["employment","benefitsBody","FixedTabsLayout","firstBody","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["employment","benefitsBody","FixedTabsLayout","firstBody","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["employment","benefitsBody","FixedTabsLayout","firstBody","VideoEmbed","duration"]}],"namespace":["employment","_body","FixedTabsLayout","firstBody","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["employment","benefitsBody","FixedTabsLayout","firstBody","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["employment","benefitsBody","FixedTabsLayout","firstBody","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["employment","benefitsBody","FixedTabsLayout","firstBody","BookingButton","buttonSubtitle"]}],"namespace":["employment","_body","FixedTabsLayout","firstBody","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["employment","benefitsBody","FixedTabsLayout","firstBody","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["employment","afterBody","FixedTabsLayout","firstBody","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["employment","afterBody","FixedTabsLayout","firstBody","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["employment","afterBody","FixedTabsLayout","firstBody","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["employment","afterBody","FixedTabsLayout","firstBody","ExpertBlock","expertList","skills"]}],"namespace":["employment","benefitsBody","FixedTabsLayout","firstBody","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["employment","afterBody","FixedTabsLayout","firstBody","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["employment","afterBody","FixedTabsLayout","firstBody","ExpertBlock","link","url"]}],"namespace":["employment","benefitsBody","FixedTabsLayout","firstBody","ExpertBlock","link"]}],"namespace":["employment","_body","FixedTabsLayout","firstBody","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","afterBody","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["employment","afterBody","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["employment","afterBody","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["employment","opportunitiesBody","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["employment","opportunitiesBody","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["employment","opportunitiesBody","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["employment","afterBody","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["employment","benefitsBody","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["employment","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["employment","benefitsBody","FixedTabsLayout","firstBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","benefitsBody","FixedTabsLayout","firstBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["employment","benefitsBody","FixedTabsLayout","firstBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","benefitsBody","FixedTabsLayout","firstBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","benefitsBody","FixedTabsLayout","firstBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["employment","benefitsBody","FixedTabsLayout","firstBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["employment","benefitsBody","FixedTabsLayout","firstBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["employment","benefitsBody","FixedTabsLayout","firstBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["employment","benefitsBody","FixedTabsLayout","firstBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","benefitsBody","FixedTabsLayout","firstBody","CustomImage","sizes"]}],"namespace":["employment","_body","FixedTabsLayout","firstBody","CustomImage"]}],"namespace":["employment","booking","bookingBody","FixedTabsLayout","firstBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","name":"secondTab","label":"Second Tab","namespace":["employment","booking","bookingBody","FixedTabsLayout","secondTab"],"searchable":true,"uid":false},{"type":"rich-text","name":"secondHeading","label":"Second Heading","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["employment","benefitsBody","FixedTabsLayout","secondHeading","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["employment","benefitsBody","FixedTabsLayout","secondHeading","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["employment","benefitsBody","FixedTabsLayout","secondHeading","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["employment","benefitsBody","FixedTabsLayout","secondHeading","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["employment","benefitsBody","FixedTabsLayout","secondHeading","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["employment","benefitsBody","FixedTabsLayout","secondHeading","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["employment","benefitsBody","FixedTabsLayout","secondHeading","VideoEmbed","duration"]}],"namespace":["employment","_body","FixedTabsLayout","secondHeading","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["employment","benefitsBody","FixedTabsLayout","secondHeading","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["employment","benefitsBody","FixedTabsLayout","secondHeading","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["employment","benefitsBody","FixedTabsLayout","secondHeading","BookingButton","buttonSubtitle"]}],"namespace":["employment","_body","FixedTabsLayout","secondHeading","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["employment","benefitsBody","FixedTabsLayout","secondHeading","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["employment","afterBody","FixedTabsLayout","secondHeading","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["employment","afterBody","FixedTabsLayout","secondHeading","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["employment","afterBody","FixedTabsLayout","secondHeading","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["employment","afterBody","FixedTabsLayout","secondHeading","ExpertBlock","expertList","skills"]}],"namespace":["employment","benefitsBody","FixedTabsLayout","secondHeading","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["employment","afterBody","FixedTabsLayout","secondHeading","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["employment","afterBody","FixedTabsLayout","secondHeading","ExpertBlock","link","url"]}],"namespace":["employment","benefitsBody","FixedTabsLayout","secondHeading","ExpertBlock","link"]}],"namespace":["employment","_body","FixedTabsLayout","secondHeading","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","afterBody","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["employment","afterBody","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["employment","afterBody","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["employment","opportunitiesBody","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["employment","opportunitiesBody","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["employment","opportunitiesBody","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["employment","afterBody","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["employment","benefitsBody","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["employment","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["employment","benefitsBody","FixedTabsLayout","secondHeading","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","benefitsBody","FixedTabsLayout","secondHeading","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["employment","benefitsBody","FixedTabsLayout","secondHeading","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","benefitsBody","FixedTabsLayout","secondHeading","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","benefitsBody","FixedTabsLayout","secondHeading","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["employment","benefitsBody","FixedTabsLayout","secondHeading","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["employment","benefitsBody","FixedTabsLayout","secondHeading","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["employment","benefitsBody","FixedTabsLayout","secondHeading","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["employment","benefitsBody","FixedTabsLayout","secondHeading","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","benefitsBody","FixedTabsLayout","secondHeading","CustomImage","sizes"]}],"namespace":["employment","_body","FixedTabsLayout","secondHeading","CustomImage"]}],"namespace":["employment","booking","bookingBody","FixedTabsLayout","secondHeading"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","name":"secondBody","label":"Second Body","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["employment","benefitsBody","FixedTabsLayout","secondBody","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["employment","benefitsBody","FixedTabsLayout","secondBody","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["employment","benefitsBody","FixedTabsLayout","secondBody","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["employment","benefitsBody","FixedTabsLayout","secondBody","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["employment","benefitsBody","FixedTabsLayout","secondBody","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["employment","benefitsBody","FixedTabsLayout","secondBody","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["employment","benefitsBody","FixedTabsLayout","secondBody","VideoEmbed","duration"]}],"namespace":["employment","_body","FixedTabsLayout","secondBody","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["employment","benefitsBody","FixedTabsLayout","secondBody","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["employment","benefitsBody","FixedTabsLayout","secondBody","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["employment","benefitsBody","FixedTabsLayout","secondBody","BookingButton","buttonSubtitle"]}],"namespace":["employment","_body","FixedTabsLayout","secondBody","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["employment","benefitsBody","FixedTabsLayout","secondBody","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["employment","afterBody","FixedTabsLayout","secondBody","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["employment","afterBody","FixedTabsLayout","secondBody","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["employment","afterBody","FixedTabsLayout","secondBody","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["employment","afterBody","FixedTabsLayout","secondBody","ExpertBlock","expertList","skills"]}],"namespace":["employment","benefitsBody","FixedTabsLayout","secondBody","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["employment","afterBody","FixedTabsLayout","secondBody","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["employment","afterBody","FixedTabsLayout","secondBody","ExpertBlock","link","url"]}],"namespace":["employment","benefitsBody","FixedTabsLayout","secondBody","ExpertBlock","link"]}],"namespace":["employment","_body","FixedTabsLayout","secondBody","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","afterBody","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["employment","afterBody","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["employment","afterBody","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["employment","opportunitiesBody","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["employment","opportunitiesBody","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["employment","opportunitiesBody","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["employment","afterBody","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["employment","benefitsBody","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["employment","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["employment","benefitsBody","FixedTabsLayout","secondBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","benefitsBody","FixedTabsLayout","secondBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["employment","benefitsBody","FixedTabsLayout","secondBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","benefitsBody","FixedTabsLayout","secondBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","benefitsBody","FixedTabsLayout","secondBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["employment","benefitsBody","FixedTabsLayout","secondBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["employment","benefitsBody","FixedTabsLayout","secondBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["employment","benefitsBody","FixedTabsLayout","secondBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["employment","benefitsBody","FixedTabsLayout","secondBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","benefitsBody","FixedTabsLayout","secondBody","CustomImage","sizes"]}],"namespace":["employment","_body","FixedTabsLayout","secondBody","CustomImage"]}],"namespace":["employment","booking","bookingBody","FixedTabsLayout","secondBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["employment","booking","bookingBody","FixedTabsLayout"]},{"label":"Google Maps","name":"GoogleMaps","ui":{"previewSrc":"/images/thumbs/tina/google-maps.jpg"},"fields":[{"type":"string","label":"URL","name":"embedUrl","required":true,"namespace":["employment","booking","bookingBody","GoogleMaps","embedUrl"],"searchable":true,"uid":false},{"type":"string","label":"Width","name":"embedWidth","namespace":["employment","booking","bookingBody","GoogleMaps","embedWidth"],"searchable":true,"uid":false},{"type":"string","label":"Height","name":"embedHeight","namespace":["employment","booking","bookingBody","GoogleMaps","embedHeight"],"searchable":true,"uid":false}],"namespace":["employment","booking","bookingBody","GoogleMaps"]},{"label":"Grid Layout","name":"GridLayout","ui":{"previewSrc":"/images/thumbs/tina/grid-layout.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","booking","bookingBody","GridLayout","title"],"searchable":true,"uid":false},{"type":"object","list":true,"label":"Grid Items","name":"grids","ui":{},"fields":[{"type":"string","label":"Grid Title","name":"gridTitle","namespace":["employment","_body","GridLayout","grids","gridTitle"]},{"type":"boolean","label":"Show Grid Title","name":"showGridTitle","namespace":["employment","_body","GridLayout","grids","showGridTitle"]},{"type":"boolean","label":"Centered Grid Title","name":"centeredGridTitle","namespace":["employment","_body","GridLayout","grids","centeredGridTitle"]},{"type":"boolean","label":"Show Header Divider","name":"showHeaderDivider","namespace":["employment","_body","GridLayout","grids","showHeaderDivider"]},{"type":"boolean","label":"Offset Grid Start","name":"offsetGridStart","namespace":["employment","_body","GridLayout","grids","offsetGridStart"]},{"type":"object","label":"Blocks","name":"blocks","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","benefitsBody","GridLayout","grids","blocks","title"]},{"type":"boolean","label":"Show Title","name":"showTitle","namespace":["employment","benefitsBody","GridLayout","grids","blocks","showTitle"]},{"type":"image","label":"Image","name":"image","uploadDir":{"namespace":["page","beforeBody","GridLayout","grids","blocks","image","uploadDir"]},"namespace":["employment","benefitsBody","GridLayout","grids","blocks","image"]},{"type":"image","label":"Related Image","name":"relatedImage","uploadDir":{"namespace":["page","beforeBody","GridLayout","grids","blocks","relatedImage","uploadDir"]},"namespace":["employment","benefitsBody","GridLayout","grids","blocks","relatedImage"]},{"type":"rich-text","name":"linkContent","label":"Link Content","templates":[{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["employment","opportunitiesBody","GridLayout","grids","blocks","linkContent","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["employment","opportunitiesBody","GridLayout","grids","blocks","linkContent","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["employment","opportunitiesBody","GridLayout","grids","blocks","linkContent","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["employment","opportunitiesBody","GridLayout","grids","blocks","linkContent","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["employment","opportunitiesBody","GridLayout","grids","blocks","linkContent","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["employment","opportunitiesBody","GridLayout","grids","blocks","linkContent","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["employment","opportunitiesBody","GridLayout","grids","blocks","linkContent","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["employment","opportunitiesBody","GridLayout","grids","blocks","linkContent","UtilityButton","openInNewTab"]}],"namespace":["employment","afterBody","GridLayout","grids","blocks","linkContent","UtilityButton"]}],"namespace":["employment","benefitsBody","GridLayout","grids","blocks","linkContent"]}],"namespace":["employment","_body","GridLayout","grids","blocks"]}],"namespace":["employment","booking","bookingBody","GridLayout","grids"],"searchable":true,"uid":false}],"namespace":["employment","booking","bookingBody","GridLayout"]},{"name":"Hero","label":"Hero","ui":{"previewSrc":"/blocks/hero.png","defaultItem":{"tagline":"Here's some text above the other text","headline":"This Big Text is Totally Awesome","text":"Phasellus scelerisque, libero eu finibus rutrum, risus risus accumsan libero, nec molestie urna dui a leo."}},"fields":[{"type":"string","label":"Tagline","name":"tagline","namespace":["employment","booking","bookingBody","Hero","tagline"],"searchable":true,"uid":false},{"type":"string","label":"Headline","name":"headline","namespace":["employment","booking","bookingBody","Hero","headline"],"searchable":true,"uid":false},{"label":"Text","name":"text","type":"rich-text","namespace":["employment","booking","bookingBody","Hero","text"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"label":"Actions","name":"actions","type":"object","list":true,"ui":{"defaultItem":{"label":"Action Label","type":"button","icon":true,"link":"/"}},"fields":[{"label":"Label","name":"label","type":"string","namespace":["employment","_body","Hero","actions","label"]},{"label":"Type","name":"type","type":"string","options":[{"label":"Button","value":"button"},{"label":"Link","value":"link"}],"namespace":["employment","_body","Hero","actions","type"]},{"label":"Icon","name":"icon","type":"boolean","namespace":["employment","_body","Hero","actions","icon"]},{"label":"Link","name":"link","type":"string","namespace":["employment","_body","Hero","actions","link"]}],"namespace":["employment","booking","bookingBody","Hero","actions"],"searchable":true,"uid":false},{"type":"object","label":"Image","name":"image","fields":[{"name":"src","label":"Image Source","type":"image","namespace":["employment","_body","Hero","image","src"]},{"name":"alt","label":"Alt Text","type":"string","namespace":["employment","_body","Hero","image","alt"]}],"namespace":["employment","booking","bookingBody","Hero","image"],"searchable":true,"uid":false},{"type":"string","label":"Color","name":"color","options":[{"label":"Default","value":"default"},{"label":"Tint","value":"tint"},{"label":"Primary","value":"primary"}],"namespace":["employment","booking","bookingBody","Hero","color"],"searchable":true,"uid":false}],"namespace":["employment","booking","bookingBody","Hero"]},{"name":"HorizontalCard","label":"Horizontal Card","ui":{"previewSrc":"/images/thumbs/tina/horizontal-card.jpg"},"fields":[{"type":"object","label":"Cards","name":"cardList","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","_body","HorizontalCard","cardList","title"]},{"type":"rich-text","label":"Content","name":"content","namespace":["employment","_body","HorizontalCard","cardList","content"]},{"type":"image","label":"Thumbnail","name":"thumbnail","uploadDir":{"namespace":["page","beforeBody","HorizontalCard","cardList","thumbnail","uploadDir"]},"namespace":["employment","_body","HorizontalCard","cardList","thumbnail"]},{"type":"string","label":"Link","name":"link","namespace":["employment","_body","HorizontalCard","cardList","link"]}],"namespace":["employment","booking","bookingBody","HorizontalCard","cardList"],"searchable":true,"uid":false},{"type":"object","label":"Button","name":"button","fields":[{"type":"string","label":"Text","name":"text","namespace":["employment","_body","HorizontalCard","button","text"]},{"type":"string","label":"Link","name":"link","namespace":["employment","_body","HorizontalCard","button","link"]}],"namespace":["employment","booking","bookingBody","HorizontalCard","button"],"searchable":true,"uid":false}],"namespace":["employment","booking","bookingBody","HorizontalCard"]},{"name":"InternalCarousel","label":"Internal Carousel","ui":{"previewSrc":"/images/thumbs/tina/internal-carousel.jpg"},"fields":[{"label":"Images","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Image description"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["employment","_body","InternalCarousel","items","label"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","InternalCarousel","items","imgSrc","uploadDir"]},"namespace":["employment","_body","InternalCarousel","items","imgSrc"]}],"namespace":["employment","booking","bookingBody","InternalCarousel","items"],"searchable":true,"uid":false},{"type":"string","label":"Header","name":"header","namespace":["employment","booking","bookingBody","InternalCarousel","header"],"searchable":true,"uid":false},{"type":"rich-text","label":"Text","name":"paragraph","isBody":false,"namespace":["employment","booking","bookingBody","InternalCarousel","paragraph"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Website","name":"website","namespace":["employment","booking","bookingBody","InternalCarousel","website"],"searchable":true,"uid":false},{"type":"object","label":"Technologies","name":"technologies","list":true,"ui":{},"fields":[{"type":"string","label":"Name","name":"name","namespace":["employment","_body","InternalCarousel","technologies","name"]}],"namespace":["employment","booking","bookingBody","InternalCarousel","technologies"],"searchable":true,"uid":false},{"type":"string","label":"Case Study","name":"caseStudyUrl","namespace":["employment","booking","bookingBody","InternalCarousel","caseStudyUrl"],"searchable":true,"uid":false},{"type":"string","label":"Video URL","name":"videoUrl","namespace":["employment","booking","bookingBody","InternalCarousel","videoUrl"],"searchable":true,"uid":false}],"namespace":["employment","booking","bookingBody","InternalCarousel"]},{"label":"Join As Presenter","name":"joinAsPresenter","fields":[{"label":"Learn More Link","name":"link","type":"string","namespace":["employment","booking","bookingBody","joinAsPresenter","link"],"searchable":true,"uid":false},{"label":"Image","name":"img","type":"image","namespace":["employment","booking","bookingBody","joinAsPresenter","img"],"searchable":false,"uid":false}],"namespace":["employment","booking","bookingBody","joinAsPresenter"]},{"label":"Join Github","name":"joinGithub","ui":{"previewSrc":"/images/thumbs/tina/join-github.jpg"},"fields":[{"label":"Title","name":"title","type":"string","namespace":["employment","booking","bookingBody","joinGithub","title"],"searchable":true,"uid":false},{"label":"Join Github Link","name":"link","type":"string","namespace":["employment","booking","bookingBody","joinGithub","link"],"searchable":true,"uid":false}],"namespace":["employment","booking","bookingBody","joinGithub"]},{"name":"JotFormEmbed","label":"JotForm Embed","ui":{"previewSrc":"/images/thumbs/tina/jotform-embed.jpg"},"fields":[{"type":"string","name":"jotFormId","label":"JotForm Id","required":true,"namespace":["employment","booking","bookingBody","JotFormEmbed","jotFormId"],"searchable":true,"uid":false},{"type":"string","label":"Button Text","name":"buttonText","namespace":["employment","booking","bookingBody","JotFormEmbed","buttonText"],"searchable":true,"uid":false},{"type":"string","name":"containerClass","label":"Container Class","namespace":["employment","booking","bookingBody","JotFormEmbed","containerClass"],"searchable":true,"uid":false},{"type":"string","label":"Button Class","name":"buttonClass","namespace":["employment","booking","bookingBody","JotFormEmbed","buttonClass"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","namespace":["employment","booking","bookingBody","JotFormEmbed","animated"],"searchable":true,"uid":false}],"namespace":["employment","booking","bookingBody","JotFormEmbed"]},{"name":"LatestTech","label":"Latest Tech","ui":{"previewSrc":"/images/thumbs/tina/latest-tech.jpg"},"fields":[{"type":"reference","description":"Select a config file including a set of badges","collections":["userGroupGlobal"],"label":"Badges","name":"badges","namespace":["employment","booking","bookingBody","LatestTech","badges"],"searchable":true,"uid":false}],"namespace":["employment","booking","bookingBody","LatestTech"]},{"name":"LocationBlock","label":"Locations","ui":{"previewSrc":"/images/thumbs/tina/locations.jpg"},"fields":[{"type":"string","name":"title","label":"Title","namespace":["employment","booking","bookingBody","LocationBlock","title"],"searchable":true,"uid":false},{"type":"object","label":"Location List","name":"locationList","list":true,"ui":{},"fields":[{"type":"reference","collections":["locations"],"label":"Location","name":"location","namespace":["employment","_body","LocationBlock","locationList","location"]}],"namespace":["employment","booking","bookingBody","LocationBlock","locationList"],"searchable":true,"uid":false},{"type":"object","name":"chapelWebsite","label":"Chapel Website","fields":[{"type":"string","name":"title","label":"Text","namespace":["employment","_body","LocationBlock","chapelWebsite","title"]},{"type":"string","name":"URL","label":"URL","namespace":["employment","_body","LocationBlock","chapelWebsite","URL"]}],"namespace":["employment","booking","bookingBody","LocationBlock","chapelWebsite"],"searchable":true,"uid":false}],"namespace":["employment","booking","bookingBody","LocationBlock"]},{"name":"NewslettersTable","label":"Newsletters Table","ui":{"previewSrc":"/images/thumbs/tina/newsletters-table.jpg"},"fields":[{"type":"string","label":"Header text","name":"headerText","namespace":["employment","booking","bookingBody","NewslettersTable","headerText"],"searchable":true,"uid":false}],"namespace":["employment","booking","bookingBody","NewslettersTable"]},{"label":"Organizer","name":"organizer","fields":[{"type":"image","label":"Profile Image","name":"profileImg","namespace":["employment","booking","bookingBody","organizer","profileImg"],"searchable":false,"uid":false},{"type":"string","label":"Profile Link","name":"profileLink","namespace":["employment","booking","bookingBody","organizer","profileLink"],"searchable":true,"uid":false},{"type":"string","label":"Name","name":"name","namespace":["employment","booking","bookingBody","organizer","name"],"searchable":true,"uid":false},{"type":"string","label":"Position","name":"position","namespace":["employment","booking","bookingBody","organizer","position"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","namespace":["employment","booking","bookingBody","organizer","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["employment","booking","bookingBody","organizer"]},{"label":"Payment Block","name":"paymentBlock","ui":{"previewSrc":"/images/thumbs/tina/payment-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","booking","bookingBody","paymentBlock","title"],"searchable":true,"uid":false},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["employment","booking","bookingBody","paymentBlock","subTitle"],"searchable":true,"uid":false},{"type":"reference","label":"Payment Links","name":"payments","collections":["paymentDetails"],"namespace":["employment","booking","bookingBody","paymentBlock","payments"],"searchable":true,"uid":false},{"type":"rich-text","label":"Footer","name":"footer","namespace":["employment","booking","bookingBody","paymentBlock","footer"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"image","label":"Credit Cards Image","name":"creditImgSrc","namespace":["employment","booking","bookingBody","paymentBlock","creditImgSrc"],"searchable":false,"uid":false},{"type":"string","label":"Alt Text","name":"altTxt","namespace":["employment","booking","bookingBody","paymentBlock","altTxt"],"searchable":true,"uid":false}],"namespace":["employment","booking","bookingBody","paymentBlock"]},{"name":"PresenterBlock","label":"Presenters","ui":{"previewSrc":"/images/thumbs/tina/presenters.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["employment","booking","bookingBody","PresenterBlock","header"],"searchable":true,"uid":false},{"type":"object","name":"presenterList","label":"Presenters","list":true,"ui":{},"fields":[{"type":"reference","name":"presenter","label":"Presenters","collections":["presenter"],"namespace":["employment","_body","PresenterBlock","presenterList","presenter"]}],"namespace":["employment","booking","bookingBody","PresenterBlock","presenterList"],"searchable":true,"uid":false},{"type":"object","label":"Other Events","name":"otherEvent","fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","_body","PresenterBlock","otherEvent","title"]},{"type":"string","label":"URL","name":"eventURL","namespace":["employment","_body","PresenterBlock","otherEvent","eventURL"]}],"namespace":["employment","booking","bookingBody","PresenterBlock","otherEvent"],"searchable":true,"uid":false}],"namespace":["employment","booking","bookingBody","PresenterBlock"]},{"label":"Recurring Event","name":"RecurringEvent","ui":{"previewSrc":"/images/thumbs/tina/recurring-event.jpg"},"fields":[{"type":"string","label":"Apply Link Redirect","name":"applyLinkRedirect","namespace":["employment","booking","bookingBody","RecurringEvent","applyLinkRedirect"],"searchable":true,"uid":false},{"type":"string","label":"Day","name":"day","options":[{"label":"Monday","value":"monday"},{"label":"Tuesday","value":"tuesday"},{"label":"Wednesday","value":"wednesday"},{"label":"Thursday","value":"thursday"},{"label":"Friday","value":"friday"},{"label":"Saturday","value":"saturday"},{"label":"Sunday","value":"sunday"}],"required":true,"namespace":["employment","booking","bookingBody","RecurringEvent","day"],"searchable":true,"uid":false}],"namespace":["employment","booking","bookingBody","RecurringEvent"]},{"name":"SectionHeader","label":"Section Header","ui":{"previewSrc":"/images/thumbs/tina/section-header.jpg"},"fields":[{"type":"string","label":"Header Text","name":"headerText","namespace":["employment","booking","bookingBody","SectionHeader","headerText"],"searchable":true,"uid":false}],"namespace":["employment","booking","bookingBody","SectionHeader"]},{"name":"ServiceCards","label":"Service Cards","ui":{"previewSrc":"/images/thumbs/tina/services-cards.jpg"},"fields":[{"type":"string","label":"Big Cards Label","name":"bigCardsLabel","namespace":["employment","booking","bookingBody","ServiceCards","bigCardsLabel"],"searchable":true,"uid":false},{"label":"Big Cards","name":"bigCards","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","_body","ServiceCards","bigCards","title"]},{"type":"string","label":"Description","component":"textarea","name":"description","namespace":["employment","_body","ServiceCards","bigCards","description"]},{"type":"string","label":"URL","name":"link","namespace":["employment","_body","ServiceCards","bigCards","link"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Red","value":"red"},{"label":"Light Gray","value":"lightgray"},{"label":"Medium Gray","value":"mediumgray"},{"label":"Dark Gray","value":"darkgray"}],"namespace":["employment","_body","ServiceCards","bigCards","color"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","ServiceCards","bigCards","imgSrc","uploadDir"]},"namespace":["employment","_body","ServiceCards","bigCards","imgSrc"]}],"namespace":["employment","booking","bookingBody","ServiceCards","bigCards"],"searchable":true,"uid":false},{"type":"string","label":"Small Cards Label","name":"smallCardsLabel","namespace":["employment","booking","bookingBody","ServiceCards","smallCardsLabel"],"searchable":true,"uid":false},{"label":"Small Cards","name":"smallCards","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","_body","ServiceCards","smallCards","title"]},{"type":"string","label":"URL","name":"link","namespace":["employment","_body","ServiceCards","smallCards","link"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Red","value":"red"},{"label":"Light Gray","value":"lightgray"},{"label":"Medium Gray","value":"mediumgray"},{"label":"Dark Gray","value":"darkgray"}],"namespace":["employment","_body","ServiceCards","smallCards","color"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","ServiceCards","smallCards","imgSrc","uploadDir"]},"namespace":["employment","_body","ServiceCards","smallCards","imgSrc"]},{"type":"boolean","label":"External Page","description":"Select this if the link is not part of the website. This includes SSW.Rules, and SSW.People links","name":"isExternal","namespace":["employment","_body","ServiceCards","smallCards","isExternal"]}],"namespace":["employment","booking","bookingBody","ServiceCards","smallCards"],"searchable":true,"uid":false},{"label":"Links","name":"links","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["employment","_body","ServiceCards","links","label"]},{"type":"string","label":"URL","name":"link","namespace":["employment","_body","ServiceCards","links","link"]}],"namespace":["employment","booking","bookingBody","ServiceCards","links"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["employment","booking","bookingBody","ServiceCards","backgroundColor"],"searchable":true,"uid":false}],"namespace":["employment","booking","bookingBody","ServiceCards"]},{"label":"Table Layout","name":"TableLayout","ui":{"previewSrc":"/images/thumbs/tina/table-layout.jpg"},"fields":[{"label":"Table Style","name":"tableStyle","type":"string","options":["none","basicBorder","styled","benefits"],"namespace":["employment","booking","bookingBody","TableLayout","tableStyle"],"searchable":true,"uid":false},{"label":"First column bolded + left aligned","name":"firstColBold","type":"boolean","required":false,"namespace":["employment","booking","bookingBody","TableLayout","firstColBold"],"searchable":true,"uid":false},{"type":"string","label":"Table Headers","name":"headers","list":true,"namespace":["employment","booking","bookingBody","TableLayout","headers"],"searchable":true,"uid":false},{"type":"object","label":"Rows","name":"rows","list":true,"fields":[{"type":"object","label":"Cells","name":"cells","list":true,"fields":[{"type":"string","label":"Value","name":"cellValue","required":true,"component":{"namespace":["page","beforeBody","TableLayout","rows","cells","cellValue",""]},"namespace":["employment","benefitsBody","TableLayout","rows","cells","cellValue"]}],"ui":{},"namespace":["employment","_body","TableLayout","rows","cells"]},{"type":"boolean","label":"Is Heading","name":"isHeader","required":false,"namespace":["employment","_body","TableLayout","rows","isHeader"]}],"ui":{},"namespace":["employment","booking","bookingBody","TableLayout","rows"],"searchable":true,"uid":false}],"namespace":["employment","booking","bookingBody","TableLayout"]},{"name":"TestimonialsList","label":"Testimonials List","ui":{"previewSrc":"/images/thumbs/tina/testimonials.jpg"},"fields":[{"type":"object","label":"Exclude Categories","name":"excludedCategories","ui":{},"list":true,"fields":[{"type":"reference","label":"Category Name","name":"categoryName","collections":["testimonialCategories"],"namespace":["employment","_body","TestimonialsList","excludedCategories","categoryName"]}],"namespace":["employment","booking","bookingBody","TestimonialsList","excludedCategories"],"searchable":true,"uid":false}],"namespace":["employment","booking","bookingBody","TestimonialsList"]},{"label":"Training Information","name":"TrainingInformation","ui":{"previewSrc":"/images/thumbs/tina/training-information.jpg"},"fields":[{"type":"object","label":"Training Information Items","name":"trainingInformationItems","list":true,"fields":[{"type":"string","label":"Header","name":"header","namespace":["employment","_body","TrainingInformation","trainingInformationItems","header"]},{"type":"rich-text","label":"Body","name":"body","templates":[{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["employment","afterBody","TrainingInformation","trainingInformationItems","body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["employment","afterBody","TrainingInformation","trainingInformationItems","body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["employment","afterBody","TrainingInformation","trainingInformationItems","body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["employment","afterBody","TrainingInformation","trainingInformationItems","body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["employment","afterBody","TrainingInformation","trainingInformationItems","body","VerticalListItem","afterBody"]}],"namespace":["employment","benefitsBody","TrainingInformation","trainingInformationItems","body","VerticalListItem"]},{"label":"Recurring Event","name":"RecurringEvent","ui":{"previewSrc":"/images/thumbs/tina/recurring-event.jpg"},"fields":[{"type":"string","label":"Apply Link Redirect","name":"applyLinkRedirect","namespace":["employment","afterBody","TrainingInformation","trainingInformationItems","body","RecurringEvent","applyLinkRedirect"]},{"type":"string","label":"Day","name":"day","options":[{"label":"Monday","value":"monday"},{"label":"Tuesday","value":"tuesday"},{"label":"Wednesday","value":"wednesday"},{"label":"Thursday","value":"thursday"},{"label":"Friday","value":"friday"},{"label":"Saturday","value":"saturday"},{"label":"Sunday","value":"sunday"}],"required":true,"namespace":["employment","afterBody","TrainingInformation","trainingInformationItems","body","RecurringEvent","day"]}],"namespace":["employment","benefitsBody","TrainingInformation","trainingInformationItems","body","RecurringEvent"]}],"namespace":["employment","_body","TrainingInformation","trainingInformationItems","body"]}],"namespace":["employment","booking","bookingBody","TrainingInformation","trainingInformationItems"],"searchable":true,"uid":false}],"namespace":["employment","booking","bookingBody","TrainingInformation"]},{"label":"Training Learning Outcomes","name":"TrainingLearningOutcome","ui":{"previewSrc":"/images/thumbs/tina/training-learning-outcomes.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["employment","booking","bookingBody","TrainingLearningOutcome","header"],"searchable":true,"uid":false},{"type":"object","label":"List Items","name":"listItems","list":true,"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","_body","TrainingLearningOutcome","listItems","title"]},{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["employment","_body","TrainingLearningOutcome","listItems","content"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","TrainingLearningOutcome","listItems","icon","uploadDir"]},"namespace":["employment","_body","TrainingLearningOutcome","listItems","icon"]}],"namespace":["employment","booking","bookingBody","TrainingLearningOutcome","listItems"],"searchable":true,"uid":false}],"namespace":["employment","booking","bookingBody","TrainingLearningOutcome"]},{"label":"Tweet Embed","name":"TweetEmbed","ui":{"previewSrc":"/images/thumbs/tina/tweet-embed.jpg"},"fields":[{"type":"string","name":"url","label":"Tweet URL","required":true,"namespace":["employment","booking","bookingBody","TweetEmbed","url"],"searchable":true,"uid":false}],"namespace":["employment","booking","bookingBody","TweetEmbed"]},{"name":"UpcomingEvents","label":"Upcoming Events","ui":{"previewSrc":"/images/thumbs/tina/upcoming-events.jpg","defaultItem":{"title":"Upcoming Events","numberOfEvents":30}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","booking","bookingBody","UpcomingEvents","title"],"searchable":true,"uid":false},{"type":"number","label":"Number of Events","name":"numberOfEvents","namespace":["employment","booking","bookingBody","UpcomingEvents","numberOfEvents"],"searchable":true,"uid":false}],"namespace":["employment","booking","bookingBody","UpcomingEvents"]},{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["employment","booking","bookingBody","UtilityButton","buttonText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"link","required":false,"namespace":["employment","booking","bookingBody","UtilityButton","link"],"searchable":true,"uid":false},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["employment","booking","bookingBody","UtilityButton","size"],"searchable":true,"uid":false},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["employment","booking","bookingBody","UtilityButton","btnIcon"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["employment","booking","bookingBody","UtilityButton","animated"],"searchable":true,"uid":false},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["employment","booking","bookingBody","UtilityButton","uncentered"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["employment","booking","bookingBody","UtilityButton","removeTopMargin"],"searchable":true,"uid":false},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["employment","booking","bookingBody","UtilityButton","openInNewTab"],"searchable":true,"uid":false}],"namespace":["employment","booking","bookingBody","UtilityButton"]},{"name":"VerticalImageLayout","label":"Vertical Image Layout","fields":[{"type":"image","label":"Image","name":"imageSrc","uploadDir":{"namespace":["page","beforeBody","VerticalImageLayout","imageSrc","uploadDir"]},"namespace":["employment","booking","bookingBody","VerticalImageLayout","imageSrc"],"searchable":false,"uid":false},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","booking","bookingBody","VerticalImageLayout","altText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"imageLink","namespace":["employment","booking","bookingBody","VerticalImageLayout","imageLink"],"searchable":true,"uid":false},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","booking","bookingBody","VerticalImageLayout","height"],"searchable":true,"uid":false},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","booking","bookingBody","VerticalImageLayout","width"],"searchable":true,"uid":false},{"type":"rich-text","label":"Message","name":"message","required":true,"namespace":["employment","booking","bookingBody","VerticalImageLayout","message"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","booking","bookingBody","VerticalImageLayout","sizes"],"searchable":true,"uid":false}],"namespace":["employment","booking","bookingBody","VerticalImageLayout"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["employment","booking","bookingBody","VerticalListItem","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"number","label":"Index number","name":"index","namespace":["employment","booking","bookingBody","VerticalListItem","index"],"searchable":true,"uid":false},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["employment","booking","bookingBody","VerticalListItem","icon"],"searchable":false,"uid":false},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["employment","booking","bookingBody","VerticalListItem","iconScale"],"searchable":true,"uid":false},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["employment","booking","bookingBody","VerticalListItem","afterBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["employment","booking","bookingBody","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["employment","booking","bookingBody","VideoEmbed","url"],"searchable":true,"uid":false},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["employment","booking","bookingBody","VideoEmbed","videoWidth"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["employment","booking","bookingBody","VideoEmbed","removeMargin"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["employment","booking","bookingBody","VideoEmbed","uncentre"],"searchable":true,"uid":false},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["employment","booking","bookingBody","VideoEmbed","overflow"],"searchable":true,"uid":false},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["employment","booking","bookingBody","VideoEmbed","caption"],"searchable":true,"uid":false},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["employment","booking","bookingBody","VideoEmbed","duration"],"searchable":true,"uid":false}],"namespace":["employment","booking","bookingBody","VideoEmbed"]},{"name":"InlineJotForm","label":"In-line JotForm","ui":{"previewSrc":"/images/thumbs/tina/inline-jot-form.jpg"},"fields":[{"type":"string","name":"title","label":"Title","description":"Optional title for JotForm","namespace":["employment","booking","bookingBody","InlineJotForm","title"],"searchable":true,"uid":false},{"type":"string","name":"jotFormId","label":"JotForm ID","required":true,"namespace":["employment","booking","bookingBody","InlineJotForm","jotFormId"],"searchable":true,"uid":false},{"type":"string","name":"additionalClasses","label":"Additional classnames","description":"Optional styling for iframe element only","namespace":["employment","booking","bookingBody","InlineJotForm","additionalClasses"],"searchable":true,"uid":false}],"namespace":["employment","booking","bookingBody","InlineJotForm"]}],"namespace":["employment","booking","bookingBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"image","label":"Video Background","name":"videoBackground","uploadDir":{"namespace":["employment","booking","videoBackground","uploadDir"]},"namespace":["employment","booking","videoBackground"],"searchable":false,"uid":false}],"namespace":["employment","booking"],"searchable":true,"uid":false},{"type":"rich-text","label":"Body","name":"_body","templates":[{"name":"AboutUs","label":"About Us","ui":{"previewSrc":"/images/thumbs/tina/about-us.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["employment","_body","AboutUs","backgroundColor"],"searchable":true,"uid":false},{"type":"boolean","label":"Show Map","name":"showMap","required":false,"namespace":["employment","_body","AboutUs","showMap"],"searchable":true,"uid":false}],"namespace":["employment","_body","AboutUs"]},{"label":"Agenda","name":"Agenda","ui":{"previewSrc":"/images/thumbs/tina/agenda.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["employment","_body","Agenda","header"],"searchable":true,"uid":false},{"type":"string","label":"Header Color","name":"textColor","options":[{"label":"Red","value":"red"},{"label":"Gray","value":"gray"},{"label":"Default","value":"default"}],"namespace":["employment","_body","Agenda","textColor"],"searchable":true,"uid":false},{"type":"object","label":"Agenda Items","name":"agendaItemList","ui":{},"list":true,"fields":[{"type":"string","label":"Placeholder Text","name":"placeholder","namespace":["employment","benefitsBody","Agenda","agendaItemList","placeholder"]},{"type":"rich-text","label":"Body","name":"body","templates":[{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["employment","opportunitiesBody","Agenda","agendaItemList","body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["employment","opportunitiesBody","Agenda","agendaItemList","body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["employment","opportunitiesBody","Agenda","agendaItemList","body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["employment","opportunitiesBody","Agenda","agendaItemList","body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["employment","opportunitiesBody","Agenda","agendaItemList","body","VerticalListItem","afterBody"]}],"namespace":["employment","afterBody","Agenda","agendaItemList","body","VerticalListItem"]}],"namespace":["employment","benefitsBody","Agenda","agendaItemList","body"]}],"namespace":["employment","_body","Agenda","agendaItemList"],"searchable":true,"uid":false}],"namespace":["employment","_body","Agenda"]},{"label":"Agreement Form","name":"AgreementForm","ui":{"previewSrc":"/images/thumbs/tina/agreement-form.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["employment","_body","AgreementForm","backgroundColor"],"searchable":true,"uid":false},{"type":"object","label":"Form fields","name":"fields","list":true,"fields":[{"type":"string","label":"ID","name":"id","required":true,"namespace":["employment","benefitsBody","AgreementForm","fields","id"]},{"type":"string","label":"Label","name":"label","required":true,"namespace":["employment","benefitsBody","AgreementForm","fields","label"]},{"type":"string","label":"Placeholder","name":"placeholder","namespace":["employment","benefitsBody","AgreementForm","fields","placeholder"]},{"type":"boolean","label":"Resizeable","name":"resizeable","required":true,"namespace":["employment","benefitsBody","AgreementForm","fields","resizeable"]}],"namespace":["employment","_body","AgreementForm","fields"],"searchable":true,"uid":false}],"namespace":["employment","_body","AgreementForm"]},{"label":"Interest Form","name":"InterestForm","ui":{"previewSrc":"/images/thumbs/tina/interest-form.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["employment","_body","InterestForm","buttonText"],"searchable":true,"uid":false}],"namespace":["employment","_body","InterestForm"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["employment","_body","BookingButton","buttonText"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","namespace":["employment","_body","BookingButton","animated"],"searchable":true,"uid":false},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["employment","_body","BookingButton","buttonSubtitle"],"searchable":true,"uid":false}],"namespace":["employment","_body","BookingButton"]},{"name":"BuiltOnAzure","label":"Built on Azure","ui":{"previewSrc":"/images/thumbs/tina/built-on-azure.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["employment","_body","BuiltOnAzure","backgroundColor"],"searchable":true,"uid":false}],"namespace":["employment","_body","BuiltOnAzure"]},{"name":"Carousel","label":"Carousel","ui":{"previewSrc":"/images/thumbs/tina/carousel.jpg"},"fields":[{"label":"Items","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Item description","link":"/","openIn":"sameWindow"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["employment","benefitsBody","Carousel","items","label"]},{"type":"string","label":"URL","name":"link","description":"If link contains ssw.com.au, you can skip the full URL and just use the path. e.g. /services","namespace":["employment","benefitsBody","Carousel","items","link"]},{"type":"string","label":"Open in","name":"openIn","description":"If it is external link, please select 'New window' option.","options":[{"label":"Same window","value":"sameWindow"},{"label":"Modal","value":"modal"},{"label":"New window","value":"newWindow"}],"namespace":["employment","benefitsBody","Carousel","items","openIn"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","Carousel","items","imgSrc","uploadDir"]},"namespace":["employment","benefitsBody","Carousel","items","imgSrc"]}],"namespace":["employment","_body","Carousel","items"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["employment","_body","Carousel","backgroundColor"],"searchable":true,"uid":false},{"type":"number","label":"Delay (Seconds)","name":"delay","required":true,"namespace":["employment","_body","Carousel","delay"],"searchable":true,"uid":false},{"type":"boolean","label":"Show on mobile devices","name":"showOnMobileDevices","namespace":["employment","_body","Carousel","showOnMobileDevices"],"searchable":true,"uid":false}],"namespace":["employment","_body","Carousel"]},{"name":"Citation","label":"Citation","fields":[{"type":"string","label":"author","name":"author","namespace":["employment","_body","Citation","author"],"searchable":true,"uid":false},{"type":"string","label":"article","name":"article","required":true,"namespace":["employment","_body","Citation","article"],"searchable":true,"uid":false}],"namespace":["employment","_body","Citation"]},{"label":"Client List","name":"ClientList","ui":{"previewSrc":"/images/thumbs/tina/clients-list.jpg"},"fields":[{"type":"object","name":"categories","label":"Categories","list":true,"fields":[{"type":"reference","name":"category","label":"Category","collections":["clientCategories"],"namespace":["employment","benefitsBody","ClientList","categories","category"]}],"ui":{},"namespace":["employment","_body","ClientList","categories"],"searchable":true,"uid":false},{"type":"object","name":"clients","label":"Clients list","list":true,"ui":{"previewSrc":"/images/thumbs/tina/clients-list.jpg"},"fields":[{"type":"string","name":"name","label":"Name","namespace":["employment","benefitsBody","ClientList","clients","name"]},{"type":"image","name":"logo","label":"Logo","namespace":["employment","benefitsBody","ClientList","clients","logo"]},{"type":"string","name":"logoUrl","label":"Logo URL","namespace":["employment","benefitsBody","ClientList","clients","logoUrl"]},{"type":"rich-text","name":"content","label":"Content","templates":[{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["employment","opportunitiesBody","ClientList","clients","content","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["employment","opportunitiesBody","ClientList","clients","content","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["employment","opportunitiesBody","ClientList","clients","content","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["employment","opportunitiesBody","ClientList","clients","content","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["employment","opportunitiesBody","ClientList","clients","content","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["employment","opportunitiesBody","ClientList","clients","content","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["employment","opportunitiesBody","ClientList","clients","content","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["employment","opportunitiesBody","ClientList","clients","content","UtilityButton","openInNewTab"]}],"namespace":["employment","afterBody","ClientList","clients","content","UtilityButton"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["employment","opportunitiesBody","ClientList","clients","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["employment","opportunitiesBody","ClientList","clients","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["employment","opportunitiesBody","ClientList","clients","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["employment","opportunitiesBody","ClientList","clients","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["employment","opportunitiesBody","ClientList","clients","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["employment","opportunitiesBody","ClientList","clients","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["employment","opportunitiesBody","ClientList","clients","content","VideoEmbed","duration"]}],"namespace":["employment","afterBody","ClientList","clients","content","VideoEmbed"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["employment","opportunitiesBody","ClientList","clients","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","opportunitiesBody","ClientList","clients","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["employment","opportunitiesBody","ClientList","clients","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","opportunitiesBody","ClientList","clients","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","opportunitiesBody","ClientList","clients","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["employment","opportunitiesBody","ClientList","clients","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["employment","opportunitiesBody","ClientList","clients","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["employment","opportunitiesBody","ClientList","clients","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["employment","opportunitiesBody","ClientList","clients","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","opportunitiesBody","ClientList","clients","content","CustomImage","sizes"]}],"namespace":["employment","afterBody","ClientList","clients","content","CustomImage"]},{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["employment","opportunitiesBody","ClientList","clients","content","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["employment","opportunitiesBody","ClientList","clients","content","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["opportunities","_body","ClientList","clients","content","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["opportunities","_body","ClientList","clients","content","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["opportunities","_body","ClientList","clients","content","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["opportunities","_body","ClientList","clients","content","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["opportunities","_body","ClientList","clients","content","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["opportunities","_body","ClientList","clients","content","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["opportunities","_body","ClientList","clients","content","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["opportunities","_body","ClientList","clients","content","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["opportunities","_body","ClientList","clients","content","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["opportunities","_body","ClientList","clients","content","ContentCard","content","CustomImage","sizes"]}],"namespace":["employment","callToActionBody","ClientList","clients","content","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["opportunities","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["opportunities","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["opportunities","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["opportunities","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["opportunities","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["employment","callToActionBody","ClientList","clients","content","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["opportunities","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["opportunities","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["opportunities","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["opportunities","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["opportunities","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["opportunities","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["opportunities","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","duration"]}],"namespace":["employment","callToActionBody","ClientList","clients","content","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["opportunities","_body","ClientList","clients","content","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["opportunities","_body","ClientList","clients","content","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["eventsIndex","preface","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["eventsIndex","preface","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["eventsIndex","preface","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["eventsIndex","preface","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["eventsIndex","preface","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["opportunities","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["employment","callToActionBody","ClientList","clients","content","ContentCard","content","ColorBlock"]}],"namespace":["employment","opportunitiesBody","ClientList","clients","content","ContentCard","content"]}],"namespace":["employment","afterBody","ClientList","clients","content","ContentCard"]}],"namespace":["employment","benefitsBody","ClientList","clients","content"]},{"type":"string","name":"caseStudyUrl","label":"Case study URL","namespace":["employment","benefitsBody","ClientList","clients","caseStudyUrl"]},{"type":"object","name":"categories","label":"Categories","list":true,"ui":{},"fields":[{"type":"reference","name":"category","label":"Category","collections":["clientCategories"],"namespace":["employment","afterBody","ClientList","clients","categories","category"]}],"namespace":["employment","benefitsBody","ClientList","clients","categories"]}],"namespace":["employment","_body","ClientList","clients"],"searchable":true,"uid":false}],"namespace":["employment","_body","ClientList"]},{"name":"ClientLogos","label":"Client Logos","ui":{"previewSrc":"/images/thumbs/tina/client-logos.jpg"},"fields":[{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","_body","ClientLogos","altText"],"searchable":true,"uid":false}],"namespace":["employment","_body","ClientLogos"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","_body","ColorBlock","title"],"searchable":true,"uid":false},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["employment","_body","ColorBlock","subTitle"],"searchable":true,"uid":false},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["employment","benefitsBody","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["employment","benefitsBody","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["employment","benefitsBody","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["employment","benefitsBody","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["employment","benefitsBody","ColorBlock","colorRow","caption"]}],"namespace":["employment","_body","ColorBlock","colorRow"],"searchable":true,"uid":false}],"namespace":["employment","_body","ColorBlock"]},{"name":"ColorPalette","label":"Color Palette","ui":{"previewSrc":"/images/thumbs/tina/color-palette.jpg"},"fields":[{"type":"string","label":"Name","name":"name","namespace":["employment","_body","ColorPalette","name"],"searchable":true,"uid":false}],"namespace":["employment","_body","ColorPalette"]},{"name":"Content","label":"Content","ui":{"previewSrc":"/images/thumbs/tina/content.jpg","defaultItem":{"body":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","_body","Content","title"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["employment","afterBody","Content","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","afterBody","Content","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["employment","afterBody","Content","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","afterBody","Content","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","afterBody","Content","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["employment","afterBody","Content","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["employment","afterBody","Content","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["employment","afterBody","Content","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["employment","afterBody","Content","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","afterBody","Content","content","CustomImage","sizes"]}],"namespace":["employment","benefitsBody","Content","content","CustomImage"]},{"name":"ClientLogos","label":"Client Logos","ui":{"previewSrc":"/images/thumbs/tina/client-logos.jpg"},"fields":[{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","afterBody","Content","content","ClientLogos","altText"]}],"namespace":["employment","benefitsBody","Content","content","ClientLogos"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["employment","afterBody","Content","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["employment","afterBody","Content","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["employment","afterBody","Content","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["employment","afterBody","Content","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["employment","afterBody","Content","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["employment","afterBody","Content","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["employment","afterBody","Content","content","VideoEmbed","duration"]}],"namespace":["employment","benefitsBody","Content","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","afterBody","Content","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["employment","afterBody","Content","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["employment","opportunitiesBody","Content","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["employment","opportunitiesBody","Content","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["employment","opportunitiesBody","Content","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["employment","opportunitiesBody","Content","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["employment","opportunitiesBody","Content","content","ColorBlock","colorRow","caption"]}],"namespace":["employment","afterBody","Content","content","ColorBlock","colorRow"]}],"namespace":["employment","benefitsBody","Content","content","ColorBlock"]}],"namespace":["employment","_body","Content","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Container Padding","name":"paddingClass","options":["Mobile: No Padding","Mobile: No Top and Horizontal Padding"],"namespace":["employment","_body","Content","paddingClass"],"searchable":true,"uid":false},{"type":"string","label":"Text size","name":"size","options":[{"label":"small","value":"sm"},{"label":"normal","value":"base"},{"label":"large","value":"lg"},{"label":"extra large","value":"xl"},{"label":"2x large","value":"2xl"}],"namespace":["employment","_body","Content","size"],"searchable":true,"uid":false},{"type":"string","label":"Align","name":"align","options":[{"label":"Left","value":"left"},{"label":"Center","value":"center"},{"label":"Right","value":"right"}],"namespace":["employment","_body","Content","align"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["employment","_body","Content","backgroundColor"],"searchable":true,"uid":false}],"namespace":["employment","_body","Content"]},{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["employment","_body","ContentCard","prose"],"searchable":true,"uid":false},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["employment","_body","ContentCard","centerAlignedText"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["employment","afterBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","afterBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["employment","afterBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","afterBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","afterBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["employment","afterBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["employment","afterBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["employment","afterBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["employment","afterBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","afterBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["employment","benefitsBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["employment","afterBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["employment","afterBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["employment","afterBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["employment","afterBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["employment","afterBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["employment","benefitsBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["employment","afterBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["employment","afterBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["employment","afterBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["employment","afterBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["employment","afterBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["employment","afterBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["employment","afterBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["employment","benefitsBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","afterBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["employment","afterBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["employment","opportunitiesBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["employment","opportunitiesBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["employment","opportunitiesBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["employment","opportunitiesBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["employment","opportunitiesBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["employment","afterBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["employment","benefitsBody","ContentCard","content","ColorBlock"]}],"namespace":["employment","_body","ContentCard","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["employment","_body","ContentCard"]},{"name":"CustomDownloadButton","label":"Custom Download Button","ui":{"previewSrc":"/images/thumbs/tina/custom-download-button.jpg"},"fields":[{"type":"string","label":"Text","name":"btnText","namespace":["employment","_body","CustomDownloadButton","btnText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"btnLink","namespace":["employment","_body","CustomDownloadButton","btnLink"],"searchable":true,"uid":false}],"namespace":["employment","_body","CustomDownloadButton"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["employment","_body","CustomImage","src"],"searchable":false,"uid":false},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","_body","CustomImage","altText"],"searchable":true,"uid":false},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["employment","_body","CustomImage","alignment"],"searchable":true,"uid":false},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","_body","CustomImage","height"],"searchable":true,"uid":false},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","_body","CustomImage","width"],"searchable":true,"uid":false},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["employment","_body","CustomImage","link"],"searchable":true,"uid":false},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["employment","_body","CustomImage","customClass"],"searchable":true,"uid":false},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["employment","_body","CustomImage","caption"],"searchable":true,"uid":false},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["employment","_body","CustomImage","captionColor"],"searchable":true,"uid":false},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","_body","CustomImage","sizes"],"searchable":true,"uid":false}],"namespace":["employment","_body","CustomImage"]},{"name":"DomainFromQuery","label":"Domain from query","ui":{"previewSrc":"/images/thumbs/tina/domain-from-query.jpg"},"fields":[{"name":"title","label":"Title","type":"string","description":"This is a H1 heading","namespace":["employment","_body","DomainFromQuery","title"],"searchable":true,"uid":false},{"name":"showDomain","label":"Show domain name","type":"boolean","description":"Query param in URL must have key of 'domain'","namespace":["employment","_body","DomainFromQuery","showDomain"],"searchable":true,"uid":false}],"namespace":["employment","_body","DomainFromQuery"]},{"name":"DownloadBlock","label":"Download Block","ui":{"previewSrc":"/images/thumbs/tina/download-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","_body","DownloadBlock","title"],"searchable":true,"uid":false},{"type":"object","label":"Downloads","name":"downloads","ui":{},"list":true,"fields":[{"type":"string","label":"Header","name":"header","namespace":["employment","benefitsBody","DownloadBlock","downloads","header"]},{"type":"image","label":"Image","name":"img","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","img","uploadDir"]},"namespace":["employment","benefitsBody","DownloadBlock","downloads","img"]},{"type":"string","label":"Image Background","name":"imgBackground","options":["black","grey","white","darkgrey","darkgreen"],"namespace":["employment","benefitsBody","DownloadBlock","downloads","imgBackground"]},{"type":"string","label":"First Link Text","name":"firstLinkText","description":"Defaults to PNG","namespace":["employment","benefitsBody","DownloadBlock","downloads","firstLinkText"]},{"type":"image","label":"First Link","name":"firstLink","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","firstLink","uploadDir"]},"namespace":["employment","benefitsBody","DownloadBlock","downloads","firstLink"]},{"type":"string","label":"Second Link Text","name":"secondLinkText","description":"Defaults to PDF","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","secondLinkText","uploadDir"]},"namespace":["employment","benefitsBody","DownloadBlock","downloads","secondLinkText"]},{"type":"image","label":"Second Link","name":"secondLink","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","secondLink","uploadDir"]},"namespace":["employment","benefitsBody","DownloadBlock","downloads","secondLink"]}],"namespace":["employment","_body","DownloadBlock","downloads"],"searchable":true,"uid":false},{"type":"boolean","label":"Bottom border","name":"bottomBorder","namespace":["employment","_body","DownloadBlock","bottomBorder"],"searchable":true,"uid":false}],"namespace":["employment","_body","DownloadBlock"]},{"name":"DynamicColumns","label":"Dynamic Column Layout","fields":[{"type":"rich-text","label":"Column text body","name":"colBody","required":true,"namespace":["employment","_body","DynamicColumns","colBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"number","label":"Number of columns","name":"colCount","required":true,"ui":{},"namespace":["employment","_body","DynamicColumns","colCount"],"searchable":true,"uid":false}],"namespace":["employment","_body","DynamicColumns"]},{"name":"EventBooking","label":"Events Booking","ui":{"previewSrc":"/images/thumbs/tina/events-booking.jpg"},"fields":[{"type":"number","label":"Duration (In Days)","name":"eventDurationInDays","required":true,"namespace":["employment","_body","EventBooking","eventDurationInDays"],"searchable":true,"uid":false},{"type":"number","label":"Price","name":"price","required":true,"namespace":["employment","_body","EventBooking","price"],"searchable":true,"uid":false},{"type":"number","label":"Discount Price","name":"discountPrice","namespace":["employment","_body","EventBooking","discountPrice"],"searchable":true,"uid":false},{"type":"string","name":"gstText","label":"Select GST Option","options":["inc GST","+ GST"],"required":true,"namespace":["employment","_body","EventBooking","gstText"],"searchable":true,"uid":false},{"type":"string","label":"Discount Note","name":"discountNote","namespace":["employment","_body","EventBooking","discountNote"],"searchable":true,"uid":false},{"type":"object","label":"Event","name":"eventList","ui":{},"list":true,"fields":[{"type":"string","label":"City","name":"city","namespace":["employment","benefitsBody","EventBooking","eventList","city"]},{"type":"datetime","label":"Start Date","name":"date","ui":{},"namespace":["employment","benefitsBody","EventBooking","eventList","date"]},{"type":"string","label":"Booking URL","name":"bookingURL","namespace":["employment","benefitsBody","EventBooking","eventList","bookingURL"]},{"type":"reference","label":"Location","name":"location","collections":["locations"],"namespace":["employment","benefitsBody","EventBooking","eventList","location"]}],"namespace":["employment","_body","EventBooking","eventList"],"searchable":true,"uid":false}],"namespace":["employment","_body","EventBooking"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["employment","afterBody","EventLink","content","Flag","country"]}],"namespace":["employment","benefitsBody","EventLink","content","Flag"]}],"namespace":["employment","_body","EventLink","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Link","name":"link","namespace":["employment","_body","EventLink","link"],"searchable":true,"uid":false},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["employment","_body","EventLink","eventThumbnail"],"searchable":false,"uid":false},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["employment","_body","EventLink","thumbnailAlt"],"searchable":true,"uid":false}],"namespace":["employment","_body","EventLink"]},{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["employment","_body","Flag","country"],"searchable":true,"uid":false}],"namespace":["employment","_body","Flag"]},{"name":"FixedColumns","label":"Fixed Column Layout (2 columns)","ui":{"previewSrc":"/images/thumbs/tina/fixed-columns.jpg"},"fields":[{"type":"rich-text","label":"Header Section (Optional)","name":"headerSection","namespace":["employment","_body","FixedColumns","headerSection"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"First column text","name":"firstColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["employment","afterBody","FixedColumns","firstColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["employment","afterBody","FixedColumns","firstColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["employment","callToActionBody","FixedColumns","firstColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","callToActionBody","FixedColumns","firstColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["employment","callToActionBody","FixedColumns","firstColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","callToActionBody","FixedColumns","firstColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","callToActionBody","FixedColumns","firstColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["employment","callToActionBody","FixedColumns","firstColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["employment","callToActionBody","FixedColumns","firstColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["employment","callToActionBody","FixedColumns","firstColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["employment","callToActionBody","FixedColumns","firstColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","callToActionBody","FixedColumns","firstColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["employment","opportunitiesBody","FixedColumns","firstColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["employment","callToActionBody","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["employment","callToActionBody","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["employment","callToActionBody","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["employment","callToActionBody","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["employment","callToActionBody","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["employment","opportunitiesBody","FixedColumns","firstColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["employment","callToActionBody","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["employment","callToActionBody","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["employment","callToActionBody","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["employment","callToActionBody","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["employment","callToActionBody","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["employment","callToActionBody","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["employment","callToActionBody","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["employment","opportunitiesBody","FixedColumns","firstColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","callToActionBody","FixedColumns","firstColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["employment","callToActionBody","FixedColumns","firstColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["opportunities","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["opportunities","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["opportunities","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["opportunities","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["opportunities","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["employment","callToActionBody","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["employment","opportunitiesBody","FixedColumns","firstColBody","ContentCard","content","ColorBlock"]}],"namespace":["employment","afterBody","FixedColumns","firstColBody","ContentCard","content"]}],"namespace":["employment","benefitsBody","FixedColumns","firstColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["employment","afterBody","FixedColumns","firstColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","afterBody","FixedColumns","firstColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["employment","afterBody","FixedColumns","firstColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","afterBody","FixedColumns","firstColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","afterBody","FixedColumns","firstColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["employment","afterBody","FixedColumns","firstColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["employment","afterBody","FixedColumns","firstColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["employment","afterBody","FixedColumns","firstColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["employment","afterBody","FixedColumns","firstColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","afterBody","FixedColumns","firstColBody","CustomImage","sizes"]}],"namespace":["employment","benefitsBody","FixedColumns","firstColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["employment","callToActionBody","FixedColumns","firstColBody","EventLink","content","Flag","country"]}],"namespace":["employment","opportunitiesBody","FixedColumns","firstColBody","EventLink","content","Flag"]}],"namespace":["employment","afterBody","FixedColumns","firstColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["employment","afterBody","FixedColumns","firstColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["employment","afterBody","FixedColumns","firstColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["employment","afterBody","FixedColumns","firstColBody","EventLink","thumbnailAlt"]}],"namespace":["employment","benefitsBody","FixedColumns","firstColBody","EventLink"]}],"namespace":["employment","_body","FixedColumns","firstColBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"Second column text","name":"secondColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["employment","afterBody","FixedColumns","secondColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["employment","afterBody","FixedColumns","secondColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["employment","callToActionBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","callToActionBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["employment","callToActionBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","callToActionBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","callToActionBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["employment","callToActionBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["employment","callToActionBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["employment","callToActionBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["employment","callToActionBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","callToActionBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["employment","opportunitiesBody","FixedColumns","secondColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["employment","callToActionBody","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["employment","callToActionBody","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["employment","callToActionBody","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["employment","callToActionBody","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["employment","callToActionBody","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["employment","opportunitiesBody","FixedColumns","secondColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["employment","callToActionBody","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["employment","callToActionBody","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["employment","callToActionBody","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["employment","callToActionBody","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["employment","callToActionBody","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["employment","callToActionBody","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["employment","callToActionBody","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["employment","opportunitiesBody","FixedColumns","secondColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","callToActionBody","FixedColumns","secondColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["employment","callToActionBody","FixedColumns","secondColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["opportunities","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["opportunities","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["opportunities","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["opportunities","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["opportunities","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["employment","callToActionBody","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["employment","opportunitiesBody","FixedColumns","secondColBody","ContentCard","content","ColorBlock"]}],"namespace":["employment","afterBody","FixedColumns","secondColBody","ContentCard","content"]}],"namespace":["employment","benefitsBody","FixedColumns","secondColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["employment","afterBody","FixedColumns","secondColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","afterBody","FixedColumns","secondColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["employment","afterBody","FixedColumns","secondColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","afterBody","FixedColumns","secondColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","afterBody","FixedColumns","secondColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["employment","afterBody","FixedColumns","secondColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["employment","afterBody","FixedColumns","secondColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["employment","afterBody","FixedColumns","secondColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["employment","afterBody","FixedColumns","secondColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","afterBody","FixedColumns","secondColBody","CustomImage","sizes"]}],"namespace":["employment","benefitsBody","FixedColumns","secondColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["employment","callToActionBody","FixedColumns","secondColBody","EventLink","content","Flag","country"]}],"namespace":["employment","opportunitiesBody","FixedColumns","secondColBody","EventLink","content","Flag"]}],"namespace":["employment","afterBody","FixedColumns","secondColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["employment","afterBody","FixedColumns","secondColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["employment","afterBody","FixedColumns","secondColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["employment","afterBody","FixedColumns","secondColBody","EventLink","thumbnailAlt"]}],"namespace":["employment","benefitsBody","FixedColumns","secondColBody","EventLink"]}],"namespace":["employment","_body","FixedColumns","secondColBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["employment","_body","FixedColumns"]},{"name":"FixedTabsLayout","label":"Fixed Tabs Layout","ui":{"previewSrc":"/images/thumbs/tina/fixed-tabs-layout.jpg"},"fields":[{"type":"string","name":"firstTab","label":"First Tab","namespace":["employment","_body","FixedTabsLayout","firstTab"],"searchable":true,"uid":false},{"type":"rich-text","name":"firstHeading","label":"First Heading","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["employment","afterBody","FixedTabsLayout","firstHeading","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["employment","afterBody","FixedTabsLayout","firstHeading","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["employment","afterBody","FixedTabsLayout","firstHeading","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["employment","afterBody","FixedTabsLayout","firstHeading","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["employment","afterBody","FixedTabsLayout","firstHeading","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["employment","afterBody","FixedTabsLayout","firstHeading","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["employment","afterBody","FixedTabsLayout","firstHeading","VideoEmbed","duration"]}],"namespace":["employment","benefitsBody","FixedTabsLayout","firstHeading","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["employment","afterBody","FixedTabsLayout","firstHeading","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["employment","afterBody","FixedTabsLayout","firstHeading","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["employment","afterBody","FixedTabsLayout","firstHeading","BookingButton","buttonSubtitle"]}],"namespace":["employment","benefitsBody","FixedTabsLayout","firstHeading","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["employment","afterBody","FixedTabsLayout","firstHeading","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["employment","opportunitiesBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["employment","opportunitiesBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["employment","opportunitiesBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["employment","opportunitiesBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","skills"]}],"namespace":["employment","afterBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["employment","opportunitiesBody","FixedTabsLayout","firstHeading","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["employment","opportunitiesBody","FixedTabsLayout","firstHeading","ExpertBlock","link","url"]}],"namespace":["employment","afterBody","FixedTabsLayout","firstHeading","ExpertBlock","link"]}],"namespace":["employment","benefitsBody","FixedTabsLayout","firstHeading","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","opportunitiesBody","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["employment","opportunitiesBody","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["employment","opportunitiesBody","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["employment","callToActionBody","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["employment","callToActionBody","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["employment","callToActionBody","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["employment","opportunitiesBody","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["employment","afterBody","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["employment","benefitsBody","FixedTabsLayout","firstHeading","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["employment","afterBody","FixedTabsLayout","firstHeading","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","afterBody","FixedTabsLayout","firstHeading","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["employment","afterBody","FixedTabsLayout","firstHeading","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","afterBody","FixedTabsLayout","firstHeading","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","afterBody","FixedTabsLayout","firstHeading","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["employment","afterBody","FixedTabsLayout","firstHeading","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["employment","afterBody","FixedTabsLayout","firstHeading","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["employment","afterBody","FixedTabsLayout","firstHeading","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["employment","afterBody","FixedTabsLayout","firstHeading","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","afterBody","FixedTabsLayout","firstHeading","CustomImage","sizes"]}],"namespace":["employment","benefitsBody","FixedTabsLayout","firstHeading","CustomImage"]}],"namespace":["employment","_body","FixedTabsLayout","firstHeading"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","name":"firstBody","label":"First Body","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["employment","afterBody","FixedTabsLayout","firstBody","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["employment","afterBody","FixedTabsLayout","firstBody","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["employment","afterBody","FixedTabsLayout","firstBody","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["employment","afterBody","FixedTabsLayout","firstBody","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["employment","afterBody","FixedTabsLayout","firstBody","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["employment","afterBody","FixedTabsLayout","firstBody","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["employment","afterBody","FixedTabsLayout","firstBody","VideoEmbed","duration"]}],"namespace":["employment","benefitsBody","FixedTabsLayout","firstBody","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["employment","afterBody","FixedTabsLayout","firstBody","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["employment","afterBody","FixedTabsLayout","firstBody","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["employment","afterBody","FixedTabsLayout","firstBody","BookingButton","buttonSubtitle"]}],"namespace":["employment","benefitsBody","FixedTabsLayout","firstBody","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["employment","afterBody","FixedTabsLayout","firstBody","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["employment","opportunitiesBody","FixedTabsLayout","firstBody","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["employment","opportunitiesBody","FixedTabsLayout","firstBody","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["employment","opportunitiesBody","FixedTabsLayout","firstBody","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["employment","opportunitiesBody","FixedTabsLayout","firstBody","ExpertBlock","expertList","skills"]}],"namespace":["employment","afterBody","FixedTabsLayout","firstBody","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["employment","opportunitiesBody","FixedTabsLayout","firstBody","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["employment","opportunitiesBody","FixedTabsLayout","firstBody","ExpertBlock","link","url"]}],"namespace":["employment","afterBody","FixedTabsLayout","firstBody","ExpertBlock","link"]}],"namespace":["employment","benefitsBody","FixedTabsLayout","firstBody","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","opportunitiesBody","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["employment","opportunitiesBody","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["employment","opportunitiesBody","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["employment","callToActionBody","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["employment","callToActionBody","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["employment","callToActionBody","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["employment","opportunitiesBody","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["employment","afterBody","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["employment","benefitsBody","FixedTabsLayout","firstBody","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["employment","afterBody","FixedTabsLayout","firstBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","afterBody","FixedTabsLayout","firstBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["employment","afterBody","FixedTabsLayout","firstBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","afterBody","FixedTabsLayout","firstBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","afterBody","FixedTabsLayout","firstBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["employment","afterBody","FixedTabsLayout","firstBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["employment","afterBody","FixedTabsLayout","firstBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["employment","afterBody","FixedTabsLayout","firstBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["employment","afterBody","FixedTabsLayout","firstBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","afterBody","FixedTabsLayout","firstBody","CustomImage","sizes"]}],"namespace":["employment","benefitsBody","FixedTabsLayout","firstBody","CustomImage"]}],"namespace":["employment","_body","FixedTabsLayout","firstBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","name":"secondTab","label":"Second Tab","namespace":["employment","_body","FixedTabsLayout","secondTab"],"searchable":true,"uid":false},{"type":"rich-text","name":"secondHeading","label":"Second Heading","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["employment","afterBody","FixedTabsLayout","secondHeading","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["employment","afterBody","FixedTabsLayout","secondHeading","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["employment","afterBody","FixedTabsLayout","secondHeading","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["employment","afterBody","FixedTabsLayout","secondHeading","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["employment","afterBody","FixedTabsLayout","secondHeading","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["employment","afterBody","FixedTabsLayout","secondHeading","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["employment","afterBody","FixedTabsLayout","secondHeading","VideoEmbed","duration"]}],"namespace":["employment","benefitsBody","FixedTabsLayout","secondHeading","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["employment","afterBody","FixedTabsLayout","secondHeading","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["employment","afterBody","FixedTabsLayout","secondHeading","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["employment","afterBody","FixedTabsLayout","secondHeading","BookingButton","buttonSubtitle"]}],"namespace":["employment","benefitsBody","FixedTabsLayout","secondHeading","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["employment","afterBody","FixedTabsLayout","secondHeading","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["employment","opportunitiesBody","FixedTabsLayout","secondHeading","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["employment","opportunitiesBody","FixedTabsLayout","secondHeading","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["employment","opportunitiesBody","FixedTabsLayout","secondHeading","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["employment","opportunitiesBody","FixedTabsLayout","secondHeading","ExpertBlock","expertList","skills"]}],"namespace":["employment","afterBody","FixedTabsLayout","secondHeading","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["employment","opportunitiesBody","FixedTabsLayout","secondHeading","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["employment","opportunitiesBody","FixedTabsLayout","secondHeading","ExpertBlock","link","url"]}],"namespace":["employment","afterBody","FixedTabsLayout","secondHeading","ExpertBlock","link"]}],"namespace":["employment","benefitsBody","FixedTabsLayout","secondHeading","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","opportunitiesBody","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["employment","opportunitiesBody","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["employment","opportunitiesBody","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["employment","callToActionBody","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["employment","callToActionBody","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["employment","callToActionBody","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["employment","opportunitiesBody","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["employment","afterBody","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["employment","benefitsBody","FixedTabsLayout","secondHeading","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["employment","afterBody","FixedTabsLayout","secondHeading","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","afterBody","FixedTabsLayout","secondHeading","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["employment","afterBody","FixedTabsLayout","secondHeading","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","afterBody","FixedTabsLayout","secondHeading","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","afterBody","FixedTabsLayout","secondHeading","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["employment","afterBody","FixedTabsLayout","secondHeading","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["employment","afterBody","FixedTabsLayout","secondHeading","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["employment","afterBody","FixedTabsLayout","secondHeading","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["employment","afterBody","FixedTabsLayout","secondHeading","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","afterBody","FixedTabsLayout","secondHeading","CustomImage","sizes"]}],"namespace":["employment","benefitsBody","FixedTabsLayout","secondHeading","CustomImage"]}],"namespace":["employment","_body","FixedTabsLayout","secondHeading"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","name":"secondBody","label":"Second Body","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["employment","afterBody","FixedTabsLayout","secondBody","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["employment","afterBody","FixedTabsLayout","secondBody","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["employment","afterBody","FixedTabsLayout","secondBody","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["employment","afterBody","FixedTabsLayout","secondBody","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["employment","afterBody","FixedTabsLayout","secondBody","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["employment","afterBody","FixedTabsLayout","secondBody","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["employment","afterBody","FixedTabsLayout","secondBody","VideoEmbed","duration"]}],"namespace":["employment","benefitsBody","FixedTabsLayout","secondBody","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["employment","afterBody","FixedTabsLayout","secondBody","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["employment","afterBody","FixedTabsLayout","secondBody","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["employment","afterBody","FixedTabsLayout","secondBody","BookingButton","buttonSubtitle"]}],"namespace":["employment","benefitsBody","FixedTabsLayout","secondBody","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["employment","afterBody","FixedTabsLayout","secondBody","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["employment","opportunitiesBody","FixedTabsLayout","secondBody","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["employment","opportunitiesBody","FixedTabsLayout","secondBody","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["employment","opportunitiesBody","FixedTabsLayout","secondBody","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["employment","opportunitiesBody","FixedTabsLayout","secondBody","ExpertBlock","expertList","skills"]}],"namespace":["employment","afterBody","FixedTabsLayout","secondBody","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["employment","opportunitiesBody","FixedTabsLayout","secondBody","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["employment","opportunitiesBody","FixedTabsLayout","secondBody","ExpertBlock","link","url"]}],"namespace":["employment","afterBody","FixedTabsLayout","secondBody","ExpertBlock","link"]}],"namespace":["employment","benefitsBody","FixedTabsLayout","secondBody","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","opportunitiesBody","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["employment","opportunitiesBody","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["employment","opportunitiesBody","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["employment","callToActionBody","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["employment","callToActionBody","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["employment","callToActionBody","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["employment","opportunitiesBody","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["employment","afterBody","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["employment","benefitsBody","FixedTabsLayout","secondBody","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["employment","afterBody","FixedTabsLayout","secondBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","afterBody","FixedTabsLayout","secondBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["employment","afterBody","FixedTabsLayout","secondBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","afterBody","FixedTabsLayout","secondBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","afterBody","FixedTabsLayout","secondBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["employment","afterBody","FixedTabsLayout","secondBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["employment","afterBody","FixedTabsLayout","secondBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["employment","afterBody","FixedTabsLayout","secondBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["employment","afterBody","FixedTabsLayout","secondBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","afterBody","FixedTabsLayout","secondBody","CustomImage","sizes"]}],"namespace":["employment","benefitsBody","FixedTabsLayout","secondBody","CustomImage"]}],"namespace":["employment","_body","FixedTabsLayout","secondBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["employment","_body","FixedTabsLayout"]},{"label":"Google Maps","name":"GoogleMaps","ui":{"previewSrc":"/images/thumbs/tina/google-maps.jpg"},"fields":[{"type":"string","label":"URL","name":"embedUrl","required":true,"namespace":["employment","_body","GoogleMaps","embedUrl"],"searchable":true,"uid":false},{"type":"string","label":"Width","name":"embedWidth","namespace":["employment","_body","GoogleMaps","embedWidth"],"searchable":true,"uid":false},{"type":"string","label":"Height","name":"embedHeight","namespace":["employment","_body","GoogleMaps","embedHeight"],"searchable":true,"uid":false}],"namespace":["employment","_body","GoogleMaps"]},{"label":"Grid Layout","name":"GridLayout","ui":{"previewSrc":"/images/thumbs/tina/grid-layout.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","_body","GridLayout","title"],"searchable":true,"uid":false},{"type":"object","list":true,"label":"Grid Items","name":"grids","ui":{},"fields":[{"type":"string","label":"Grid Title","name":"gridTitle","namespace":["employment","benefitsBody","GridLayout","grids","gridTitle"]},{"type":"boolean","label":"Show Grid Title","name":"showGridTitle","namespace":["employment","benefitsBody","GridLayout","grids","showGridTitle"]},{"type":"boolean","label":"Centered Grid Title","name":"centeredGridTitle","namespace":["employment","benefitsBody","GridLayout","grids","centeredGridTitle"]},{"type":"boolean","label":"Show Header Divider","name":"showHeaderDivider","namespace":["employment","benefitsBody","GridLayout","grids","showHeaderDivider"]},{"type":"boolean","label":"Offset Grid Start","name":"offsetGridStart","namespace":["employment","benefitsBody","GridLayout","grids","offsetGridStart"]},{"type":"object","label":"Blocks","name":"blocks","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","afterBody","GridLayout","grids","blocks","title"]},{"type":"boolean","label":"Show Title","name":"showTitle","namespace":["employment","afterBody","GridLayout","grids","blocks","showTitle"]},{"type":"image","label":"Image","name":"image","uploadDir":{"namespace":["page","beforeBody","GridLayout","grids","blocks","image","uploadDir"]},"namespace":["employment","afterBody","GridLayout","grids","blocks","image"]},{"type":"image","label":"Related Image","name":"relatedImage","uploadDir":{"namespace":["page","beforeBody","GridLayout","grids","blocks","relatedImage","uploadDir"]},"namespace":["employment","afterBody","GridLayout","grids","blocks","relatedImage"]},{"type":"rich-text","name":"linkContent","label":"Link Content","templates":[{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["employment","callToActionBody","GridLayout","grids","blocks","linkContent","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["employment","callToActionBody","GridLayout","grids","blocks","linkContent","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["employment","callToActionBody","GridLayout","grids","blocks","linkContent","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["employment","callToActionBody","GridLayout","grids","blocks","linkContent","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["employment","callToActionBody","GridLayout","grids","blocks","linkContent","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["employment","callToActionBody","GridLayout","grids","blocks","linkContent","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["employment","callToActionBody","GridLayout","grids","blocks","linkContent","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["employment","callToActionBody","GridLayout","grids","blocks","linkContent","UtilityButton","openInNewTab"]}],"namespace":["employment","opportunitiesBody","GridLayout","grids","blocks","linkContent","UtilityButton"]}],"namespace":["employment","afterBody","GridLayout","grids","blocks","linkContent"]}],"namespace":["employment","benefitsBody","GridLayout","grids","blocks"]}],"namespace":["employment","_body","GridLayout","grids"],"searchable":true,"uid":false}],"namespace":["employment","_body","GridLayout"]},{"name":"Hero","label":"Hero","ui":{"previewSrc":"/blocks/hero.png","defaultItem":{"tagline":"Here's some text above the other text","headline":"This Big Text is Totally Awesome","text":"Phasellus scelerisque, libero eu finibus rutrum, risus risus accumsan libero, nec molestie urna dui a leo."}},"fields":[{"type":"string","label":"Tagline","name":"tagline","namespace":["employment","_body","Hero","tagline"],"searchable":true,"uid":false},{"type":"string","label":"Headline","name":"headline","namespace":["employment","_body","Hero","headline"],"searchable":true,"uid":false},{"label":"Text","name":"text","type":"rich-text","namespace":["employment","_body","Hero","text"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"label":"Actions","name":"actions","type":"object","list":true,"ui":{"defaultItem":{"label":"Action Label","type":"button","icon":true,"link":"/"}},"fields":[{"label":"Label","name":"label","type":"string","namespace":["employment","benefitsBody","Hero","actions","label"]},{"label":"Type","name":"type","type":"string","options":[{"label":"Button","value":"button"},{"label":"Link","value":"link"}],"namespace":["employment","benefitsBody","Hero","actions","type"]},{"label":"Icon","name":"icon","type":"boolean","namespace":["employment","benefitsBody","Hero","actions","icon"]},{"label":"Link","name":"link","type":"string","namespace":["employment","benefitsBody","Hero","actions","link"]}],"namespace":["employment","_body","Hero","actions"],"searchable":true,"uid":false},{"type":"object","label":"Image","name":"image","fields":[{"name":"src","label":"Image Source","type":"image","namespace":["employment","benefitsBody","Hero","image","src"]},{"name":"alt","label":"Alt Text","type":"string","namespace":["employment","benefitsBody","Hero","image","alt"]}],"namespace":["employment","_body","Hero","image"],"searchable":true,"uid":false},{"type":"string","label":"Color","name":"color","options":[{"label":"Default","value":"default"},{"label":"Tint","value":"tint"},{"label":"Primary","value":"primary"}],"namespace":["employment","_body","Hero","color"],"searchable":true,"uid":false}],"namespace":["employment","_body","Hero"]},{"name":"HorizontalCard","label":"Horizontal Card","ui":{"previewSrc":"/images/thumbs/tina/horizontal-card.jpg"},"fields":[{"type":"object","label":"Cards","name":"cardList","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","benefitsBody","HorizontalCard","cardList","title"]},{"type":"rich-text","label":"Content","name":"content","namespace":["employment","benefitsBody","HorizontalCard","cardList","content"]},{"type":"image","label":"Thumbnail","name":"thumbnail","uploadDir":{"namespace":["page","beforeBody","HorizontalCard","cardList","thumbnail","uploadDir"]},"namespace":["employment","benefitsBody","HorizontalCard","cardList","thumbnail"]},{"type":"string","label":"Link","name":"link","namespace":["employment","benefitsBody","HorizontalCard","cardList","link"]}],"namespace":["employment","_body","HorizontalCard","cardList"],"searchable":true,"uid":false},{"type":"object","label":"Button","name":"button","fields":[{"type":"string","label":"Text","name":"text","namespace":["employment","benefitsBody","HorizontalCard","button","text"]},{"type":"string","label":"Link","name":"link","namespace":["employment","benefitsBody","HorizontalCard","button","link"]}],"namespace":["employment","_body","HorizontalCard","button"],"searchable":true,"uid":false}],"namespace":["employment","_body","HorizontalCard"]},{"name":"InternalCarousel","label":"Internal Carousel","ui":{"previewSrc":"/images/thumbs/tina/internal-carousel.jpg"},"fields":[{"label":"Images","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Image description"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["employment","benefitsBody","InternalCarousel","items","label"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","InternalCarousel","items","imgSrc","uploadDir"]},"namespace":["employment","benefitsBody","InternalCarousel","items","imgSrc"]}],"namespace":["employment","_body","InternalCarousel","items"],"searchable":true,"uid":false},{"type":"string","label":"Header","name":"header","namespace":["employment","_body","InternalCarousel","header"],"searchable":true,"uid":false},{"type":"rich-text","label":"Text","name":"paragraph","isBody":false,"namespace":["employment","_body","InternalCarousel","paragraph"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Website","name":"website","namespace":["employment","_body","InternalCarousel","website"],"searchable":true,"uid":false},{"type":"object","label":"Technologies","name":"technologies","list":true,"ui":{},"fields":[{"type":"string","label":"Name","name":"name","namespace":["employment","benefitsBody","InternalCarousel","technologies","name"]}],"namespace":["employment","_body","InternalCarousel","technologies"],"searchable":true,"uid":false},{"type":"string","label":"Case Study","name":"caseStudyUrl","namespace":["employment","_body","InternalCarousel","caseStudyUrl"],"searchable":true,"uid":false},{"type":"string","label":"Video URL","name":"videoUrl","namespace":["employment","_body","InternalCarousel","videoUrl"],"searchable":true,"uid":false}],"namespace":["employment","_body","InternalCarousel"]},{"label":"Join As Presenter","name":"joinAsPresenter","fields":[{"label":"Learn More Link","name":"link","type":"string","namespace":["employment","_body","joinAsPresenter","link"],"searchable":true,"uid":false},{"label":"Image","name":"img","type":"image","namespace":["employment","_body","joinAsPresenter","img"],"searchable":false,"uid":false}],"namespace":["employment","_body","joinAsPresenter"]},{"label":"Join Github","name":"joinGithub","ui":{"previewSrc":"/images/thumbs/tina/join-github.jpg"},"fields":[{"label":"Title","name":"title","type":"string","namespace":["employment","_body","joinGithub","title"],"searchable":true,"uid":false},{"label":"Join Github Link","name":"link","type":"string","namespace":["employment","_body","joinGithub","link"],"searchable":true,"uid":false}],"namespace":["employment","_body","joinGithub"]},{"name":"JotFormEmbed","label":"JotForm Embed","ui":{"previewSrc":"/images/thumbs/tina/jotform-embed.jpg"},"fields":[{"type":"string","name":"jotFormId","label":"JotForm Id","required":true,"namespace":["employment","_body","JotFormEmbed","jotFormId"],"searchable":true,"uid":false},{"type":"string","label":"Button Text","name":"buttonText","namespace":["employment","_body","JotFormEmbed","buttonText"],"searchable":true,"uid":false},{"type":"string","name":"containerClass","label":"Container Class","namespace":["employment","_body","JotFormEmbed","containerClass"],"searchable":true,"uid":false},{"type":"string","label":"Button Class","name":"buttonClass","namespace":["employment","_body","JotFormEmbed","buttonClass"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","namespace":["employment","_body","JotFormEmbed","animated"],"searchable":true,"uid":false}],"namespace":["employment","_body","JotFormEmbed"]},{"name":"LatestTech","label":"Latest Tech","ui":{"previewSrc":"/images/thumbs/tina/latest-tech.jpg"},"fields":[{"type":"reference","description":"Select a config file including a set of badges","collections":["userGroupGlobal"],"label":"Badges","name":"badges","namespace":["employment","_body","LatestTech","badges"],"searchable":true,"uid":false}],"namespace":["employment","_body","LatestTech"]},{"name":"LocationBlock","label":"Locations","ui":{"previewSrc":"/images/thumbs/tina/locations.jpg"},"fields":[{"type":"string","name":"title","label":"Title","namespace":["employment","_body","LocationBlock","title"],"searchable":true,"uid":false},{"type":"object","label":"Location List","name":"locationList","list":true,"ui":{},"fields":[{"type":"reference","collections":["locations"],"label":"Location","name":"location","namespace":["employment","benefitsBody","LocationBlock","locationList","location"]}],"namespace":["employment","_body","LocationBlock","locationList"],"searchable":true,"uid":false},{"type":"object","name":"chapelWebsite","label":"Chapel Website","fields":[{"type":"string","name":"title","label":"Text","namespace":["employment","benefitsBody","LocationBlock","chapelWebsite","title"]},{"type":"string","name":"URL","label":"URL","namespace":["employment","benefitsBody","LocationBlock","chapelWebsite","URL"]}],"namespace":["employment","_body","LocationBlock","chapelWebsite"],"searchable":true,"uid":false}],"namespace":["employment","_body","LocationBlock"]},{"name":"NewslettersTable","label":"Newsletters Table","ui":{"previewSrc":"/images/thumbs/tina/newsletters-table.jpg"},"fields":[{"type":"string","label":"Header text","name":"headerText","namespace":["employment","_body","NewslettersTable","headerText"],"searchable":true,"uid":false}],"namespace":["employment","_body","NewslettersTable"]},{"label":"Organizer","name":"organizer","fields":[{"type":"image","label":"Profile Image","name":"profileImg","namespace":["employment","_body","organizer","profileImg"],"searchable":false,"uid":false},{"type":"string","label":"Profile Link","name":"profileLink","namespace":["employment","_body","organizer","profileLink"],"searchable":true,"uid":false},{"type":"string","label":"Name","name":"name","namespace":["employment","_body","organizer","name"],"searchable":true,"uid":false},{"type":"string","label":"Position","name":"position","namespace":["employment","_body","organizer","position"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","namespace":["employment","_body","organizer","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["employment","_body","organizer"]},{"label":"Payment Block","name":"paymentBlock","ui":{"previewSrc":"/images/thumbs/tina/payment-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","_body","paymentBlock","title"],"searchable":true,"uid":false},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["employment","_body","paymentBlock","subTitle"],"searchable":true,"uid":false},{"type":"reference","label":"Payment Links","name":"payments","collections":["paymentDetails"],"namespace":["employment","_body","paymentBlock","payments"],"searchable":true,"uid":false},{"type":"rich-text","label":"Footer","name":"footer","namespace":["employment","_body","paymentBlock","footer"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"image","label":"Credit Cards Image","name":"creditImgSrc","namespace":["employment","_body","paymentBlock","creditImgSrc"],"searchable":false,"uid":false},{"type":"string","label":"Alt Text","name":"altTxt","namespace":["employment","_body","paymentBlock","altTxt"],"searchable":true,"uid":false}],"namespace":["employment","_body","paymentBlock"]},{"name":"PresenterBlock","label":"Presenters","ui":{"previewSrc":"/images/thumbs/tina/presenters.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["employment","_body","PresenterBlock","header"],"searchable":true,"uid":false},{"type":"object","name":"presenterList","label":"Presenters","list":true,"ui":{},"fields":[{"type":"reference","name":"presenter","label":"Presenters","collections":["presenter"],"namespace":["employment","benefitsBody","PresenterBlock","presenterList","presenter"]}],"namespace":["employment","_body","PresenterBlock","presenterList"],"searchable":true,"uid":false},{"type":"object","label":"Other Events","name":"otherEvent","fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","benefitsBody","PresenterBlock","otherEvent","title"]},{"type":"string","label":"URL","name":"eventURL","namespace":["employment","benefitsBody","PresenterBlock","otherEvent","eventURL"]}],"namespace":["employment","_body","PresenterBlock","otherEvent"],"searchable":true,"uid":false}],"namespace":["employment","_body","PresenterBlock"]},{"label":"Recurring Event","name":"RecurringEvent","ui":{"previewSrc":"/images/thumbs/tina/recurring-event.jpg"},"fields":[{"type":"string","label":"Apply Link Redirect","name":"applyLinkRedirect","namespace":["employment","_body","RecurringEvent","applyLinkRedirect"],"searchable":true,"uid":false},{"type":"string","label":"Day","name":"day","options":[{"label":"Monday","value":"monday"},{"label":"Tuesday","value":"tuesday"},{"label":"Wednesday","value":"wednesday"},{"label":"Thursday","value":"thursday"},{"label":"Friday","value":"friday"},{"label":"Saturday","value":"saturday"},{"label":"Sunday","value":"sunday"}],"required":true,"namespace":["employment","_body","RecurringEvent","day"],"searchable":true,"uid":false}],"namespace":["employment","_body","RecurringEvent"]},{"name":"SectionHeader","label":"Section Header","ui":{"previewSrc":"/images/thumbs/tina/section-header.jpg"},"fields":[{"type":"string","label":"Header Text","name":"headerText","namespace":["employment","_body","SectionHeader","headerText"],"searchable":true,"uid":false}],"namespace":["employment","_body","SectionHeader"]},{"name":"ServiceCards","label":"Service Cards","ui":{"previewSrc":"/images/thumbs/tina/services-cards.jpg"},"fields":[{"type":"string","label":"Big Cards Label","name":"bigCardsLabel","namespace":["employment","_body","ServiceCards","bigCardsLabel"],"searchable":true,"uid":false},{"label":"Big Cards","name":"bigCards","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","benefitsBody","ServiceCards","bigCards","title"]},{"type":"string","label":"Description","component":"textarea","name":"description","namespace":["employment","benefitsBody","ServiceCards","bigCards","description"]},{"type":"string","label":"URL","name":"link","namespace":["employment","benefitsBody","ServiceCards","bigCards","link"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Red","value":"red"},{"label":"Light Gray","value":"lightgray"},{"label":"Medium Gray","value":"mediumgray"},{"label":"Dark Gray","value":"darkgray"}],"namespace":["employment","benefitsBody","ServiceCards","bigCards","color"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","ServiceCards","bigCards","imgSrc","uploadDir"]},"namespace":["employment","benefitsBody","ServiceCards","bigCards","imgSrc"]}],"namespace":["employment","_body","ServiceCards","bigCards"],"searchable":true,"uid":false},{"type":"string","label":"Small Cards Label","name":"smallCardsLabel","namespace":["employment","_body","ServiceCards","smallCardsLabel"],"searchable":true,"uid":false},{"label":"Small Cards","name":"smallCards","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","benefitsBody","ServiceCards","smallCards","title"]},{"type":"string","label":"URL","name":"link","namespace":["employment","benefitsBody","ServiceCards","smallCards","link"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Red","value":"red"},{"label":"Light Gray","value":"lightgray"},{"label":"Medium Gray","value":"mediumgray"},{"label":"Dark Gray","value":"darkgray"}],"namespace":["employment","benefitsBody","ServiceCards","smallCards","color"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","ServiceCards","smallCards","imgSrc","uploadDir"]},"namespace":["employment","benefitsBody","ServiceCards","smallCards","imgSrc"]},{"type":"boolean","label":"External Page","description":"Select this if the link is not part of the website. This includes SSW.Rules, and SSW.People links","name":"isExternal","namespace":["employment","benefitsBody","ServiceCards","smallCards","isExternal"]}],"namespace":["employment","_body","ServiceCards","smallCards"],"searchable":true,"uid":false},{"label":"Links","name":"links","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["employment","benefitsBody","ServiceCards","links","label"]},{"type":"string","label":"URL","name":"link","namespace":["employment","benefitsBody","ServiceCards","links","link"]}],"namespace":["employment","_body","ServiceCards","links"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["employment","_body","ServiceCards","backgroundColor"],"searchable":true,"uid":false}],"namespace":["employment","_body","ServiceCards"]},{"label":"Table Layout","name":"TableLayout","ui":{"previewSrc":"/images/thumbs/tina/table-layout.jpg"},"fields":[{"label":"Table Style","name":"tableStyle","type":"string","options":["none","basicBorder","styled","benefits"],"namespace":["employment","_body","TableLayout","tableStyle"],"searchable":true,"uid":false},{"label":"First column bolded + left aligned","name":"firstColBold","type":"boolean","required":false,"namespace":["employment","_body","TableLayout","firstColBold"],"searchable":true,"uid":false},{"type":"string","label":"Table Headers","name":"headers","list":true,"namespace":["employment","_body","TableLayout","headers"],"searchable":true,"uid":false},{"type":"object","label":"Rows","name":"rows","list":true,"fields":[{"type":"object","label":"Cells","name":"cells","list":true,"fields":[{"type":"string","label":"Value","name":"cellValue","required":true,"component":{"namespace":["page","beforeBody","TableLayout","rows","cells","cellValue",""]},"namespace":["employment","afterBody","TableLayout","rows","cells","cellValue"]}],"ui":{},"namespace":["employment","benefitsBody","TableLayout","rows","cells"]},{"type":"boolean","label":"Is Heading","name":"isHeader","required":false,"namespace":["employment","benefitsBody","TableLayout","rows","isHeader"]}],"ui":{},"namespace":["employment","_body","TableLayout","rows"],"searchable":true,"uid":false}],"namespace":["employment","_body","TableLayout"]},{"name":"TestimonialsList","label":"Testimonials List","ui":{"previewSrc":"/images/thumbs/tina/testimonials.jpg"},"fields":[{"type":"object","label":"Exclude Categories","name":"excludedCategories","ui":{},"list":true,"fields":[{"type":"reference","label":"Category Name","name":"categoryName","collections":["testimonialCategories"],"namespace":["employment","benefitsBody","TestimonialsList","excludedCategories","categoryName"]}],"namespace":["employment","_body","TestimonialsList","excludedCategories"],"searchable":true,"uid":false}],"namespace":["employment","_body","TestimonialsList"]},{"label":"Training Information","name":"TrainingInformation","ui":{"previewSrc":"/images/thumbs/tina/training-information.jpg"},"fields":[{"type":"object","label":"Training Information Items","name":"trainingInformationItems","list":true,"fields":[{"type":"string","label":"Header","name":"header","namespace":["employment","benefitsBody","TrainingInformation","trainingInformationItems","header"]},{"type":"rich-text","label":"Body","name":"body","templates":[{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["employment","opportunitiesBody","TrainingInformation","trainingInformationItems","body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["employment","opportunitiesBody","TrainingInformation","trainingInformationItems","body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["employment","opportunitiesBody","TrainingInformation","trainingInformationItems","body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["employment","opportunitiesBody","TrainingInformation","trainingInformationItems","body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["employment","opportunitiesBody","TrainingInformation","trainingInformationItems","body","VerticalListItem","afterBody"]}],"namespace":["employment","afterBody","TrainingInformation","trainingInformationItems","body","VerticalListItem"]},{"label":"Recurring Event","name":"RecurringEvent","ui":{"previewSrc":"/images/thumbs/tina/recurring-event.jpg"},"fields":[{"type":"string","label":"Apply Link Redirect","name":"applyLinkRedirect","namespace":["employment","opportunitiesBody","TrainingInformation","trainingInformationItems","body","RecurringEvent","applyLinkRedirect"]},{"type":"string","label":"Day","name":"day","options":[{"label":"Monday","value":"monday"},{"label":"Tuesday","value":"tuesday"},{"label":"Wednesday","value":"wednesday"},{"label":"Thursday","value":"thursday"},{"label":"Friday","value":"friday"},{"label":"Saturday","value":"saturday"},{"label":"Sunday","value":"sunday"}],"required":true,"namespace":["employment","opportunitiesBody","TrainingInformation","trainingInformationItems","body","RecurringEvent","day"]}],"namespace":["employment","afterBody","TrainingInformation","trainingInformationItems","body","RecurringEvent"]}],"namespace":["employment","benefitsBody","TrainingInformation","trainingInformationItems","body"]}],"namespace":["employment","_body","TrainingInformation","trainingInformationItems"],"searchable":true,"uid":false}],"namespace":["employment","_body","TrainingInformation"]},{"label":"Training Learning Outcomes","name":"TrainingLearningOutcome","ui":{"previewSrc":"/images/thumbs/tina/training-learning-outcomes.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["employment","_body","TrainingLearningOutcome","header"],"searchable":true,"uid":false},{"type":"object","label":"List Items","name":"listItems","list":true,"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","benefitsBody","TrainingLearningOutcome","listItems","title"]},{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["employment","benefitsBody","TrainingLearningOutcome","listItems","content"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","TrainingLearningOutcome","listItems","icon","uploadDir"]},"namespace":["employment","benefitsBody","TrainingLearningOutcome","listItems","icon"]}],"namespace":["employment","_body","TrainingLearningOutcome","listItems"],"searchable":true,"uid":false}],"namespace":["employment","_body","TrainingLearningOutcome"]},{"label":"Tweet Embed","name":"TweetEmbed","ui":{"previewSrc":"/images/thumbs/tina/tweet-embed.jpg"},"fields":[{"type":"string","name":"url","label":"Tweet URL","required":true,"namespace":["employment","_body","TweetEmbed","url"],"searchable":true,"uid":false}],"namespace":["employment","_body","TweetEmbed"]},{"name":"UpcomingEvents","label":"Upcoming Events","ui":{"previewSrc":"/images/thumbs/tina/upcoming-events.jpg","defaultItem":{"title":"Upcoming Events","numberOfEvents":30}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","_body","UpcomingEvents","title"],"searchable":true,"uid":false},{"type":"number","label":"Number of Events","name":"numberOfEvents","namespace":["employment","_body","UpcomingEvents","numberOfEvents"],"searchable":true,"uid":false}],"namespace":["employment","_body","UpcomingEvents"]},{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["employment","_body","UtilityButton","buttonText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"link","required":false,"namespace":["employment","_body","UtilityButton","link"],"searchable":true,"uid":false},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["employment","_body","UtilityButton","size"],"searchable":true,"uid":false},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["employment","_body","UtilityButton","btnIcon"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["employment","_body","UtilityButton","animated"],"searchable":true,"uid":false},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["employment","_body","UtilityButton","uncentered"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["employment","_body","UtilityButton","removeTopMargin"],"searchable":true,"uid":false},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["employment","_body","UtilityButton","openInNewTab"],"searchable":true,"uid":false}],"namespace":["employment","_body","UtilityButton"]},{"name":"VerticalImageLayout","label":"Vertical Image Layout","fields":[{"type":"image","label":"Image","name":"imageSrc","uploadDir":{"namespace":["page","beforeBody","VerticalImageLayout","imageSrc","uploadDir"]},"namespace":["employment","_body","VerticalImageLayout","imageSrc"],"searchable":false,"uid":false},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","_body","VerticalImageLayout","altText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"imageLink","namespace":["employment","_body","VerticalImageLayout","imageLink"],"searchable":true,"uid":false},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","_body","VerticalImageLayout","height"],"searchable":true,"uid":false},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","_body","VerticalImageLayout","width"],"searchable":true,"uid":false},{"type":"rich-text","label":"Message","name":"message","required":true,"namespace":["employment","_body","VerticalImageLayout","message"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","_body","VerticalImageLayout","sizes"],"searchable":true,"uid":false}],"namespace":["employment","_body","VerticalImageLayout"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["employment","_body","VerticalListItem","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"number","label":"Index number","name":"index","namespace":["employment","_body","VerticalListItem","index"],"searchable":true,"uid":false},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["employment","_body","VerticalListItem","icon"],"searchable":false,"uid":false},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["employment","_body","VerticalListItem","iconScale"],"searchable":true,"uid":false},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["employment","_body","VerticalListItem","afterBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["employment","_body","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["employment","_body","VideoEmbed","url"],"searchable":true,"uid":false},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["employment","_body","VideoEmbed","videoWidth"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["employment","_body","VideoEmbed","removeMargin"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["employment","_body","VideoEmbed","uncentre"],"searchable":true,"uid":false},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["employment","_body","VideoEmbed","overflow"],"searchable":true,"uid":false},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["employment","_body","VideoEmbed","caption"],"searchable":true,"uid":false},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["employment","_body","VideoEmbed","duration"],"searchable":true,"uid":false}],"namespace":["employment","_body","VideoEmbed"]},{"name":"InlineJotForm","label":"In-line JotForm","ui":{"previewSrc":"/images/thumbs/tina/inline-jot-form.jpg"},"fields":[{"type":"string","name":"title","label":"Title","description":"Optional title for JotForm","namespace":["employment","_body","InlineJotForm","title"],"searchable":true,"uid":false},{"type":"string","name":"jotFormId","label":"JotForm ID","required":true,"namespace":["employment","_body","InlineJotForm","jotFormId"],"searchable":true,"uid":false},{"type":"string","name":"additionalClasses","label":"Additional classnames","description":"Optional styling for iframe element only","namespace":["employment","_body","InlineJotForm","additionalClasses"],"searchable":true,"uid":false}],"namespace":["employment","_body","InlineJotForm"]}],"isBody":true,"namespace":["employment","_body"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"object","label":"Benefits","name":"benefits","fields":[{"type":"object","list":true,"label":"benefit list","name":"benefitList","ui":{},"fields":[{"type":"image","label":"Image URL","name":"image","uploadDir":{"namespace":["consulting","benefits","benefitList","image","uploadDir"]},"namespace":["employment","benefits","benefitList","image"],"searchable":false,"uid":false},{"type":"string","label":"Title","name":"title","namespace":["employment","benefits","benefitList","title"],"searchable":true,"uid":false},{"type":"rich-text","label":"Description","name":"description","namespace":["employment","benefits","benefitList","description"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","required":false,"label":"linkName","name":"linkName","namespace":["employment","benefits","benefitList","linkName"],"searchable":true,"uid":false},{"type":"string","required":false,"label":"linkURL","name":"linkURL","namespace":["employment","benefits","benefitList","linkURL"],"searchable":true,"uid":false}],"namespace":["employment","benefits","benefitList"],"searchable":true,"uid":false}],"namespace":["employment","benefits"],"searchable":true,"uid":false},{"type":"rich-text","label":"After benefits body","name":"benefitsBody","templates":[{"name":"AboutUs","label":"About Us","ui":{"previewSrc":"/images/thumbs/tina/about-us.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["employment","benefitsBody","AboutUs","backgroundColor"],"searchable":true,"uid":false},{"type":"boolean","label":"Show Map","name":"showMap","required":false,"namespace":["employment","benefitsBody","AboutUs","showMap"],"searchable":true,"uid":false}],"namespace":["employment","benefitsBody","AboutUs"]},{"label":"Agenda","name":"Agenda","ui":{"previewSrc":"/images/thumbs/tina/agenda.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["employment","benefitsBody","Agenda","header"],"searchable":true,"uid":false},{"type":"string","label":"Header Color","name":"textColor","options":[{"label":"Red","value":"red"},{"label":"Gray","value":"gray"},{"label":"Default","value":"default"}],"namespace":["employment","benefitsBody","Agenda","textColor"],"searchable":true,"uid":false},{"type":"object","label":"Agenda Items","name":"agendaItemList","ui":{},"list":true,"fields":[{"type":"string","label":"Placeholder Text","name":"placeholder","namespace":["employment","afterBody","Agenda","agendaItemList","placeholder"]},{"type":"rich-text","label":"Body","name":"body","templates":[{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["employment","callToActionBody","Agenda","agendaItemList","body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["employment","callToActionBody","Agenda","agendaItemList","body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["employment","callToActionBody","Agenda","agendaItemList","body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["employment","callToActionBody","Agenda","agendaItemList","body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["employment","callToActionBody","Agenda","agendaItemList","body","VerticalListItem","afterBody"]}],"namespace":["employment","opportunitiesBody","Agenda","agendaItemList","body","VerticalListItem"]}],"namespace":["employment","afterBody","Agenda","agendaItemList","body"]}],"namespace":["employment","benefitsBody","Agenda","agendaItemList"],"searchable":true,"uid":false}],"namespace":["employment","benefitsBody","Agenda"]},{"label":"Agreement Form","name":"AgreementForm","ui":{"previewSrc":"/images/thumbs/tina/agreement-form.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["employment","benefitsBody","AgreementForm","backgroundColor"],"searchable":true,"uid":false},{"type":"object","label":"Form fields","name":"fields","list":true,"fields":[{"type":"string","label":"ID","name":"id","required":true,"namespace":["employment","afterBody","AgreementForm","fields","id"]},{"type":"string","label":"Label","name":"label","required":true,"namespace":["employment","afterBody","AgreementForm","fields","label"]},{"type":"string","label":"Placeholder","name":"placeholder","namespace":["employment","afterBody","AgreementForm","fields","placeholder"]},{"type":"boolean","label":"Resizeable","name":"resizeable","required":true,"namespace":["employment","afterBody","AgreementForm","fields","resizeable"]}],"namespace":["employment","benefitsBody","AgreementForm","fields"],"searchable":true,"uid":false}],"namespace":["employment","benefitsBody","AgreementForm"]},{"label":"Interest Form","name":"InterestForm","ui":{"previewSrc":"/images/thumbs/tina/interest-form.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["employment","benefitsBody","InterestForm","buttonText"],"searchable":true,"uid":false}],"namespace":["employment","benefitsBody","InterestForm"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["employment","benefitsBody","BookingButton","buttonText"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","namespace":["employment","benefitsBody","BookingButton","animated"],"searchable":true,"uid":false},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["employment","benefitsBody","BookingButton","buttonSubtitle"],"searchable":true,"uid":false}],"namespace":["employment","benefitsBody","BookingButton"]},{"name":"BuiltOnAzure","label":"Built on Azure","ui":{"previewSrc":"/images/thumbs/tina/built-on-azure.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["employment","benefitsBody","BuiltOnAzure","backgroundColor"],"searchable":true,"uid":false}],"namespace":["employment","benefitsBody","BuiltOnAzure"]},{"name":"Carousel","label":"Carousel","ui":{"previewSrc":"/images/thumbs/tina/carousel.jpg"},"fields":[{"label":"Items","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Item description","link":"/","openIn":"sameWindow"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["employment","afterBody","Carousel","items","label"]},{"type":"string","label":"URL","name":"link","description":"If link contains ssw.com.au, you can skip the full URL and just use the path. e.g. /services","namespace":["employment","afterBody","Carousel","items","link"]},{"type":"string","label":"Open in","name":"openIn","description":"If it is external link, please select 'New window' option.","options":[{"label":"Same window","value":"sameWindow"},{"label":"Modal","value":"modal"},{"label":"New window","value":"newWindow"}],"namespace":["employment","afterBody","Carousel","items","openIn"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","Carousel","items","imgSrc","uploadDir"]},"namespace":["employment","afterBody","Carousel","items","imgSrc"]}],"namespace":["employment","benefitsBody","Carousel","items"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["employment","benefitsBody","Carousel","backgroundColor"],"searchable":true,"uid":false},{"type":"number","label":"Delay (Seconds)","name":"delay","required":true,"namespace":["employment","benefitsBody","Carousel","delay"],"searchable":true,"uid":false},{"type":"boolean","label":"Show on mobile devices","name":"showOnMobileDevices","namespace":["employment","benefitsBody","Carousel","showOnMobileDevices"],"searchable":true,"uid":false}],"namespace":["employment","benefitsBody","Carousel"]},{"name":"Citation","label":"Citation","fields":[{"type":"string","label":"author","name":"author","namespace":["employment","benefitsBody","Citation","author"],"searchable":true,"uid":false},{"type":"string","label":"article","name":"article","required":true,"namespace":["employment","benefitsBody","Citation","article"],"searchable":true,"uid":false}],"namespace":["employment","benefitsBody","Citation"]},{"label":"Client List","name":"ClientList","ui":{"previewSrc":"/images/thumbs/tina/clients-list.jpg"},"fields":[{"type":"object","name":"categories","label":"Categories","list":true,"fields":[{"type":"reference","name":"category","label":"Category","collections":["clientCategories"],"namespace":["employment","afterBody","ClientList","categories","category"]}],"ui":{},"namespace":["employment","benefitsBody","ClientList","categories"],"searchable":true,"uid":false},{"type":"object","name":"clients","label":"Clients list","list":true,"ui":{"previewSrc":"/images/thumbs/tina/clients-list.jpg"},"fields":[{"type":"string","name":"name","label":"Name","namespace":["employment","afterBody","ClientList","clients","name"]},{"type":"image","name":"logo","label":"Logo","namespace":["employment","afterBody","ClientList","clients","logo"]},{"type":"string","name":"logoUrl","label":"Logo URL","namespace":["employment","afterBody","ClientList","clients","logoUrl"]},{"type":"rich-text","name":"content","label":"Content","templates":[{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["employment","callToActionBody","ClientList","clients","content","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["employment","callToActionBody","ClientList","clients","content","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["employment","callToActionBody","ClientList","clients","content","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["employment","callToActionBody","ClientList","clients","content","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["employment","callToActionBody","ClientList","clients","content","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["employment","callToActionBody","ClientList","clients","content","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["employment","callToActionBody","ClientList","clients","content","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["employment","callToActionBody","ClientList","clients","content","UtilityButton","openInNewTab"]}],"namespace":["employment","opportunitiesBody","ClientList","clients","content","UtilityButton"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["employment","callToActionBody","ClientList","clients","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["employment","callToActionBody","ClientList","clients","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["employment","callToActionBody","ClientList","clients","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["employment","callToActionBody","ClientList","clients","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["employment","callToActionBody","ClientList","clients","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["employment","callToActionBody","ClientList","clients","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["employment","callToActionBody","ClientList","clients","content","VideoEmbed","duration"]}],"namespace":["employment","opportunitiesBody","ClientList","clients","content","VideoEmbed"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["employment","callToActionBody","ClientList","clients","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","callToActionBody","ClientList","clients","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["employment","callToActionBody","ClientList","clients","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","callToActionBody","ClientList","clients","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","callToActionBody","ClientList","clients","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["employment","callToActionBody","ClientList","clients","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["employment","callToActionBody","ClientList","clients","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["employment","callToActionBody","ClientList","clients","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["employment","callToActionBody","ClientList","clients","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","callToActionBody","ClientList","clients","content","CustomImage","sizes"]}],"namespace":["employment","opportunitiesBody","ClientList","clients","content","CustomImage"]},{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["employment","callToActionBody","ClientList","clients","content","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["employment","callToActionBody","ClientList","clients","content","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["eventsIndex","preface","ClientList","clients","content","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["eventsIndex","preface","ClientList","clients","content","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["eventsIndex","preface","ClientList","clients","content","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["eventsIndex","preface","ClientList","clients","content","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["eventsIndex","preface","ClientList","clients","content","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["eventsIndex","preface","ClientList","clients","content","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["eventsIndex","preface","ClientList","clients","content","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["eventsIndex","preface","ClientList","clients","content","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["eventsIndex","preface","ClientList","clients","content","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["eventsIndex","preface","ClientList","clients","content","ContentCard","content","CustomImage","sizes"]}],"namespace":["opportunities","_body","ClientList","clients","content","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["eventsIndex","preface","ClientList","clients","content","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["eventsIndex","preface","ClientList","clients","content","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["eventsIndex","preface","ClientList","clients","content","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["eventsIndex","preface","ClientList","clients","content","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["eventsIndex","preface","ClientList","clients","content","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["opportunities","_body","ClientList","clients","content","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["eventsIndex","preface","ClientList","clients","content","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["eventsIndex","preface","ClientList","clients","content","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["eventsIndex","preface","ClientList","clients","content","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["eventsIndex","preface","ClientList","clients","content","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["eventsIndex","preface","ClientList","clients","content","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["eventsIndex","preface","ClientList","clients","content","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["eventsIndex","preface","ClientList","clients","content","ContentCard","content","VideoEmbed","duration"]}],"namespace":["opportunities","_body","ClientList","clients","content","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["eventsIndex","preface","ClientList","clients","content","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["eventsIndex","preface","ClientList","clients","content","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["eventsIndex","sidebarBody","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["eventsIndex","sidebarBody","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["eventsIndex","sidebarBody","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["eventsIndex","sidebarBody","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["eventsIndex","sidebarBody","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["eventsIndex","preface","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["opportunities","_body","ClientList","clients","content","ContentCard","content","ColorBlock"]}],"namespace":["employment","callToActionBody","ClientList","clients","content","ContentCard","content"]}],"namespace":["employment","opportunitiesBody","ClientList","clients","content","ContentCard"]}],"namespace":["employment","afterBody","ClientList","clients","content"]},{"type":"string","name":"caseStudyUrl","label":"Case study URL","namespace":["employment","afterBody","ClientList","clients","caseStudyUrl"]},{"type":"object","name":"categories","label":"Categories","list":true,"ui":{},"fields":[{"type":"reference","name":"category","label":"Category","collections":["clientCategories"],"namespace":["employment","opportunitiesBody","ClientList","clients","categories","category"]}],"namespace":["employment","afterBody","ClientList","clients","categories"]}],"namespace":["employment","benefitsBody","ClientList","clients"],"searchable":true,"uid":false}],"namespace":["employment","benefitsBody","ClientList"]},{"name":"ClientLogos","label":"Client Logos","ui":{"previewSrc":"/images/thumbs/tina/client-logos.jpg"},"fields":[{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","benefitsBody","ClientLogos","altText"],"searchable":true,"uid":false}],"namespace":["employment","benefitsBody","ClientLogos"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","benefitsBody","ColorBlock","title"],"searchable":true,"uid":false},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["employment","benefitsBody","ColorBlock","subTitle"],"searchable":true,"uid":false},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["employment","afterBody","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["employment","afterBody","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["employment","afterBody","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["employment","afterBody","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["employment","afterBody","ColorBlock","colorRow","caption"]}],"namespace":["employment","benefitsBody","ColorBlock","colorRow"],"searchable":true,"uid":false}],"namespace":["employment","benefitsBody","ColorBlock"]},{"name":"ColorPalette","label":"Color Palette","ui":{"previewSrc":"/images/thumbs/tina/color-palette.jpg"},"fields":[{"type":"string","label":"Name","name":"name","namespace":["employment","benefitsBody","ColorPalette","name"],"searchable":true,"uid":false}],"namespace":["employment","benefitsBody","ColorPalette"]},{"name":"Content","label":"Content","ui":{"previewSrc":"/images/thumbs/tina/content.jpg","defaultItem":{"body":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","benefitsBody","Content","title"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["employment","opportunitiesBody","Content","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","opportunitiesBody","Content","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["employment","opportunitiesBody","Content","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","opportunitiesBody","Content","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","opportunitiesBody","Content","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["employment","opportunitiesBody","Content","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["employment","opportunitiesBody","Content","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["employment","opportunitiesBody","Content","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["employment","opportunitiesBody","Content","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","opportunitiesBody","Content","content","CustomImage","sizes"]}],"namespace":["employment","afterBody","Content","content","CustomImage"]},{"name":"ClientLogos","label":"Client Logos","ui":{"previewSrc":"/images/thumbs/tina/client-logos.jpg"},"fields":[{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","opportunitiesBody","Content","content","ClientLogos","altText"]}],"namespace":["employment","afterBody","Content","content","ClientLogos"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["employment","opportunitiesBody","Content","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["employment","opportunitiesBody","Content","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["employment","opportunitiesBody","Content","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["employment","opportunitiesBody","Content","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["employment","opportunitiesBody","Content","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["employment","opportunitiesBody","Content","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["employment","opportunitiesBody","Content","content","VideoEmbed","duration"]}],"namespace":["employment","afterBody","Content","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","opportunitiesBody","Content","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["employment","opportunitiesBody","Content","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["employment","callToActionBody","Content","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["employment","callToActionBody","Content","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["employment","callToActionBody","Content","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["employment","callToActionBody","Content","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["employment","callToActionBody","Content","content","ColorBlock","colorRow","caption"]}],"namespace":["employment","opportunitiesBody","Content","content","ColorBlock","colorRow"]}],"namespace":["employment","afterBody","Content","content","ColorBlock"]}],"namespace":["employment","benefitsBody","Content","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Container Padding","name":"paddingClass","options":["Mobile: No Padding","Mobile: No Top and Horizontal Padding"],"namespace":["employment","benefitsBody","Content","paddingClass"],"searchable":true,"uid":false},{"type":"string","label":"Text size","name":"size","options":[{"label":"small","value":"sm"},{"label":"normal","value":"base"},{"label":"large","value":"lg"},{"label":"extra large","value":"xl"},{"label":"2x large","value":"2xl"}],"namespace":["employment","benefitsBody","Content","size"],"searchable":true,"uid":false},{"type":"string","label":"Align","name":"align","options":[{"label":"Left","value":"left"},{"label":"Center","value":"center"},{"label":"Right","value":"right"}],"namespace":["employment","benefitsBody","Content","align"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["employment","benefitsBody","Content","backgroundColor"],"searchable":true,"uid":false}],"namespace":["employment","benefitsBody","Content"]},{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["employment","benefitsBody","ContentCard","prose"],"searchable":true,"uid":false},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["employment","benefitsBody","ContentCard","centerAlignedText"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["employment","opportunitiesBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","opportunitiesBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["employment","opportunitiesBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","opportunitiesBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","opportunitiesBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["employment","opportunitiesBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["employment","opportunitiesBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["employment","opportunitiesBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["employment","opportunitiesBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","opportunitiesBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["employment","afterBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["employment","opportunitiesBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["employment","opportunitiesBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["employment","opportunitiesBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["employment","opportunitiesBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["employment","opportunitiesBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["employment","afterBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["employment","opportunitiesBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["employment","opportunitiesBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["employment","opportunitiesBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["employment","opportunitiesBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["employment","opportunitiesBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["employment","opportunitiesBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["employment","opportunitiesBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["employment","afterBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","opportunitiesBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["employment","opportunitiesBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["employment","callToActionBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["employment","callToActionBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["employment","callToActionBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["employment","callToActionBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["employment","callToActionBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["employment","opportunitiesBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["employment","afterBody","ContentCard","content","ColorBlock"]}],"namespace":["employment","benefitsBody","ContentCard","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["employment","benefitsBody","ContentCard"]},{"name":"CustomDownloadButton","label":"Custom Download Button","ui":{"previewSrc":"/images/thumbs/tina/custom-download-button.jpg"},"fields":[{"type":"string","label":"Text","name":"btnText","namespace":["employment","benefitsBody","CustomDownloadButton","btnText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"btnLink","namespace":["employment","benefitsBody","CustomDownloadButton","btnLink"],"searchable":true,"uid":false}],"namespace":["employment","benefitsBody","CustomDownloadButton"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["employment","benefitsBody","CustomImage","src"],"searchable":false,"uid":false},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","benefitsBody","CustomImage","altText"],"searchable":true,"uid":false},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["employment","benefitsBody","CustomImage","alignment"],"searchable":true,"uid":false},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","benefitsBody","CustomImage","height"],"searchable":true,"uid":false},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","benefitsBody","CustomImage","width"],"searchable":true,"uid":false},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["employment","benefitsBody","CustomImage","link"],"searchable":true,"uid":false},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["employment","benefitsBody","CustomImage","customClass"],"searchable":true,"uid":false},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["employment","benefitsBody","CustomImage","caption"],"searchable":true,"uid":false},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["employment","benefitsBody","CustomImage","captionColor"],"searchable":true,"uid":false},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","benefitsBody","CustomImage","sizes"],"searchable":true,"uid":false}],"namespace":["employment","benefitsBody","CustomImage"]},{"name":"DomainFromQuery","label":"Domain from query","ui":{"previewSrc":"/images/thumbs/tina/domain-from-query.jpg"},"fields":[{"name":"title","label":"Title","type":"string","description":"This is a H1 heading","namespace":["employment","benefitsBody","DomainFromQuery","title"],"searchable":true,"uid":false},{"name":"showDomain","label":"Show domain name","type":"boolean","description":"Query param in URL must have key of 'domain'","namespace":["employment","benefitsBody","DomainFromQuery","showDomain"],"searchable":true,"uid":false}],"namespace":["employment","benefitsBody","DomainFromQuery"]},{"name":"DownloadBlock","label":"Download Block","ui":{"previewSrc":"/images/thumbs/tina/download-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","benefitsBody","DownloadBlock","title"],"searchable":true,"uid":false},{"type":"object","label":"Downloads","name":"downloads","ui":{},"list":true,"fields":[{"type":"string","label":"Header","name":"header","namespace":["employment","afterBody","DownloadBlock","downloads","header"]},{"type":"image","label":"Image","name":"img","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","img","uploadDir"]},"namespace":["employment","afterBody","DownloadBlock","downloads","img"]},{"type":"string","label":"Image Background","name":"imgBackground","options":["black","grey","white","darkgrey","darkgreen"],"namespace":["employment","afterBody","DownloadBlock","downloads","imgBackground"]},{"type":"string","label":"First Link Text","name":"firstLinkText","description":"Defaults to PNG","namespace":["employment","afterBody","DownloadBlock","downloads","firstLinkText"]},{"type":"image","label":"First Link","name":"firstLink","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","firstLink","uploadDir"]},"namespace":["employment","afterBody","DownloadBlock","downloads","firstLink"]},{"type":"string","label":"Second Link Text","name":"secondLinkText","description":"Defaults to PDF","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","secondLinkText","uploadDir"]},"namespace":["employment","afterBody","DownloadBlock","downloads","secondLinkText"]},{"type":"image","label":"Second Link","name":"secondLink","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","secondLink","uploadDir"]},"namespace":["employment","afterBody","DownloadBlock","downloads","secondLink"]}],"namespace":["employment","benefitsBody","DownloadBlock","downloads"],"searchable":true,"uid":false},{"type":"boolean","label":"Bottom border","name":"bottomBorder","namespace":["employment","benefitsBody","DownloadBlock","bottomBorder"],"searchable":true,"uid":false}],"namespace":["employment","benefitsBody","DownloadBlock"]},{"name":"DynamicColumns","label":"Dynamic Column Layout","fields":[{"type":"rich-text","label":"Column text body","name":"colBody","required":true,"namespace":["employment","benefitsBody","DynamicColumns","colBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"number","label":"Number of columns","name":"colCount","required":true,"ui":{},"namespace":["employment","benefitsBody","DynamicColumns","colCount"],"searchable":true,"uid":false}],"namespace":["employment","benefitsBody","DynamicColumns"]},{"name":"EventBooking","label":"Events Booking","ui":{"previewSrc":"/images/thumbs/tina/events-booking.jpg"},"fields":[{"type":"number","label":"Duration (In Days)","name":"eventDurationInDays","required":true,"namespace":["employment","benefitsBody","EventBooking","eventDurationInDays"],"searchable":true,"uid":false},{"type":"number","label":"Price","name":"price","required":true,"namespace":["employment","benefitsBody","EventBooking","price"],"searchable":true,"uid":false},{"type":"number","label":"Discount Price","name":"discountPrice","namespace":["employment","benefitsBody","EventBooking","discountPrice"],"searchable":true,"uid":false},{"type":"string","name":"gstText","label":"Select GST Option","options":["inc GST","+ GST"],"required":true,"namespace":["employment","benefitsBody","EventBooking","gstText"],"searchable":true,"uid":false},{"type":"string","label":"Discount Note","name":"discountNote","namespace":["employment","benefitsBody","EventBooking","discountNote"],"searchable":true,"uid":false},{"type":"object","label":"Event","name":"eventList","ui":{},"list":true,"fields":[{"type":"string","label":"City","name":"city","namespace":["employment","afterBody","EventBooking","eventList","city"]},{"type":"datetime","label":"Start Date","name":"date","ui":{},"namespace":["employment","afterBody","EventBooking","eventList","date"]},{"type":"string","label":"Booking URL","name":"bookingURL","namespace":["employment","afterBody","EventBooking","eventList","bookingURL"]},{"type":"reference","label":"Location","name":"location","collections":["locations"],"namespace":["employment","afterBody","EventBooking","eventList","location"]}],"namespace":["employment","benefitsBody","EventBooking","eventList"],"searchable":true,"uid":false}],"namespace":["employment","benefitsBody","EventBooking"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["employment","opportunitiesBody","EventLink","content","Flag","country"]}],"namespace":["employment","afterBody","EventLink","content","Flag"]}],"namespace":["employment","benefitsBody","EventLink","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Link","name":"link","namespace":["employment","benefitsBody","EventLink","link"],"searchable":true,"uid":false},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["employment","benefitsBody","EventLink","eventThumbnail"],"searchable":false,"uid":false},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["employment","benefitsBody","EventLink","thumbnailAlt"],"searchable":true,"uid":false}],"namespace":["employment","benefitsBody","EventLink"]},{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["employment","benefitsBody","Flag","country"],"searchable":true,"uid":false}],"namespace":["employment","benefitsBody","Flag"]},{"name":"FixedColumns","label":"Fixed Column Layout (2 columns)","ui":{"previewSrc":"/images/thumbs/tina/fixed-columns.jpg"},"fields":[{"type":"rich-text","label":"Header Section (Optional)","name":"headerSection","namespace":["employment","benefitsBody","FixedColumns","headerSection"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"First column text","name":"firstColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["employment","opportunitiesBody","FixedColumns","firstColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["employment","opportunitiesBody","FixedColumns","firstColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["opportunities","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["opportunities","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["opportunities","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["opportunities","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["opportunities","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["opportunities","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["opportunities","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["opportunities","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["opportunities","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["opportunities","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["employment","callToActionBody","FixedColumns","firstColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["opportunities","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["opportunities","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["opportunities","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["opportunities","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["opportunities","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["employment","callToActionBody","FixedColumns","firstColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["opportunities","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["opportunities","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["opportunities","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["opportunities","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["opportunities","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["opportunities","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["opportunities","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["employment","callToActionBody","FixedColumns","firstColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["opportunities","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["opportunities","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["eventsIndex","preface","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["eventsIndex","preface","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["eventsIndex","preface","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["eventsIndex","preface","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["eventsIndex","preface","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["opportunities","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["employment","callToActionBody","FixedColumns","firstColBody","ContentCard","content","ColorBlock"]}],"namespace":["employment","opportunitiesBody","FixedColumns","firstColBody","ContentCard","content"]}],"namespace":["employment","afterBody","FixedColumns","firstColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["employment","opportunitiesBody","FixedColumns","firstColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","opportunitiesBody","FixedColumns","firstColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["employment","opportunitiesBody","FixedColumns","firstColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","opportunitiesBody","FixedColumns","firstColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","opportunitiesBody","FixedColumns","firstColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["employment","opportunitiesBody","FixedColumns","firstColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["employment","opportunitiesBody","FixedColumns","firstColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["employment","opportunitiesBody","FixedColumns","firstColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["employment","opportunitiesBody","FixedColumns","firstColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","opportunitiesBody","FixedColumns","firstColBody","CustomImage","sizes"]}],"namespace":["employment","afterBody","FixedColumns","firstColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["opportunities","_body","FixedColumns","firstColBody","EventLink","content","Flag","country"]}],"namespace":["employment","callToActionBody","FixedColumns","firstColBody","EventLink","content","Flag"]}],"namespace":["employment","opportunitiesBody","FixedColumns","firstColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["employment","opportunitiesBody","FixedColumns","firstColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["employment","opportunitiesBody","FixedColumns","firstColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["employment","opportunitiesBody","FixedColumns","firstColBody","EventLink","thumbnailAlt"]}],"namespace":["employment","afterBody","FixedColumns","firstColBody","EventLink"]}],"namespace":["employment","benefitsBody","FixedColumns","firstColBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"Second column text","name":"secondColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["employment","opportunitiesBody","FixedColumns","secondColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["employment","opportunitiesBody","FixedColumns","secondColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["opportunities","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["opportunities","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["opportunities","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["opportunities","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["opportunities","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["opportunities","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["opportunities","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["opportunities","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["opportunities","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["opportunities","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["employment","callToActionBody","FixedColumns","secondColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["opportunities","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["opportunities","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["opportunities","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["opportunities","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["opportunities","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["employment","callToActionBody","FixedColumns","secondColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["opportunities","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["opportunities","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["opportunities","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["opportunities","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["opportunities","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["opportunities","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["opportunities","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["employment","callToActionBody","FixedColumns","secondColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["opportunities","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["opportunities","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["eventsIndex","preface","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["eventsIndex","preface","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["eventsIndex","preface","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["eventsIndex","preface","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["eventsIndex","preface","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["opportunities","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["employment","callToActionBody","FixedColumns","secondColBody","ContentCard","content","ColorBlock"]}],"namespace":["employment","opportunitiesBody","FixedColumns","secondColBody","ContentCard","content"]}],"namespace":["employment","afterBody","FixedColumns","secondColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["employment","opportunitiesBody","FixedColumns","secondColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","opportunitiesBody","FixedColumns","secondColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["employment","opportunitiesBody","FixedColumns","secondColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","opportunitiesBody","FixedColumns","secondColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","opportunitiesBody","FixedColumns","secondColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["employment","opportunitiesBody","FixedColumns","secondColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["employment","opportunitiesBody","FixedColumns","secondColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["employment","opportunitiesBody","FixedColumns","secondColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["employment","opportunitiesBody","FixedColumns","secondColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","opportunitiesBody","FixedColumns","secondColBody","CustomImage","sizes"]}],"namespace":["employment","afterBody","FixedColumns","secondColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["opportunities","_body","FixedColumns","secondColBody","EventLink","content","Flag","country"]}],"namespace":["employment","callToActionBody","FixedColumns","secondColBody","EventLink","content","Flag"]}],"namespace":["employment","opportunitiesBody","FixedColumns","secondColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["employment","opportunitiesBody","FixedColumns","secondColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["employment","opportunitiesBody","FixedColumns","secondColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["employment","opportunitiesBody","FixedColumns","secondColBody","EventLink","thumbnailAlt"]}],"namespace":["employment","afterBody","FixedColumns","secondColBody","EventLink"]}],"namespace":["employment","benefitsBody","FixedColumns","secondColBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["employment","benefitsBody","FixedColumns"]},{"name":"FixedTabsLayout","label":"Fixed Tabs Layout","ui":{"previewSrc":"/images/thumbs/tina/fixed-tabs-layout.jpg"},"fields":[{"type":"string","name":"firstTab","label":"First Tab","namespace":["employment","benefitsBody","FixedTabsLayout","firstTab"],"searchable":true,"uid":false},{"type":"rich-text","name":"firstHeading","label":"First Heading","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["employment","opportunitiesBody","FixedTabsLayout","firstHeading","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["employment","opportunitiesBody","FixedTabsLayout","firstHeading","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["employment","opportunitiesBody","FixedTabsLayout","firstHeading","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["employment","opportunitiesBody","FixedTabsLayout","firstHeading","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["employment","opportunitiesBody","FixedTabsLayout","firstHeading","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["employment","opportunitiesBody","FixedTabsLayout","firstHeading","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["employment","opportunitiesBody","FixedTabsLayout","firstHeading","VideoEmbed","duration"]}],"namespace":["employment","afterBody","FixedTabsLayout","firstHeading","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["employment","opportunitiesBody","FixedTabsLayout","firstHeading","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["employment","opportunitiesBody","FixedTabsLayout","firstHeading","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["employment","opportunitiesBody","FixedTabsLayout","firstHeading","BookingButton","buttonSubtitle"]}],"namespace":["employment","afterBody","FixedTabsLayout","firstHeading","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["employment","opportunitiesBody","FixedTabsLayout","firstHeading","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["employment","callToActionBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["employment","callToActionBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["employment","callToActionBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["employment","callToActionBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","skills"]}],"namespace":["employment","opportunitiesBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["employment","callToActionBody","FixedTabsLayout","firstHeading","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["employment","callToActionBody","FixedTabsLayout","firstHeading","ExpertBlock","link","url"]}],"namespace":["employment","opportunitiesBody","FixedTabsLayout","firstHeading","ExpertBlock","link"]}],"namespace":["employment","afterBody","FixedTabsLayout","firstHeading","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","callToActionBody","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["employment","callToActionBody","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["employment","callToActionBody","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["opportunities","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["opportunities","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["opportunities","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["employment","callToActionBody","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["employment","opportunitiesBody","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["employment","afterBody","FixedTabsLayout","firstHeading","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["employment","opportunitiesBody","FixedTabsLayout","firstHeading","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","opportunitiesBody","FixedTabsLayout","firstHeading","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["employment","opportunitiesBody","FixedTabsLayout","firstHeading","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","opportunitiesBody","FixedTabsLayout","firstHeading","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","opportunitiesBody","FixedTabsLayout","firstHeading","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["employment","opportunitiesBody","FixedTabsLayout","firstHeading","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["employment","opportunitiesBody","FixedTabsLayout","firstHeading","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["employment","opportunitiesBody","FixedTabsLayout","firstHeading","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["employment","opportunitiesBody","FixedTabsLayout","firstHeading","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","opportunitiesBody","FixedTabsLayout","firstHeading","CustomImage","sizes"]}],"namespace":["employment","afterBody","FixedTabsLayout","firstHeading","CustomImage"]}],"namespace":["employment","benefitsBody","FixedTabsLayout","firstHeading"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","name":"firstBody","label":"First Body","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["employment","opportunitiesBody","FixedTabsLayout","firstBody","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["employment","opportunitiesBody","FixedTabsLayout","firstBody","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["employment","opportunitiesBody","FixedTabsLayout","firstBody","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["employment","opportunitiesBody","FixedTabsLayout","firstBody","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["employment","opportunitiesBody","FixedTabsLayout","firstBody","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["employment","opportunitiesBody","FixedTabsLayout","firstBody","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["employment","opportunitiesBody","FixedTabsLayout","firstBody","VideoEmbed","duration"]}],"namespace":["employment","afterBody","FixedTabsLayout","firstBody","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["employment","opportunitiesBody","FixedTabsLayout","firstBody","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["employment","opportunitiesBody","FixedTabsLayout","firstBody","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["employment","opportunitiesBody","FixedTabsLayout","firstBody","BookingButton","buttonSubtitle"]}],"namespace":["employment","afterBody","FixedTabsLayout","firstBody","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["employment","opportunitiesBody","FixedTabsLayout","firstBody","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["employment","callToActionBody","FixedTabsLayout","firstBody","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["employment","callToActionBody","FixedTabsLayout","firstBody","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["employment","callToActionBody","FixedTabsLayout","firstBody","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["employment","callToActionBody","FixedTabsLayout","firstBody","ExpertBlock","expertList","skills"]}],"namespace":["employment","opportunitiesBody","FixedTabsLayout","firstBody","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["employment","callToActionBody","FixedTabsLayout","firstBody","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["employment","callToActionBody","FixedTabsLayout","firstBody","ExpertBlock","link","url"]}],"namespace":["employment","opportunitiesBody","FixedTabsLayout","firstBody","ExpertBlock","link"]}],"namespace":["employment","afterBody","FixedTabsLayout","firstBody","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","callToActionBody","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["employment","callToActionBody","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["employment","callToActionBody","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["opportunities","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["opportunities","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["opportunities","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["employment","callToActionBody","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["employment","opportunitiesBody","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["employment","afterBody","FixedTabsLayout","firstBody","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["employment","opportunitiesBody","FixedTabsLayout","firstBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","opportunitiesBody","FixedTabsLayout","firstBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["employment","opportunitiesBody","FixedTabsLayout","firstBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","opportunitiesBody","FixedTabsLayout","firstBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","opportunitiesBody","FixedTabsLayout","firstBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["employment","opportunitiesBody","FixedTabsLayout","firstBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["employment","opportunitiesBody","FixedTabsLayout","firstBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["employment","opportunitiesBody","FixedTabsLayout","firstBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["employment","opportunitiesBody","FixedTabsLayout","firstBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","opportunitiesBody","FixedTabsLayout","firstBody","CustomImage","sizes"]}],"namespace":["employment","afterBody","FixedTabsLayout","firstBody","CustomImage"]}],"namespace":["employment","benefitsBody","FixedTabsLayout","firstBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","name":"secondTab","label":"Second Tab","namespace":["employment","benefitsBody","FixedTabsLayout","secondTab"],"searchable":true,"uid":false},{"type":"rich-text","name":"secondHeading","label":"Second Heading","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["employment","opportunitiesBody","FixedTabsLayout","secondHeading","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["employment","opportunitiesBody","FixedTabsLayout","secondHeading","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["employment","opportunitiesBody","FixedTabsLayout","secondHeading","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["employment","opportunitiesBody","FixedTabsLayout","secondHeading","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["employment","opportunitiesBody","FixedTabsLayout","secondHeading","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["employment","opportunitiesBody","FixedTabsLayout","secondHeading","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["employment","opportunitiesBody","FixedTabsLayout","secondHeading","VideoEmbed","duration"]}],"namespace":["employment","afterBody","FixedTabsLayout","secondHeading","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["employment","opportunitiesBody","FixedTabsLayout","secondHeading","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["employment","opportunitiesBody","FixedTabsLayout","secondHeading","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["employment","opportunitiesBody","FixedTabsLayout","secondHeading","BookingButton","buttonSubtitle"]}],"namespace":["employment","afterBody","FixedTabsLayout","secondHeading","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["employment","opportunitiesBody","FixedTabsLayout","secondHeading","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["employment","callToActionBody","FixedTabsLayout","secondHeading","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["employment","callToActionBody","FixedTabsLayout","secondHeading","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["employment","callToActionBody","FixedTabsLayout","secondHeading","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["employment","callToActionBody","FixedTabsLayout","secondHeading","ExpertBlock","expertList","skills"]}],"namespace":["employment","opportunitiesBody","FixedTabsLayout","secondHeading","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["employment","callToActionBody","FixedTabsLayout","secondHeading","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["employment","callToActionBody","FixedTabsLayout","secondHeading","ExpertBlock","link","url"]}],"namespace":["employment","opportunitiesBody","FixedTabsLayout","secondHeading","ExpertBlock","link"]}],"namespace":["employment","afterBody","FixedTabsLayout","secondHeading","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","callToActionBody","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["employment","callToActionBody","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["employment","callToActionBody","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["opportunities","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["opportunities","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["opportunities","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["employment","callToActionBody","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["employment","opportunitiesBody","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["employment","afterBody","FixedTabsLayout","secondHeading","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["employment","opportunitiesBody","FixedTabsLayout","secondHeading","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","opportunitiesBody","FixedTabsLayout","secondHeading","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["employment","opportunitiesBody","FixedTabsLayout","secondHeading","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","opportunitiesBody","FixedTabsLayout","secondHeading","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","opportunitiesBody","FixedTabsLayout","secondHeading","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["employment","opportunitiesBody","FixedTabsLayout","secondHeading","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["employment","opportunitiesBody","FixedTabsLayout","secondHeading","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["employment","opportunitiesBody","FixedTabsLayout","secondHeading","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["employment","opportunitiesBody","FixedTabsLayout","secondHeading","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","opportunitiesBody","FixedTabsLayout","secondHeading","CustomImage","sizes"]}],"namespace":["employment","afterBody","FixedTabsLayout","secondHeading","CustomImage"]}],"namespace":["employment","benefitsBody","FixedTabsLayout","secondHeading"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","name":"secondBody","label":"Second Body","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["employment","opportunitiesBody","FixedTabsLayout","secondBody","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["employment","opportunitiesBody","FixedTabsLayout","secondBody","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["employment","opportunitiesBody","FixedTabsLayout","secondBody","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["employment","opportunitiesBody","FixedTabsLayout","secondBody","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["employment","opportunitiesBody","FixedTabsLayout","secondBody","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["employment","opportunitiesBody","FixedTabsLayout","secondBody","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["employment","opportunitiesBody","FixedTabsLayout","secondBody","VideoEmbed","duration"]}],"namespace":["employment","afterBody","FixedTabsLayout","secondBody","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["employment","opportunitiesBody","FixedTabsLayout","secondBody","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["employment","opportunitiesBody","FixedTabsLayout","secondBody","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["employment","opportunitiesBody","FixedTabsLayout","secondBody","BookingButton","buttonSubtitle"]}],"namespace":["employment","afterBody","FixedTabsLayout","secondBody","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["employment","opportunitiesBody","FixedTabsLayout","secondBody","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["employment","callToActionBody","FixedTabsLayout","secondBody","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["employment","callToActionBody","FixedTabsLayout","secondBody","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["employment","callToActionBody","FixedTabsLayout","secondBody","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["employment","callToActionBody","FixedTabsLayout","secondBody","ExpertBlock","expertList","skills"]}],"namespace":["employment","opportunitiesBody","FixedTabsLayout","secondBody","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["employment","callToActionBody","FixedTabsLayout","secondBody","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["employment","callToActionBody","FixedTabsLayout","secondBody","ExpertBlock","link","url"]}],"namespace":["employment","opportunitiesBody","FixedTabsLayout","secondBody","ExpertBlock","link"]}],"namespace":["employment","afterBody","FixedTabsLayout","secondBody","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","callToActionBody","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["employment","callToActionBody","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["employment","callToActionBody","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["opportunities","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["opportunities","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["opportunities","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["employment","callToActionBody","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["employment","opportunitiesBody","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["employment","afterBody","FixedTabsLayout","secondBody","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["employment","opportunitiesBody","FixedTabsLayout","secondBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","opportunitiesBody","FixedTabsLayout","secondBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["employment","opportunitiesBody","FixedTabsLayout","secondBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","opportunitiesBody","FixedTabsLayout","secondBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","opportunitiesBody","FixedTabsLayout","secondBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["employment","opportunitiesBody","FixedTabsLayout","secondBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["employment","opportunitiesBody","FixedTabsLayout","secondBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["employment","opportunitiesBody","FixedTabsLayout","secondBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["employment","opportunitiesBody","FixedTabsLayout","secondBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","opportunitiesBody","FixedTabsLayout","secondBody","CustomImage","sizes"]}],"namespace":["employment","afterBody","FixedTabsLayout","secondBody","CustomImage"]}],"namespace":["employment","benefitsBody","FixedTabsLayout","secondBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["employment","benefitsBody","FixedTabsLayout"]},{"label":"Google Maps","name":"GoogleMaps","ui":{"previewSrc":"/images/thumbs/tina/google-maps.jpg"},"fields":[{"type":"string","label":"URL","name":"embedUrl","required":true,"namespace":["employment","benefitsBody","GoogleMaps","embedUrl"],"searchable":true,"uid":false},{"type":"string","label":"Width","name":"embedWidth","namespace":["employment","benefitsBody","GoogleMaps","embedWidth"],"searchable":true,"uid":false},{"type":"string","label":"Height","name":"embedHeight","namespace":["employment","benefitsBody","GoogleMaps","embedHeight"],"searchable":true,"uid":false}],"namespace":["employment","benefitsBody","GoogleMaps"]},{"label":"Grid Layout","name":"GridLayout","ui":{"previewSrc":"/images/thumbs/tina/grid-layout.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","benefitsBody","GridLayout","title"],"searchable":true,"uid":false},{"type":"object","list":true,"label":"Grid Items","name":"grids","ui":{},"fields":[{"type":"string","label":"Grid Title","name":"gridTitle","namespace":["employment","afterBody","GridLayout","grids","gridTitle"]},{"type":"boolean","label":"Show Grid Title","name":"showGridTitle","namespace":["employment","afterBody","GridLayout","grids","showGridTitle"]},{"type":"boolean","label":"Centered Grid Title","name":"centeredGridTitle","namespace":["employment","afterBody","GridLayout","grids","centeredGridTitle"]},{"type":"boolean","label":"Show Header Divider","name":"showHeaderDivider","namespace":["employment","afterBody","GridLayout","grids","showHeaderDivider"]},{"type":"boolean","label":"Offset Grid Start","name":"offsetGridStart","namespace":["employment","afterBody","GridLayout","grids","offsetGridStart"]},{"type":"object","label":"Blocks","name":"blocks","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","opportunitiesBody","GridLayout","grids","blocks","title"]},{"type":"boolean","label":"Show Title","name":"showTitle","namespace":["employment","opportunitiesBody","GridLayout","grids","blocks","showTitle"]},{"type":"image","label":"Image","name":"image","uploadDir":{"namespace":["page","beforeBody","GridLayout","grids","blocks","image","uploadDir"]},"namespace":["employment","opportunitiesBody","GridLayout","grids","blocks","image"]},{"type":"image","label":"Related Image","name":"relatedImage","uploadDir":{"namespace":["page","beforeBody","GridLayout","grids","blocks","relatedImage","uploadDir"]},"namespace":["employment","opportunitiesBody","GridLayout","grids","blocks","relatedImage"]},{"type":"rich-text","name":"linkContent","label":"Link Content","templates":[{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["opportunities","_body","GridLayout","grids","blocks","linkContent","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["opportunities","_body","GridLayout","grids","blocks","linkContent","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["opportunities","_body","GridLayout","grids","blocks","linkContent","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["opportunities","_body","GridLayout","grids","blocks","linkContent","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["opportunities","_body","GridLayout","grids","blocks","linkContent","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["opportunities","_body","GridLayout","grids","blocks","linkContent","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["opportunities","_body","GridLayout","grids","blocks","linkContent","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["opportunities","_body","GridLayout","grids","blocks","linkContent","UtilityButton","openInNewTab"]}],"namespace":["employment","callToActionBody","GridLayout","grids","blocks","linkContent","UtilityButton"]}],"namespace":["employment","opportunitiesBody","GridLayout","grids","blocks","linkContent"]}],"namespace":["employment","afterBody","GridLayout","grids","blocks"]}],"namespace":["employment","benefitsBody","GridLayout","grids"],"searchable":true,"uid":false}],"namespace":["employment","benefitsBody","GridLayout"]},{"name":"Hero","label":"Hero","ui":{"previewSrc":"/blocks/hero.png","defaultItem":{"tagline":"Here's some text above the other text","headline":"This Big Text is Totally Awesome","text":"Phasellus scelerisque, libero eu finibus rutrum, risus risus accumsan libero, nec molestie urna dui a leo."}},"fields":[{"type":"string","label":"Tagline","name":"tagline","namespace":["employment","benefitsBody","Hero","tagline"],"searchable":true,"uid":false},{"type":"string","label":"Headline","name":"headline","namespace":["employment","benefitsBody","Hero","headline"],"searchable":true,"uid":false},{"label":"Text","name":"text","type":"rich-text","namespace":["employment","benefitsBody","Hero","text"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"label":"Actions","name":"actions","type":"object","list":true,"ui":{"defaultItem":{"label":"Action Label","type":"button","icon":true,"link":"/"}},"fields":[{"label":"Label","name":"label","type":"string","namespace":["employment","afterBody","Hero","actions","label"]},{"label":"Type","name":"type","type":"string","options":[{"label":"Button","value":"button"},{"label":"Link","value":"link"}],"namespace":["employment","afterBody","Hero","actions","type"]},{"label":"Icon","name":"icon","type":"boolean","namespace":["employment","afterBody","Hero","actions","icon"]},{"label":"Link","name":"link","type":"string","namespace":["employment","afterBody","Hero","actions","link"]}],"namespace":["employment","benefitsBody","Hero","actions"],"searchable":true,"uid":false},{"type":"object","label":"Image","name":"image","fields":[{"name":"src","label":"Image Source","type":"image","namespace":["employment","afterBody","Hero","image","src"]},{"name":"alt","label":"Alt Text","type":"string","namespace":["employment","afterBody","Hero","image","alt"]}],"namespace":["employment","benefitsBody","Hero","image"],"searchable":true,"uid":false},{"type":"string","label":"Color","name":"color","options":[{"label":"Default","value":"default"},{"label":"Tint","value":"tint"},{"label":"Primary","value":"primary"}],"namespace":["employment","benefitsBody","Hero","color"],"searchable":true,"uid":false}],"namespace":["employment","benefitsBody","Hero"]},{"name":"HorizontalCard","label":"Horizontal Card","ui":{"previewSrc":"/images/thumbs/tina/horizontal-card.jpg"},"fields":[{"type":"object","label":"Cards","name":"cardList","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","afterBody","HorizontalCard","cardList","title"]},{"type":"rich-text","label":"Content","name":"content","namespace":["employment","afterBody","HorizontalCard","cardList","content"]},{"type":"image","label":"Thumbnail","name":"thumbnail","uploadDir":{"namespace":["page","beforeBody","HorizontalCard","cardList","thumbnail","uploadDir"]},"namespace":["employment","afterBody","HorizontalCard","cardList","thumbnail"]},{"type":"string","label":"Link","name":"link","namespace":["employment","afterBody","HorizontalCard","cardList","link"]}],"namespace":["employment","benefitsBody","HorizontalCard","cardList"],"searchable":true,"uid":false},{"type":"object","label":"Button","name":"button","fields":[{"type":"string","label":"Text","name":"text","namespace":["employment","afterBody","HorizontalCard","button","text"]},{"type":"string","label":"Link","name":"link","namespace":["employment","afterBody","HorizontalCard","button","link"]}],"namespace":["employment","benefitsBody","HorizontalCard","button"],"searchable":true,"uid":false}],"namespace":["employment","benefitsBody","HorizontalCard"]},{"name":"InternalCarousel","label":"Internal Carousel","ui":{"previewSrc":"/images/thumbs/tina/internal-carousel.jpg"},"fields":[{"label":"Images","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Image description"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["employment","afterBody","InternalCarousel","items","label"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","InternalCarousel","items","imgSrc","uploadDir"]},"namespace":["employment","afterBody","InternalCarousel","items","imgSrc"]}],"namespace":["employment","benefitsBody","InternalCarousel","items"],"searchable":true,"uid":false},{"type":"string","label":"Header","name":"header","namespace":["employment","benefitsBody","InternalCarousel","header"],"searchable":true,"uid":false},{"type":"rich-text","label":"Text","name":"paragraph","isBody":false,"namespace":["employment","benefitsBody","InternalCarousel","paragraph"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Website","name":"website","namespace":["employment","benefitsBody","InternalCarousel","website"],"searchable":true,"uid":false},{"type":"object","label":"Technologies","name":"technologies","list":true,"ui":{},"fields":[{"type":"string","label":"Name","name":"name","namespace":["employment","afterBody","InternalCarousel","technologies","name"]}],"namespace":["employment","benefitsBody","InternalCarousel","technologies"],"searchable":true,"uid":false},{"type":"string","label":"Case Study","name":"caseStudyUrl","namespace":["employment","benefitsBody","InternalCarousel","caseStudyUrl"],"searchable":true,"uid":false},{"type":"string","label":"Video URL","name":"videoUrl","namespace":["employment","benefitsBody","InternalCarousel","videoUrl"],"searchable":true,"uid":false}],"namespace":["employment","benefitsBody","InternalCarousel"]},{"label":"Join As Presenter","name":"joinAsPresenter","fields":[{"label":"Learn More Link","name":"link","type":"string","namespace":["employment","benefitsBody","joinAsPresenter","link"],"searchable":true,"uid":false},{"label":"Image","name":"img","type":"image","namespace":["employment","benefitsBody","joinAsPresenter","img"],"searchable":false,"uid":false}],"namespace":["employment","benefitsBody","joinAsPresenter"]},{"label":"Join Github","name":"joinGithub","ui":{"previewSrc":"/images/thumbs/tina/join-github.jpg"},"fields":[{"label":"Title","name":"title","type":"string","namespace":["employment","benefitsBody","joinGithub","title"],"searchable":true,"uid":false},{"label":"Join Github Link","name":"link","type":"string","namespace":["employment","benefitsBody","joinGithub","link"],"searchable":true,"uid":false}],"namespace":["employment","benefitsBody","joinGithub"]},{"name":"JotFormEmbed","label":"JotForm Embed","ui":{"previewSrc":"/images/thumbs/tina/jotform-embed.jpg"},"fields":[{"type":"string","name":"jotFormId","label":"JotForm Id","required":true,"namespace":["employment","benefitsBody","JotFormEmbed","jotFormId"],"searchable":true,"uid":false},{"type":"string","label":"Button Text","name":"buttonText","namespace":["employment","benefitsBody","JotFormEmbed","buttonText"],"searchable":true,"uid":false},{"type":"string","name":"containerClass","label":"Container Class","namespace":["employment","benefitsBody","JotFormEmbed","containerClass"],"searchable":true,"uid":false},{"type":"string","label":"Button Class","name":"buttonClass","namespace":["employment","benefitsBody","JotFormEmbed","buttonClass"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","namespace":["employment","benefitsBody","JotFormEmbed","animated"],"searchable":true,"uid":false}],"namespace":["employment","benefitsBody","JotFormEmbed"]},{"name":"LatestTech","label":"Latest Tech","ui":{"previewSrc":"/images/thumbs/tina/latest-tech.jpg"},"fields":[{"type":"reference","description":"Select a config file including a set of badges","collections":["userGroupGlobal"],"label":"Badges","name":"badges","namespace":["employment","benefitsBody","LatestTech","badges"],"searchable":true,"uid":false}],"namespace":["employment","benefitsBody","LatestTech"]},{"name":"LocationBlock","label":"Locations","ui":{"previewSrc":"/images/thumbs/tina/locations.jpg"},"fields":[{"type":"string","name":"title","label":"Title","namespace":["employment","benefitsBody","LocationBlock","title"],"searchable":true,"uid":false},{"type":"object","label":"Location List","name":"locationList","list":true,"ui":{},"fields":[{"type":"reference","collections":["locations"],"label":"Location","name":"location","namespace":["employment","afterBody","LocationBlock","locationList","location"]}],"namespace":["employment","benefitsBody","LocationBlock","locationList"],"searchable":true,"uid":false},{"type":"object","name":"chapelWebsite","label":"Chapel Website","fields":[{"type":"string","name":"title","label":"Text","namespace":["employment","afterBody","LocationBlock","chapelWebsite","title"]},{"type":"string","name":"URL","label":"URL","namespace":["employment","afterBody","LocationBlock","chapelWebsite","URL"]}],"namespace":["employment","benefitsBody","LocationBlock","chapelWebsite"],"searchable":true,"uid":false}],"namespace":["employment","benefitsBody","LocationBlock"]},{"name":"NewslettersTable","label":"Newsletters Table","ui":{"previewSrc":"/images/thumbs/tina/newsletters-table.jpg"},"fields":[{"type":"string","label":"Header text","name":"headerText","namespace":["employment","benefitsBody","NewslettersTable","headerText"],"searchable":true,"uid":false}],"namespace":["employment","benefitsBody","NewslettersTable"]},{"label":"Organizer","name":"organizer","fields":[{"type":"image","label":"Profile Image","name":"profileImg","namespace":["employment","benefitsBody","organizer","profileImg"],"searchable":false,"uid":false},{"type":"string","label":"Profile Link","name":"profileLink","namespace":["employment","benefitsBody","organizer","profileLink"],"searchable":true,"uid":false},{"type":"string","label":"Name","name":"name","namespace":["employment","benefitsBody","organizer","name"],"searchable":true,"uid":false},{"type":"string","label":"Position","name":"position","namespace":["employment","benefitsBody","organizer","position"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","namespace":["employment","benefitsBody","organizer","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["employment","benefitsBody","organizer"]},{"label":"Payment Block","name":"paymentBlock","ui":{"previewSrc":"/images/thumbs/tina/payment-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","benefitsBody","paymentBlock","title"],"searchable":true,"uid":false},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["employment","benefitsBody","paymentBlock","subTitle"],"searchable":true,"uid":false},{"type":"reference","label":"Payment Links","name":"payments","collections":["paymentDetails"],"namespace":["employment","benefitsBody","paymentBlock","payments"],"searchable":true,"uid":false},{"type":"rich-text","label":"Footer","name":"footer","namespace":["employment","benefitsBody","paymentBlock","footer"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"image","label":"Credit Cards Image","name":"creditImgSrc","namespace":["employment","benefitsBody","paymentBlock","creditImgSrc"],"searchable":false,"uid":false},{"type":"string","label":"Alt Text","name":"altTxt","namespace":["employment","benefitsBody","paymentBlock","altTxt"],"searchable":true,"uid":false}],"namespace":["employment","benefitsBody","paymentBlock"]},{"name":"PresenterBlock","label":"Presenters","ui":{"previewSrc":"/images/thumbs/tina/presenters.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["employment","benefitsBody","PresenterBlock","header"],"searchable":true,"uid":false},{"type":"object","name":"presenterList","label":"Presenters","list":true,"ui":{},"fields":[{"type":"reference","name":"presenter","label":"Presenters","collections":["presenter"],"namespace":["employment","afterBody","PresenterBlock","presenterList","presenter"]}],"namespace":["employment","benefitsBody","PresenterBlock","presenterList"],"searchable":true,"uid":false},{"type":"object","label":"Other Events","name":"otherEvent","fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","afterBody","PresenterBlock","otherEvent","title"]},{"type":"string","label":"URL","name":"eventURL","namespace":["employment","afterBody","PresenterBlock","otherEvent","eventURL"]}],"namespace":["employment","benefitsBody","PresenterBlock","otherEvent"],"searchable":true,"uid":false}],"namespace":["employment","benefitsBody","PresenterBlock"]},{"label":"Recurring Event","name":"RecurringEvent","ui":{"previewSrc":"/images/thumbs/tina/recurring-event.jpg"},"fields":[{"type":"string","label":"Apply Link Redirect","name":"applyLinkRedirect","namespace":["employment","benefitsBody","RecurringEvent","applyLinkRedirect"],"searchable":true,"uid":false},{"type":"string","label":"Day","name":"day","options":[{"label":"Monday","value":"monday"},{"label":"Tuesday","value":"tuesday"},{"label":"Wednesday","value":"wednesday"},{"label":"Thursday","value":"thursday"},{"label":"Friday","value":"friday"},{"label":"Saturday","value":"saturday"},{"label":"Sunday","value":"sunday"}],"required":true,"namespace":["employment","benefitsBody","RecurringEvent","day"],"searchable":true,"uid":false}],"namespace":["employment","benefitsBody","RecurringEvent"]},{"name":"SectionHeader","label":"Section Header","ui":{"previewSrc":"/images/thumbs/tina/section-header.jpg"},"fields":[{"type":"string","label":"Header Text","name":"headerText","namespace":["employment","benefitsBody","SectionHeader","headerText"],"searchable":true,"uid":false}],"namespace":["employment","benefitsBody","SectionHeader"]},{"name":"ServiceCards","label":"Service Cards","ui":{"previewSrc":"/images/thumbs/tina/services-cards.jpg"},"fields":[{"type":"string","label":"Big Cards Label","name":"bigCardsLabel","namespace":["employment","benefitsBody","ServiceCards","bigCardsLabel"],"searchable":true,"uid":false},{"label":"Big Cards","name":"bigCards","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","afterBody","ServiceCards","bigCards","title"]},{"type":"string","label":"Description","component":"textarea","name":"description","namespace":["employment","afterBody","ServiceCards","bigCards","description"]},{"type":"string","label":"URL","name":"link","namespace":["employment","afterBody","ServiceCards","bigCards","link"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Red","value":"red"},{"label":"Light Gray","value":"lightgray"},{"label":"Medium Gray","value":"mediumgray"},{"label":"Dark Gray","value":"darkgray"}],"namespace":["employment","afterBody","ServiceCards","bigCards","color"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","ServiceCards","bigCards","imgSrc","uploadDir"]},"namespace":["employment","afterBody","ServiceCards","bigCards","imgSrc"]}],"namespace":["employment","benefitsBody","ServiceCards","bigCards"],"searchable":true,"uid":false},{"type":"string","label":"Small Cards Label","name":"smallCardsLabel","namespace":["employment","benefitsBody","ServiceCards","smallCardsLabel"],"searchable":true,"uid":false},{"label":"Small Cards","name":"smallCards","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","afterBody","ServiceCards","smallCards","title"]},{"type":"string","label":"URL","name":"link","namespace":["employment","afterBody","ServiceCards","smallCards","link"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Red","value":"red"},{"label":"Light Gray","value":"lightgray"},{"label":"Medium Gray","value":"mediumgray"},{"label":"Dark Gray","value":"darkgray"}],"namespace":["employment","afterBody","ServiceCards","smallCards","color"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","ServiceCards","smallCards","imgSrc","uploadDir"]},"namespace":["employment","afterBody","ServiceCards","smallCards","imgSrc"]},{"type":"boolean","label":"External Page","description":"Select this if the link is not part of the website. This includes SSW.Rules, and SSW.People links","name":"isExternal","namespace":["employment","afterBody","ServiceCards","smallCards","isExternal"]}],"namespace":["employment","benefitsBody","ServiceCards","smallCards"],"searchable":true,"uid":false},{"label":"Links","name":"links","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["employment","afterBody","ServiceCards","links","label"]},{"type":"string","label":"URL","name":"link","namespace":["employment","afterBody","ServiceCards","links","link"]}],"namespace":["employment","benefitsBody","ServiceCards","links"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["employment","benefitsBody","ServiceCards","backgroundColor"],"searchable":true,"uid":false}],"namespace":["employment","benefitsBody","ServiceCards"]},{"label":"Table Layout","name":"TableLayout","ui":{"previewSrc":"/images/thumbs/tina/table-layout.jpg"},"fields":[{"label":"Table Style","name":"tableStyle","type":"string","options":["none","basicBorder","styled","benefits"],"namespace":["employment","benefitsBody","TableLayout","tableStyle"],"searchable":true,"uid":false},{"label":"First column bolded + left aligned","name":"firstColBold","type":"boolean","required":false,"namespace":["employment","benefitsBody","TableLayout","firstColBold"],"searchable":true,"uid":false},{"type":"string","label":"Table Headers","name":"headers","list":true,"namespace":["employment","benefitsBody","TableLayout","headers"],"searchable":true,"uid":false},{"type":"object","label":"Rows","name":"rows","list":true,"fields":[{"type":"object","label":"Cells","name":"cells","list":true,"fields":[{"type":"string","label":"Value","name":"cellValue","required":true,"component":{"namespace":["page","beforeBody","TableLayout","rows","cells","cellValue",""]},"namespace":["employment","opportunitiesBody","TableLayout","rows","cells","cellValue"]}],"ui":{},"namespace":["employment","afterBody","TableLayout","rows","cells"]},{"type":"boolean","label":"Is Heading","name":"isHeader","required":false,"namespace":["employment","afterBody","TableLayout","rows","isHeader"]}],"ui":{},"namespace":["employment","benefitsBody","TableLayout","rows"],"searchable":true,"uid":false}],"namespace":["employment","benefitsBody","TableLayout"]},{"name":"TestimonialsList","label":"Testimonials List","ui":{"previewSrc":"/images/thumbs/tina/testimonials.jpg"},"fields":[{"type":"object","label":"Exclude Categories","name":"excludedCategories","ui":{},"list":true,"fields":[{"type":"reference","label":"Category Name","name":"categoryName","collections":["testimonialCategories"],"namespace":["employment","afterBody","TestimonialsList","excludedCategories","categoryName"]}],"namespace":["employment","benefitsBody","TestimonialsList","excludedCategories"],"searchable":true,"uid":false}],"namespace":["employment","benefitsBody","TestimonialsList"]},{"label":"Training Information","name":"TrainingInformation","ui":{"previewSrc":"/images/thumbs/tina/training-information.jpg"},"fields":[{"type":"object","label":"Training Information Items","name":"trainingInformationItems","list":true,"fields":[{"type":"string","label":"Header","name":"header","namespace":["employment","afterBody","TrainingInformation","trainingInformationItems","header"]},{"type":"rich-text","label":"Body","name":"body","templates":[{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["employment","callToActionBody","TrainingInformation","trainingInformationItems","body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["employment","callToActionBody","TrainingInformation","trainingInformationItems","body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["employment","callToActionBody","TrainingInformation","trainingInformationItems","body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["employment","callToActionBody","TrainingInformation","trainingInformationItems","body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["employment","callToActionBody","TrainingInformation","trainingInformationItems","body","VerticalListItem","afterBody"]}],"namespace":["employment","opportunitiesBody","TrainingInformation","trainingInformationItems","body","VerticalListItem"]},{"label":"Recurring Event","name":"RecurringEvent","ui":{"previewSrc":"/images/thumbs/tina/recurring-event.jpg"},"fields":[{"type":"string","label":"Apply Link Redirect","name":"applyLinkRedirect","namespace":["employment","callToActionBody","TrainingInformation","trainingInformationItems","body","RecurringEvent","applyLinkRedirect"]},{"type":"string","label":"Day","name":"day","options":[{"label":"Monday","value":"monday"},{"label":"Tuesday","value":"tuesday"},{"label":"Wednesday","value":"wednesday"},{"label":"Thursday","value":"thursday"},{"label":"Friday","value":"friday"},{"label":"Saturday","value":"saturday"},{"label":"Sunday","value":"sunday"}],"required":true,"namespace":["employment","callToActionBody","TrainingInformation","trainingInformationItems","body","RecurringEvent","day"]}],"namespace":["employment","opportunitiesBody","TrainingInformation","trainingInformationItems","body","RecurringEvent"]}],"namespace":["employment","afterBody","TrainingInformation","trainingInformationItems","body"]}],"namespace":["employment","benefitsBody","TrainingInformation","trainingInformationItems"],"searchable":true,"uid":false}],"namespace":["employment","benefitsBody","TrainingInformation"]},{"label":"Training Learning Outcomes","name":"TrainingLearningOutcome","ui":{"previewSrc":"/images/thumbs/tina/training-learning-outcomes.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["employment","benefitsBody","TrainingLearningOutcome","header"],"searchable":true,"uid":false},{"type":"object","label":"List Items","name":"listItems","list":true,"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","afterBody","TrainingLearningOutcome","listItems","title"]},{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["employment","afterBody","TrainingLearningOutcome","listItems","content"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","TrainingLearningOutcome","listItems","icon","uploadDir"]},"namespace":["employment","afterBody","TrainingLearningOutcome","listItems","icon"]}],"namespace":["employment","benefitsBody","TrainingLearningOutcome","listItems"],"searchable":true,"uid":false}],"namespace":["employment","benefitsBody","TrainingLearningOutcome"]},{"label":"Tweet Embed","name":"TweetEmbed","ui":{"previewSrc":"/images/thumbs/tina/tweet-embed.jpg"},"fields":[{"type":"string","name":"url","label":"Tweet URL","required":true,"namespace":["employment","benefitsBody","TweetEmbed","url"],"searchable":true,"uid":false}],"namespace":["employment","benefitsBody","TweetEmbed"]},{"name":"UpcomingEvents","label":"Upcoming Events","ui":{"previewSrc":"/images/thumbs/tina/upcoming-events.jpg","defaultItem":{"title":"Upcoming Events","numberOfEvents":30}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","benefitsBody","UpcomingEvents","title"],"searchable":true,"uid":false},{"type":"number","label":"Number of Events","name":"numberOfEvents","namespace":["employment","benefitsBody","UpcomingEvents","numberOfEvents"],"searchable":true,"uid":false}],"namespace":["employment","benefitsBody","UpcomingEvents"]},{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["employment","benefitsBody","UtilityButton","buttonText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"link","required":false,"namespace":["employment","benefitsBody","UtilityButton","link"],"searchable":true,"uid":false},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["employment","benefitsBody","UtilityButton","size"],"searchable":true,"uid":false},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["employment","benefitsBody","UtilityButton","btnIcon"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["employment","benefitsBody","UtilityButton","animated"],"searchable":true,"uid":false},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["employment","benefitsBody","UtilityButton","uncentered"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["employment","benefitsBody","UtilityButton","removeTopMargin"],"searchable":true,"uid":false},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["employment","benefitsBody","UtilityButton","openInNewTab"],"searchable":true,"uid":false}],"namespace":["employment","benefitsBody","UtilityButton"]},{"name":"VerticalImageLayout","label":"Vertical Image Layout","fields":[{"type":"image","label":"Image","name":"imageSrc","uploadDir":{"namespace":["page","beforeBody","VerticalImageLayout","imageSrc","uploadDir"]},"namespace":["employment","benefitsBody","VerticalImageLayout","imageSrc"],"searchable":false,"uid":false},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","benefitsBody","VerticalImageLayout","altText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"imageLink","namespace":["employment","benefitsBody","VerticalImageLayout","imageLink"],"searchable":true,"uid":false},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","benefitsBody","VerticalImageLayout","height"],"searchable":true,"uid":false},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","benefitsBody","VerticalImageLayout","width"],"searchable":true,"uid":false},{"type":"rich-text","label":"Message","name":"message","required":true,"namespace":["employment","benefitsBody","VerticalImageLayout","message"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","benefitsBody","VerticalImageLayout","sizes"],"searchable":true,"uid":false}],"namespace":["employment","benefitsBody","VerticalImageLayout"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["employment","benefitsBody","VerticalListItem","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"number","label":"Index number","name":"index","namespace":["employment","benefitsBody","VerticalListItem","index"],"searchable":true,"uid":false},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["employment","benefitsBody","VerticalListItem","icon"],"searchable":false,"uid":false},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["employment","benefitsBody","VerticalListItem","iconScale"],"searchable":true,"uid":false},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["employment","benefitsBody","VerticalListItem","afterBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["employment","benefitsBody","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["employment","benefitsBody","VideoEmbed","url"],"searchable":true,"uid":false},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["employment","benefitsBody","VideoEmbed","videoWidth"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["employment","benefitsBody","VideoEmbed","removeMargin"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["employment","benefitsBody","VideoEmbed","uncentre"],"searchable":true,"uid":false},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["employment","benefitsBody","VideoEmbed","overflow"],"searchable":true,"uid":false},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["employment","benefitsBody","VideoEmbed","caption"],"searchable":true,"uid":false},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["employment","benefitsBody","VideoEmbed","duration"],"searchable":true,"uid":false}],"namespace":["employment","benefitsBody","VideoEmbed"]},{"name":"InlineJotForm","label":"In-line JotForm","ui":{"previewSrc":"/images/thumbs/tina/inline-jot-form.jpg"},"fields":[{"type":"string","name":"title","label":"Title","description":"Optional title for JotForm","namespace":["employment","benefitsBody","InlineJotForm","title"],"searchable":true,"uid":false},{"type":"string","name":"jotFormId","label":"JotForm ID","required":true,"namespace":["employment","benefitsBody","InlineJotForm","jotFormId"],"searchable":true,"uid":false},{"type":"string","name":"additionalClasses","label":"Additional classnames","description":"Optional styling for iframe element only","namespace":["employment","benefitsBody","InlineJotForm","additionalClasses"],"searchable":true,"uid":false}],"namespace":["employment","benefitsBody","InlineJotForm"]}],"namespace":["employment","benefitsBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"After body","name":"afterBody","templates":[{"name":"AboutUs","label":"About Us","ui":{"previewSrc":"/images/thumbs/tina/about-us.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["employment","afterBody","AboutUs","backgroundColor"],"searchable":true,"uid":false},{"type":"boolean","label":"Show Map","name":"showMap","required":false,"namespace":["employment","afterBody","AboutUs","showMap"],"searchable":true,"uid":false}],"namespace":["employment","afterBody","AboutUs"]},{"label":"Agenda","name":"Agenda","ui":{"previewSrc":"/images/thumbs/tina/agenda.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["employment","afterBody","Agenda","header"],"searchable":true,"uid":false},{"type":"string","label":"Header Color","name":"textColor","options":[{"label":"Red","value":"red"},{"label":"Gray","value":"gray"},{"label":"Default","value":"default"}],"namespace":["employment","afterBody","Agenda","textColor"],"searchable":true,"uid":false},{"type":"object","label":"Agenda Items","name":"agendaItemList","ui":{},"list":true,"fields":[{"type":"string","label":"Placeholder Text","name":"placeholder","namespace":["employment","opportunitiesBody","Agenda","agendaItemList","placeholder"]},{"type":"rich-text","label":"Body","name":"body","templates":[{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["opportunities","_body","Agenda","agendaItemList","body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["opportunities","_body","Agenda","agendaItemList","body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["opportunities","_body","Agenda","agendaItemList","body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["opportunities","_body","Agenda","agendaItemList","body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["opportunities","_body","Agenda","agendaItemList","body","VerticalListItem","afterBody"]}],"namespace":["employment","callToActionBody","Agenda","agendaItemList","body","VerticalListItem"]}],"namespace":["employment","opportunitiesBody","Agenda","agendaItemList","body"]}],"namespace":["employment","afterBody","Agenda","agendaItemList"],"searchable":true,"uid":false}],"namespace":["employment","afterBody","Agenda"]},{"label":"Agreement Form","name":"AgreementForm","ui":{"previewSrc":"/images/thumbs/tina/agreement-form.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["employment","afterBody","AgreementForm","backgroundColor"],"searchable":true,"uid":false},{"type":"object","label":"Form fields","name":"fields","list":true,"fields":[{"type":"string","label":"ID","name":"id","required":true,"namespace":["employment","opportunitiesBody","AgreementForm","fields","id"]},{"type":"string","label":"Label","name":"label","required":true,"namespace":["employment","opportunitiesBody","AgreementForm","fields","label"]},{"type":"string","label":"Placeholder","name":"placeholder","namespace":["employment","opportunitiesBody","AgreementForm","fields","placeholder"]},{"type":"boolean","label":"Resizeable","name":"resizeable","required":true,"namespace":["employment","opportunitiesBody","AgreementForm","fields","resizeable"]}],"namespace":["employment","afterBody","AgreementForm","fields"],"searchable":true,"uid":false}],"namespace":["employment","afterBody","AgreementForm"]},{"label":"Interest Form","name":"InterestForm","ui":{"previewSrc":"/images/thumbs/tina/interest-form.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["employment","afterBody","InterestForm","buttonText"],"searchable":true,"uid":false}],"namespace":["employment","afterBody","InterestForm"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["employment","afterBody","BookingButton","buttonText"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","namespace":["employment","afterBody","BookingButton","animated"],"searchable":true,"uid":false},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["employment","afterBody","BookingButton","buttonSubtitle"],"searchable":true,"uid":false}],"namespace":["employment","afterBody","BookingButton"]},{"name":"BuiltOnAzure","label":"Built on Azure","ui":{"previewSrc":"/images/thumbs/tina/built-on-azure.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["employment","afterBody","BuiltOnAzure","backgroundColor"],"searchable":true,"uid":false}],"namespace":["employment","afterBody","BuiltOnAzure"]},{"name":"Carousel","label":"Carousel","ui":{"previewSrc":"/images/thumbs/tina/carousel.jpg"},"fields":[{"label":"Items","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Item description","link":"/","openIn":"sameWindow"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["employment","opportunitiesBody","Carousel","items","label"]},{"type":"string","label":"URL","name":"link","description":"If link contains ssw.com.au, you can skip the full URL and just use the path. e.g. /services","namespace":["employment","opportunitiesBody","Carousel","items","link"]},{"type":"string","label":"Open in","name":"openIn","description":"If it is external link, please select 'New window' option.","options":[{"label":"Same window","value":"sameWindow"},{"label":"Modal","value":"modal"},{"label":"New window","value":"newWindow"}],"namespace":["employment","opportunitiesBody","Carousel","items","openIn"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","Carousel","items","imgSrc","uploadDir"]},"namespace":["employment","opportunitiesBody","Carousel","items","imgSrc"]}],"namespace":["employment","afterBody","Carousel","items"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["employment","afterBody","Carousel","backgroundColor"],"searchable":true,"uid":false},{"type":"number","label":"Delay (Seconds)","name":"delay","required":true,"namespace":["employment","afterBody","Carousel","delay"],"searchable":true,"uid":false},{"type":"boolean","label":"Show on mobile devices","name":"showOnMobileDevices","namespace":["employment","afterBody","Carousel","showOnMobileDevices"],"searchable":true,"uid":false}],"namespace":["employment","afterBody","Carousel"]},{"name":"Citation","label":"Citation","fields":[{"type":"string","label":"author","name":"author","namespace":["employment","afterBody","Citation","author"],"searchable":true,"uid":false},{"type":"string","label":"article","name":"article","required":true,"namespace":["employment","afterBody","Citation","article"],"searchable":true,"uid":false}],"namespace":["employment","afterBody","Citation"]},{"label":"Client List","name":"ClientList","ui":{"previewSrc":"/images/thumbs/tina/clients-list.jpg"},"fields":[{"type":"object","name":"categories","label":"Categories","list":true,"fields":[{"type":"reference","name":"category","label":"Category","collections":["clientCategories"],"namespace":["employment","opportunitiesBody","ClientList","categories","category"]}],"ui":{},"namespace":["employment","afterBody","ClientList","categories"],"searchable":true,"uid":false},{"type":"object","name":"clients","label":"Clients list","list":true,"ui":{"previewSrc":"/images/thumbs/tina/clients-list.jpg"},"fields":[{"type":"string","name":"name","label":"Name","namespace":["employment","opportunitiesBody","ClientList","clients","name"]},{"type":"image","name":"logo","label":"Logo","namespace":["employment","opportunitiesBody","ClientList","clients","logo"]},{"type":"string","name":"logoUrl","label":"Logo URL","namespace":["employment","opportunitiesBody","ClientList","clients","logoUrl"]},{"type":"rich-text","name":"content","label":"Content","templates":[{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["opportunities","_body","ClientList","clients","content","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["opportunities","_body","ClientList","clients","content","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["opportunities","_body","ClientList","clients","content","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["opportunities","_body","ClientList","clients","content","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["opportunities","_body","ClientList","clients","content","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["opportunities","_body","ClientList","clients","content","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["opportunities","_body","ClientList","clients","content","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["opportunities","_body","ClientList","clients","content","UtilityButton","openInNewTab"]}],"namespace":["employment","callToActionBody","ClientList","clients","content","UtilityButton"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["opportunities","_body","ClientList","clients","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["opportunities","_body","ClientList","clients","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["opportunities","_body","ClientList","clients","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["opportunities","_body","ClientList","clients","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["opportunities","_body","ClientList","clients","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["opportunities","_body","ClientList","clients","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["opportunities","_body","ClientList","clients","content","VideoEmbed","duration"]}],"namespace":["employment","callToActionBody","ClientList","clients","content","VideoEmbed"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["opportunities","_body","ClientList","clients","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["opportunities","_body","ClientList","clients","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["opportunities","_body","ClientList","clients","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["opportunities","_body","ClientList","clients","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["opportunities","_body","ClientList","clients","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["opportunities","_body","ClientList","clients","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["opportunities","_body","ClientList","clients","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["opportunities","_body","ClientList","clients","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["opportunities","_body","ClientList","clients","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["opportunities","_body","ClientList","clients","content","CustomImage","sizes"]}],"namespace":["employment","callToActionBody","ClientList","clients","content","CustomImage"]},{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["opportunities","_body","ClientList","clients","content","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["opportunities","_body","ClientList","clients","content","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["eventsIndex","sidebarBody","ClientList","clients","content","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["eventsIndex","sidebarBody","ClientList","clients","content","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["eventsIndex","sidebarBody","ClientList","clients","content","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["eventsIndex","sidebarBody","ClientList","clients","content","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["eventsIndex","sidebarBody","ClientList","clients","content","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["eventsIndex","sidebarBody","ClientList","clients","content","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["eventsIndex","sidebarBody","ClientList","clients","content","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["eventsIndex","sidebarBody","ClientList","clients","content","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["eventsIndex","sidebarBody","ClientList","clients","content","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["eventsIndex","sidebarBody","ClientList","clients","content","ContentCard","content","CustomImage","sizes"]}],"namespace":["eventsIndex","preface","ClientList","clients","content","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["eventsIndex","sidebarBody","ClientList","clients","content","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["eventsIndex","sidebarBody","ClientList","clients","content","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["eventsIndex","sidebarBody","ClientList","clients","content","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["eventsIndex","sidebarBody","ClientList","clients","content","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["eventsIndex","sidebarBody","ClientList","clients","content","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["eventsIndex","preface","ClientList","clients","content","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["eventsIndex","sidebarBody","ClientList","clients","content","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["eventsIndex","sidebarBody","ClientList","clients","content","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["eventsIndex","sidebarBody","ClientList","clients","content","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["eventsIndex","sidebarBody","ClientList","clients","content","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["eventsIndex","sidebarBody","ClientList","clients","content","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["eventsIndex","sidebarBody","ClientList","clients","content","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["eventsIndex","sidebarBody","ClientList","clients","content","ContentCard","content","VideoEmbed","duration"]}],"namespace":["eventsIndex","preface","ClientList","clients","content","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["eventsIndex","sidebarBody","ClientList","clients","content","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["eventsIndex","sidebarBody","ClientList","clients","content","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["eventsIndex","afterEvents","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["eventsIndex","afterEvents","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["eventsIndex","afterEvents","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["eventsIndex","afterEvents","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["eventsIndex","afterEvents","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["eventsIndex","sidebarBody","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["eventsIndex","preface","ClientList","clients","content","ContentCard","content","ColorBlock"]}],"namespace":["opportunities","_body","ClientList","clients","content","ContentCard","content"]}],"namespace":["employment","callToActionBody","ClientList","clients","content","ContentCard"]}],"namespace":["employment","opportunitiesBody","ClientList","clients","content"]},{"type":"string","name":"caseStudyUrl","label":"Case study URL","namespace":["employment","opportunitiesBody","ClientList","clients","caseStudyUrl"]},{"type":"object","name":"categories","label":"Categories","list":true,"ui":{},"fields":[{"type":"reference","name":"category","label":"Category","collections":["clientCategories"],"namespace":["employment","callToActionBody","ClientList","clients","categories","category"]}],"namespace":["employment","opportunitiesBody","ClientList","clients","categories"]}],"namespace":["employment","afterBody","ClientList","clients"],"searchable":true,"uid":false}],"namespace":["employment","afterBody","ClientList"]},{"name":"ClientLogos","label":"Client Logos","ui":{"previewSrc":"/images/thumbs/tina/client-logos.jpg"},"fields":[{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","afterBody","ClientLogos","altText"],"searchable":true,"uid":false}],"namespace":["employment","afterBody","ClientLogos"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","afterBody","ColorBlock","title"],"searchable":true,"uid":false},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["employment","afterBody","ColorBlock","subTitle"],"searchable":true,"uid":false},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["employment","opportunitiesBody","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["employment","opportunitiesBody","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["employment","opportunitiesBody","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["employment","opportunitiesBody","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["employment","opportunitiesBody","ColorBlock","colorRow","caption"]}],"namespace":["employment","afterBody","ColorBlock","colorRow"],"searchable":true,"uid":false}],"namespace":["employment","afterBody","ColorBlock"]},{"name":"ColorPalette","label":"Color Palette","ui":{"previewSrc":"/images/thumbs/tina/color-palette.jpg"},"fields":[{"type":"string","label":"Name","name":"name","namespace":["employment","afterBody","ColorPalette","name"],"searchable":true,"uid":false}],"namespace":["employment","afterBody","ColorPalette"]},{"name":"Content","label":"Content","ui":{"previewSrc":"/images/thumbs/tina/content.jpg","defaultItem":{"body":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","afterBody","Content","title"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["employment","callToActionBody","Content","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","callToActionBody","Content","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["employment","callToActionBody","Content","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","callToActionBody","Content","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","callToActionBody","Content","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["employment","callToActionBody","Content","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["employment","callToActionBody","Content","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["employment","callToActionBody","Content","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["employment","callToActionBody","Content","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","callToActionBody","Content","content","CustomImage","sizes"]}],"namespace":["employment","opportunitiesBody","Content","content","CustomImage"]},{"name":"ClientLogos","label":"Client Logos","ui":{"previewSrc":"/images/thumbs/tina/client-logos.jpg"},"fields":[{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","callToActionBody","Content","content","ClientLogos","altText"]}],"namespace":["employment","opportunitiesBody","Content","content","ClientLogos"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["employment","callToActionBody","Content","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["employment","callToActionBody","Content","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["employment","callToActionBody","Content","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["employment","callToActionBody","Content","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["employment","callToActionBody","Content","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["employment","callToActionBody","Content","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["employment","callToActionBody","Content","content","VideoEmbed","duration"]}],"namespace":["employment","opportunitiesBody","Content","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","callToActionBody","Content","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["employment","callToActionBody","Content","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["opportunities","_body","Content","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["opportunities","_body","Content","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["opportunities","_body","Content","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["opportunities","_body","Content","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["opportunities","_body","Content","content","ColorBlock","colorRow","caption"]}],"namespace":["employment","callToActionBody","Content","content","ColorBlock","colorRow"]}],"namespace":["employment","opportunitiesBody","Content","content","ColorBlock"]}],"namespace":["employment","afterBody","Content","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Container Padding","name":"paddingClass","options":["Mobile: No Padding","Mobile: No Top and Horizontal Padding"],"namespace":["employment","afterBody","Content","paddingClass"],"searchable":true,"uid":false},{"type":"string","label":"Text size","name":"size","options":[{"label":"small","value":"sm"},{"label":"normal","value":"base"},{"label":"large","value":"lg"},{"label":"extra large","value":"xl"},{"label":"2x large","value":"2xl"}],"namespace":["employment","afterBody","Content","size"],"searchable":true,"uid":false},{"type":"string","label":"Align","name":"align","options":[{"label":"Left","value":"left"},{"label":"Center","value":"center"},{"label":"Right","value":"right"}],"namespace":["employment","afterBody","Content","align"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["employment","afterBody","Content","backgroundColor"],"searchable":true,"uid":false}],"namespace":["employment","afterBody","Content"]},{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["employment","afterBody","ContentCard","prose"],"searchable":true,"uid":false},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["employment","afterBody","ContentCard","centerAlignedText"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["employment","callToActionBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","callToActionBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["employment","callToActionBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","callToActionBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","callToActionBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["employment","callToActionBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["employment","callToActionBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["employment","callToActionBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["employment","callToActionBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","callToActionBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["employment","opportunitiesBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["employment","callToActionBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["employment","callToActionBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["employment","callToActionBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["employment","callToActionBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["employment","callToActionBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["employment","opportunitiesBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["employment","callToActionBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["employment","callToActionBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["employment","callToActionBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["employment","callToActionBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["employment","callToActionBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["employment","callToActionBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["employment","callToActionBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["employment","opportunitiesBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","callToActionBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["employment","callToActionBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["opportunities","_body","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["opportunities","_body","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["opportunities","_body","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["opportunities","_body","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["opportunities","_body","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["employment","callToActionBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["employment","opportunitiesBody","ContentCard","content","ColorBlock"]}],"namespace":["employment","afterBody","ContentCard","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["employment","afterBody","ContentCard"]},{"name":"CustomDownloadButton","label":"Custom Download Button","ui":{"previewSrc":"/images/thumbs/tina/custom-download-button.jpg"},"fields":[{"type":"string","label":"Text","name":"btnText","namespace":["employment","afterBody","CustomDownloadButton","btnText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"btnLink","namespace":["employment","afterBody","CustomDownloadButton","btnLink"],"searchable":true,"uid":false}],"namespace":["employment","afterBody","CustomDownloadButton"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["employment","afterBody","CustomImage","src"],"searchable":false,"uid":false},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","afterBody","CustomImage","altText"],"searchable":true,"uid":false},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["employment","afterBody","CustomImage","alignment"],"searchable":true,"uid":false},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","afterBody","CustomImage","height"],"searchable":true,"uid":false},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","afterBody","CustomImage","width"],"searchable":true,"uid":false},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["employment","afterBody","CustomImage","link"],"searchable":true,"uid":false},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["employment","afterBody","CustomImage","customClass"],"searchable":true,"uid":false},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["employment","afterBody","CustomImage","caption"],"searchable":true,"uid":false},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["employment","afterBody","CustomImage","captionColor"],"searchable":true,"uid":false},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","afterBody","CustomImage","sizes"],"searchable":true,"uid":false}],"namespace":["employment","afterBody","CustomImage"]},{"name":"DomainFromQuery","label":"Domain from query","ui":{"previewSrc":"/images/thumbs/tina/domain-from-query.jpg"},"fields":[{"name":"title","label":"Title","type":"string","description":"This is a H1 heading","namespace":["employment","afterBody","DomainFromQuery","title"],"searchable":true,"uid":false},{"name":"showDomain","label":"Show domain name","type":"boolean","description":"Query param in URL must have key of 'domain'","namespace":["employment","afterBody","DomainFromQuery","showDomain"],"searchable":true,"uid":false}],"namespace":["employment","afterBody","DomainFromQuery"]},{"name":"DownloadBlock","label":"Download Block","ui":{"previewSrc":"/images/thumbs/tina/download-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","afterBody","DownloadBlock","title"],"searchable":true,"uid":false},{"type":"object","label":"Downloads","name":"downloads","ui":{},"list":true,"fields":[{"type":"string","label":"Header","name":"header","namespace":["employment","opportunitiesBody","DownloadBlock","downloads","header"]},{"type":"image","label":"Image","name":"img","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","img","uploadDir"]},"namespace":["employment","opportunitiesBody","DownloadBlock","downloads","img"]},{"type":"string","label":"Image Background","name":"imgBackground","options":["black","grey","white","darkgrey","darkgreen"],"namespace":["employment","opportunitiesBody","DownloadBlock","downloads","imgBackground"]},{"type":"string","label":"First Link Text","name":"firstLinkText","description":"Defaults to PNG","namespace":["employment","opportunitiesBody","DownloadBlock","downloads","firstLinkText"]},{"type":"image","label":"First Link","name":"firstLink","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","firstLink","uploadDir"]},"namespace":["employment","opportunitiesBody","DownloadBlock","downloads","firstLink"]},{"type":"string","label":"Second Link Text","name":"secondLinkText","description":"Defaults to PDF","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","secondLinkText","uploadDir"]},"namespace":["employment","opportunitiesBody","DownloadBlock","downloads","secondLinkText"]},{"type":"image","label":"Second Link","name":"secondLink","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","secondLink","uploadDir"]},"namespace":["employment","opportunitiesBody","DownloadBlock","downloads","secondLink"]}],"namespace":["employment","afterBody","DownloadBlock","downloads"],"searchable":true,"uid":false},{"type":"boolean","label":"Bottom border","name":"bottomBorder","namespace":["employment","afterBody","DownloadBlock","bottomBorder"],"searchable":true,"uid":false}],"namespace":["employment","afterBody","DownloadBlock"]},{"name":"DynamicColumns","label":"Dynamic Column Layout","fields":[{"type":"rich-text","label":"Column text body","name":"colBody","required":true,"namespace":["employment","afterBody","DynamicColumns","colBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"number","label":"Number of columns","name":"colCount","required":true,"ui":{},"namespace":["employment","afterBody","DynamicColumns","colCount"],"searchable":true,"uid":false}],"namespace":["employment","afterBody","DynamicColumns"]},{"name":"EventBooking","label":"Events Booking","ui":{"previewSrc":"/images/thumbs/tina/events-booking.jpg"},"fields":[{"type":"number","label":"Duration (In Days)","name":"eventDurationInDays","required":true,"namespace":["employment","afterBody","EventBooking","eventDurationInDays"],"searchable":true,"uid":false},{"type":"number","label":"Price","name":"price","required":true,"namespace":["employment","afterBody","EventBooking","price"],"searchable":true,"uid":false},{"type":"number","label":"Discount Price","name":"discountPrice","namespace":["employment","afterBody","EventBooking","discountPrice"],"searchable":true,"uid":false},{"type":"string","name":"gstText","label":"Select GST Option","options":["inc GST","+ GST"],"required":true,"namespace":["employment","afterBody","EventBooking","gstText"],"searchable":true,"uid":false},{"type":"string","label":"Discount Note","name":"discountNote","namespace":["employment","afterBody","EventBooking","discountNote"],"searchable":true,"uid":false},{"type":"object","label":"Event","name":"eventList","ui":{},"list":true,"fields":[{"type":"string","label":"City","name":"city","namespace":["employment","opportunitiesBody","EventBooking","eventList","city"]},{"type":"datetime","label":"Start Date","name":"date","ui":{},"namespace":["employment","opportunitiesBody","EventBooking","eventList","date"]},{"type":"string","label":"Booking URL","name":"bookingURL","namespace":["employment","opportunitiesBody","EventBooking","eventList","bookingURL"]},{"type":"reference","label":"Location","name":"location","collections":["locations"],"namespace":["employment","opportunitiesBody","EventBooking","eventList","location"]}],"namespace":["employment","afterBody","EventBooking","eventList"],"searchable":true,"uid":false}],"namespace":["employment","afterBody","EventBooking"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["employment","callToActionBody","EventLink","content","Flag","country"]}],"namespace":["employment","opportunitiesBody","EventLink","content","Flag"]}],"namespace":["employment","afterBody","EventLink","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Link","name":"link","namespace":["employment","afterBody","EventLink","link"],"searchable":true,"uid":false},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["employment","afterBody","EventLink","eventThumbnail"],"searchable":false,"uid":false},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["employment","afterBody","EventLink","thumbnailAlt"],"searchable":true,"uid":false}],"namespace":["employment","afterBody","EventLink"]},{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["employment","afterBody","Flag","country"],"searchable":true,"uid":false}],"namespace":["employment","afterBody","Flag"]},{"name":"FixedColumns","label":"Fixed Column Layout (2 columns)","ui":{"previewSrc":"/images/thumbs/tina/fixed-columns.jpg"},"fields":[{"type":"rich-text","label":"Header Section (Optional)","name":"headerSection","namespace":["employment","afterBody","FixedColumns","headerSection"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"First column text","name":"firstColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["employment","callToActionBody","FixedColumns","firstColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["employment","callToActionBody","FixedColumns","firstColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["eventsIndex","preface","FixedColumns","firstColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["eventsIndex","preface","FixedColumns","firstColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["eventsIndex","preface","FixedColumns","firstColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["eventsIndex","preface","FixedColumns","firstColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["eventsIndex","preface","FixedColumns","firstColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["eventsIndex","preface","FixedColumns","firstColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["eventsIndex","preface","FixedColumns","firstColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["eventsIndex","preface","FixedColumns","firstColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["eventsIndex","preface","FixedColumns","firstColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["eventsIndex","preface","FixedColumns","firstColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["opportunities","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["eventsIndex","preface","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["eventsIndex","preface","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["eventsIndex","preface","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["eventsIndex","preface","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["eventsIndex","preface","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["opportunities","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["eventsIndex","preface","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["eventsIndex","preface","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["eventsIndex","preface","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["eventsIndex","preface","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["eventsIndex","preface","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["eventsIndex","preface","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["eventsIndex","preface","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["opportunities","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["eventsIndex","preface","FixedColumns","firstColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["eventsIndex","preface","FixedColumns","firstColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["eventsIndex","sidebarBody","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["eventsIndex","sidebarBody","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["eventsIndex","sidebarBody","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["eventsIndex","sidebarBody","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["eventsIndex","sidebarBody","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["eventsIndex","preface","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["opportunities","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock"]}],"namespace":["employment","callToActionBody","FixedColumns","firstColBody","ContentCard","content"]}],"namespace":["employment","opportunitiesBody","FixedColumns","firstColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["employment","callToActionBody","FixedColumns","firstColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","callToActionBody","FixedColumns","firstColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["employment","callToActionBody","FixedColumns","firstColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","callToActionBody","FixedColumns","firstColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","callToActionBody","FixedColumns","firstColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["employment","callToActionBody","FixedColumns","firstColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["employment","callToActionBody","FixedColumns","firstColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["employment","callToActionBody","FixedColumns","firstColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["employment","callToActionBody","FixedColumns","firstColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","callToActionBody","FixedColumns","firstColBody","CustomImage","sizes"]}],"namespace":["employment","opportunitiesBody","FixedColumns","firstColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["eventsIndex","preface","FixedColumns","firstColBody","EventLink","content","Flag","country"]}],"namespace":["opportunities","_body","FixedColumns","firstColBody","EventLink","content","Flag"]}],"namespace":["employment","callToActionBody","FixedColumns","firstColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["employment","callToActionBody","FixedColumns","firstColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["employment","callToActionBody","FixedColumns","firstColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["employment","callToActionBody","FixedColumns","firstColBody","EventLink","thumbnailAlt"]}],"namespace":["employment","opportunitiesBody","FixedColumns","firstColBody","EventLink"]}],"namespace":["employment","afterBody","FixedColumns","firstColBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"Second column text","name":"secondColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["employment","callToActionBody","FixedColumns","secondColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["employment","callToActionBody","FixedColumns","secondColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["eventsIndex","preface","FixedColumns","secondColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["eventsIndex","preface","FixedColumns","secondColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["eventsIndex","preface","FixedColumns","secondColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["eventsIndex","preface","FixedColumns","secondColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["eventsIndex","preface","FixedColumns","secondColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["eventsIndex","preface","FixedColumns","secondColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["eventsIndex","preface","FixedColumns","secondColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["eventsIndex","preface","FixedColumns","secondColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["eventsIndex","preface","FixedColumns","secondColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["eventsIndex","preface","FixedColumns","secondColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["opportunities","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["eventsIndex","preface","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["eventsIndex","preface","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["eventsIndex","preface","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["eventsIndex","preface","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["eventsIndex","preface","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["opportunities","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["eventsIndex","preface","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["eventsIndex","preface","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["eventsIndex","preface","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["eventsIndex","preface","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["eventsIndex","preface","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["eventsIndex","preface","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["eventsIndex","preface","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["opportunities","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["eventsIndex","preface","FixedColumns","secondColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["eventsIndex","preface","FixedColumns","secondColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["eventsIndex","sidebarBody","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["eventsIndex","sidebarBody","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["eventsIndex","sidebarBody","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["eventsIndex","sidebarBody","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["eventsIndex","sidebarBody","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["eventsIndex","preface","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["opportunities","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock"]}],"namespace":["employment","callToActionBody","FixedColumns","secondColBody","ContentCard","content"]}],"namespace":["employment","opportunitiesBody","FixedColumns","secondColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["employment","callToActionBody","FixedColumns","secondColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","callToActionBody","FixedColumns","secondColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["employment","callToActionBody","FixedColumns","secondColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","callToActionBody","FixedColumns","secondColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","callToActionBody","FixedColumns","secondColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["employment","callToActionBody","FixedColumns","secondColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["employment","callToActionBody","FixedColumns","secondColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["employment","callToActionBody","FixedColumns","secondColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["employment","callToActionBody","FixedColumns","secondColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","callToActionBody","FixedColumns","secondColBody","CustomImage","sizes"]}],"namespace":["employment","opportunitiesBody","FixedColumns","secondColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["eventsIndex","preface","FixedColumns","secondColBody","EventLink","content","Flag","country"]}],"namespace":["opportunities","_body","FixedColumns","secondColBody","EventLink","content","Flag"]}],"namespace":["employment","callToActionBody","FixedColumns","secondColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["employment","callToActionBody","FixedColumns","secondColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["employment","callToActionBody","FixedColumns","secondColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["employment","callToActionBody","FixedColumns","secondColBody","EventLink","thumbnailAlt"]}],"namespace":["employment","opportunitiesBody","FixedColumns","secondColBody","EventLink"]}],"namespace":["employment","afterBody","FixedColumns","secondColBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["employment","afterBody","FixedColumns"]},{"name":"FixedTabsLayout","label":"Fixed Tabs Layout","ui":{"previewSrc":"/images/thumbs/tina/fixed-tabs-layout.jpg"},"fields":[{"type":"string","name":"firstTab","label":"First Tab","namespace":["employment","afterBody","FixedTabsLayout","firstTab"],"searchable":true,"uid":false},{"type":"rich-text","name":"firstHeading","label":"First Heading","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["employment","callToActionBody","FixedTabsLayout","firstHeading","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["employment","callToActionBody","FixedTabsLayout","firstHeading","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["employment","callToActionBody","FixedTabsLayout","firstHeading","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["employment","callToActionBody","FixedTabsLayout","firstHeading","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["employment","callToActionBody","FixedTabsLayout","firstHeading","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["employment","callToActionBody","FixedTabsLayout","firstHeading","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["employment","callToActionBody","FixedTabsLayout","firstHeading","VideoEmbed","duration"]}],"namespace":["employment","opportunitiesBody","FixedTabsLayout","firstHeading","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["employment","callToActionBody","FixedTabsLayout","firstHeading","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["employment","callToActionBody","FixedTabsLayout","firstHeading","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["employment","callToActionBody","FixedTabsLayout","firstHeading","BookingButton","buttonSubtitle"]}],"namespace":["employment","opportunitiesBody","FixedTabsLayout","firstHeading","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["employment","callToActionBody","FixedTabsLayout","firstHeading","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["opportunities","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["opportunities","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["opportunities","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["opportunities","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList","skills"]}],"namespace":["employment","callToActionBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["opportunities","_body","FixedTabsLayout","firstHeading","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["opportunities","_body","FixedTabsLayout","firstHeading","ExpertBlock","link","url"]}],"namespace":["employment","callToActionBody","FixedTabsLayout","firstHeading","ExpertBlock","link"]}],"namespace":["employment","opportunitiesBody","FixedTabsLayout","firstHeading","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["opportunities","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["opportunities","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["opportunities","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["eventsIndex","preface","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["eventsIndex","preface","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["eventsIndex","preface","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["opportunities","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["employment","callToActionBody","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["employment","opportunitiesBody","FixedTabsLayout","firstHeading","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["employment","callToActionBody","FixedTabsLayout","firstHeading","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","callToActionBody","FixedTabsLayout","firstHeading","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["employment","callToActionBody","FixedTabsLayout","firstHeading","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","callToActionBody","FixedTabsLayout","firstHeading","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","callToActionBody","FixedTabsLayout","firstHeading","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["employment","callToActionBody","FixedTabsLayout","firstHeading","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["employment","callToActionBody","FixedTabsLayout","firstHeading","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["employment","callToActionBody","FixedTabsLayout","firstHeading","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["employment","callToActionBody","FixedTabsLayout","firstHeading","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","callToActionBody","FixedTabsLayout","firstHeading","CustomImage","sizes"]}],"namespace":["employment","opportunitiesBody","FixedTabsLayout","firstHeading","CustomImage"]}],"namespace":["employment","afterBody","FixedTabsLayout","firstHeading"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","name":"firstBody","label":"First Body","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["employment","callToActionBody","FixedTabsLayout","firstBody","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["employment","callToActionBody","FixedTabsLayout","firstBody","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["employment","callToActionBody","FixedTabsLayout","firstBody","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["employment","callToActionBody","FixedTabsLayout","firstBody","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["employment","callToActionBody","FixedTabsLayout","firstBody","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["employment","callToActionBody","FixedTabsLayout","firstBody","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["employment","callToActionBody","FixedTabsLayout","firstBody","VideoEmbed","duration"]}],"namespace":["employment","opportunitiesBody","FixedTabsLayout","firstBody","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["employment","callToActionBody","FixedTabsLayout","firstBody","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["employment","callToActionBody","FixedTabsLayout","firstBody","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["employment","callToActionBody","FixedTabsLayout","firstBody","BookingButton","buttonSubtitle"]}],"namespace":["employment","opportunitiesBody","FixedTabsLayout","firstBody","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["employment","callToActionBody","FixedTabsLayout","firstBody","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["opportunities","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["opportunities","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["opportunities","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["opportunities","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList","skills"]}],"namespace":["employment","callToActionBody","FixedTabsLayout","firstBody","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["opportunities","_body","FixedTabsLayout","firstBody","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["opportunities","_body","FixedTabsLayout","firstBody","ExpertBlock","link","url"]}],"namespace":["employment","callToActionBody","FixedTabsLayout","firstBody","ExpertBlock","link"]}],"namespace":["employment","opportunitiesBody","FixedTabsLayout","firstBody","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["opportunities","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["opportunities","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["opportunities","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["eventsIndex","preface","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["eventsIndex","preface","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["eventsIndex","preface","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["opportunities","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["employment","callToActionBody","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["employment","opportunitiesBody","FixedTabsLayout","firstBody","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["employment","callToActionBody","FixedTabsLayout","firstBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","callToActionBody","FixedTabsLayout","firstBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["employment","callToActionBody","FixedTabsLayout","firstBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","callToActionBody","FixedTabsLayout","firstBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","callToActionBody","FixedTabsLayout","firstBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["employment","callToActionBody","FixedTabsLayout","firstBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["employment","callToActionBody","FixedTabsLayout","firstBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["employment","callToActionBody","FixedTabsLayout","firstBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["employment","callToActionBody","FixedTabsLayout","firstBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","callToActionBody","FixedTabsLayout","firstBody","CustomImage","sizes"]}],"namespace":["employment","opportunitiesBody","FixedTabsLayout","firstBody","CustomImage"]}],"namespace":["employment","afterBody","FixedTabsLayout","firstBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","name":"secondTab","label":"Second Tab","namespace":["employment","afterBody","FixedTabsLayout","secondTab"],"searchable":true,"uid":false},{"type":"rich-text","name":"secondHeading","label":"Second Heading","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["employment","callToActionBody","FixedTabsLayout","secondHeading","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["employment","callToActionBody","FixedTabsLayout","secondHeading","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["employment","callToActionBody","FixedTabsLayout","secondHeading","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["employment","callToActionBody","FixedTabsLayout","secondHeading","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["employment","callToActionBody","FixedTabsLayout","secondHeading","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["employment","callToActionBody","FixedTabsLayout","secondHeading","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["employment","callToActionBody","FixedTabsLayout","secondHeading","VideoEmbed","duration"]}],"namespace":["employment","opportunitiesBody","FixedTabsLayout","secondHeading","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["employment","callToActionBody","FixedTabsLayout","secondHeading","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["employment","callToActionBody","FixedTabsLayout","secondHeading","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["employment","callToActionBody","FixedTabsLayout","secondHeading","BookingButton","buttonSubtitle"]}],"namespace":["employment","opportunitiesBody","FixedTabsLayout","secondHeading","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["employment","callToActionBody","FixedTabsLayout","secondHeading","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["opportunities","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["opportunities","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["opportunities","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["opportunities","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList","skills"]}],"namespace":["employment","callToActionBody","FixedTabsLayout","secondHeading","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["opportunities","_body","FixedTabsLayout","secondHeading","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["opportunities","_body","FixedTabsLayout","secondHeading","ExpertBlock","link","url"]}],"namespace":["employment","callToActionBody","FixedTabsLayout","secondHeading","ExpertBlock","link"]}],"namespace":["employment","opportunitiesBody","FixedTabsLayout","secondHeading","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["opportunities","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["opportunities","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["opportunities","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["eventsIndex","preface","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["eventsIndex","preface","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["eventsIndex","preface","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["opportunities","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["employment","callToActionBody","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["employment","opportunitiesBody","FixedTabsLayout","secondHeading","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["employment","callToActionBody","FixedTabsLayout","secondHeading","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","callToActionBody","FixedTabsLayout","secondHeading","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["employment","callToActionBody","FixedTabsLayout","secondHeading","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","callToActionBody","FixedTabsLayout","secondHeading","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","callToActionBody","FixedTabsLayout","secondHeading","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["employment","callToActionBody","FixedTabsLayout","secondHeading","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["employment","callToActionBody","FixedTabsLayout","secondHeading","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["employment","callToActionBody","FixedTabsLayout","secondHeading","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["employment","callToActionBody","FixedTabsLayout","secondHeading","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","callToActionBody","FixedTabsLayout","secondHeading","CustomImage","sizes"]}],"namespace":["employment","opportunitiesBody","FixedTabsLayout","secondHeading","CustomImage"]}],"namespace":["employment","afterBody","FixedTabsLayout","secondHeading"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","name":"secondBody","label":"Second Body","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["employment","callToActionBody","FixedTabsLayout","secondBody","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["employment","callToActionBody","FixedTabsLayout","secondBody","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["employment","callToActionBody","FixedTabsLayout","secondBody","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["employment","callToActionBody","FixedTabsLayout","secondBody","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["employment","callToActionBody","FixedTabsLayout","secondBody","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["employment","callToActionBody","FixedTabsLayout","secondBody","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["employment","callToActionBody","FixedTabsLayout","secondBody","VideoEmbed","duration"]}],"namespace":["employment","opportunitiesBody","FixedTabsLayout","secondBody","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["employment","callToActionBody","FixedTabsLayout","secondBody","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["employment","callToActionBody","FixedTabsLayout","secondBody","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["employment","callToActionBody","FixedTabsLayout","secondBody","BookingButton","buttonSubtitle"]}],"namespace":["employment","opportunitiesBody","FixedTabsLayout","secondBody","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["employment","callToActionBody","FixedTabsLayout","secondBody","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["opportunities","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["opportunities","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["opportunities","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["opportunities","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList","skills"]}],"namespace":["employment","callToActionBody","FixedTabsLayout","secondBody","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["opportunities","_body","FixedTabsLayout","secondBody","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["opportunities","_body","FixedTabsLayout","secondBody","ExpertBlock","link","url"]}],"namespace":["employment","callToActionBody","FixedTabsLayout","secondBody","ExpertBlock","link"]}],"namespace":["employment","opportunitiesBody","FixedTabsLayout","secondBody","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["opportunities","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["opportunities","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["opportunities","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["eventsIndex","preface","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["eventsIndex","preface","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["eventsIndex","preface","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["opportunities","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["employment","callToActionBody","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["employment","opportunitiesBody","FixedTabsLayout","secondBody","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["employment","callToActionBody","FixedTabsLayout","secondBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","callToActionBody","FixedTabsLayout","secondBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["employment","callToActionBody","FixedTabsLayout","secondBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","callToActionBody","FixedTabsLayout","secondBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","callToActionBody","FixedTabsLayout","secondBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["employment","callToActionBody","FixedTabsLayout","secondBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["employment","callToActionBody","FixedTabsLayout","secondBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["employment","callToActionBody","FixedTabsLayout","secondBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["employment","callToActionBody","FixedTabsLayout","secondBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","callToActionBody","FixedTabsLayout","secondBody","CustomImage","sizes"]}],"namespace":["employment","opportunitiesBody","FixedTabsLayout","secondBody","CustomImage"]}],"namespace":["employment","afterBody","FixedTabsLayout","secondBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["employment","afterBody","FixedTabsLayout"]},{"label":"Google Maps","name":"GoogleMaps","ui":{"previewSrc":"/images/thumbs/tina/google-maps.jpg"},"fields":[{"type":"string","label":"URL","name":"embedUrl","required":true,"namespace":["employment","afterBody","GoogleMaps","embedUrl"],"searchable":true,"uid":false},{"type":"string","label":"Width","name":"embedWidth","namespace":["employment","afterBody","GoogleMaps","embedWidth"],"searchable":true,"uid":false},{"type":"string","label":"Height","name":"embedHeight","namespace":["employment","afterBody","GoogleMaps","embedHeight"],"searchable":true,"uid":false}],"namespace":["employment","afterBody","GoogleMaps"]},{"label":"Grid Layout","name":"GridLayout","ui":{"previewSrc":"/images/thumbs/tina/grid-layout.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","afterBody","GridLayout","title"],"searchable":true,"uid":false},{"type":"object","list":true,"label":"Grid Items","name":"grids","ui":{},"fields":[{"type":"string","label":"Grid Title","name":"gridTitle","namespace":["employment","opportunitiesBody","GridLayout","grids","gridTitle"]},{"type":"boolean","label":"Show Grid Title","name":"showGridTitle","namespace":["employment","opportunitiesBody","GridLayout","grids","showGridTitle"]},{"type":"boolean","label":"Centered Grid Title","name":"centeredGridTitle","namespace":["employment","opportunitiesBody","GridLayout","grids","centeredGridTitle"]},{"type":"boolean","label":"Show Header Divider","name":"showHeaderDivider","namespace":["employment","opportunitiesBody","GridLayout","grids","showHeaderDivider"]},{"type":"boolean","label":"Offset Grid Start","name":"offsetGridStart","namespace":["employment","opportunitiesBody","GridLayout","grids","offsetGridStart"]},{"type":"object","label":"Blocks","name":"blocks","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","callToActionBody","GridLayout","grids","blocks","title"]},{"type":"boolean","label":"Show Title","name":"showTitle","namespace":["employment","callToActionBody","GridLayout","grids","blocks","showTitle"]},{"type":"image","label":"Image","name":"image","uploadDir":{"namespace":["page","beforeBody","GridLayout","grids","blocks","image","uploadDir"]},"namespace":["employment","callToActionBody","GridLayout","grids","blocks","image"]},{"type":"image","label":"Related Image","name":"relatedImage","uploadDir":{"namespace":["page","beforeBody","GridLayout","grids","blocks","relatedImage","uploadDir"]},"namespace":["employment","callToActionBody","GridLayout","grids","blocks","relatedImage"]},{"type":"rich-text","name":"linkContent","label":"Link Content","templates":[{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["eventsIndex","preface","GridLayout","grids","blocks","linkContent","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["eventsIndex","preface","GridLayout","grids","blocks","linkContent","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["eventsIndex","preface","GridLayout","grids","blocks","linkContent","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["eventsIndex","preface","GridLayout","grids","blocks","linkContent","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["eventsIndex","preface","GridLayout","grids","blocks","linkContent","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["eventsIndex","preface","GridLayout","grids","blocks","linkContent","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["eventsIndex","preface","GridLayout","grids","blocks","linkContent","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["eventsIndex","preface","GridLayout","grids","blocks","linkContent","UtilityButton","openInNewTab"]}],"namespace":["opportunities","_body","GridLayout","grids","blocks","linkContent","UtilityButton"]}],"namespace":["employment","callToActionBody","GridLayout","grids","blocks","linkContent"]}],"namespace":["employment","opportunitiesBody","GridLayout","grids","blocks"]}],"namespace":["employment","afterBody","GridLayout","grids"],"searchable":true,"uid":false}],"namespace":["employment","afterBody","GridLayout"]},{"name":"Hero","label":"Hero","ui":{"previewSrc":"/blocks/hero.png","defaultItem":{"tagline":"Here's some text above the other text","headline":"This Big Text is Totally Awesome","text":"Phasellus scelerisque, libero eu finibus rutrum, risus risus accumsan libero, nec molestie urna dui a leo."}},"fields":[{"type":"string","label":"Tagline","name":"tagline","namespace":["employment","afterBody","Hero","tagline"],"searchable":true,"uid":false},{"type":"string","label":"Headline","name":"headline","namespace":["employment","afterBody","Hero","headline"],"searchable":true,"uid":false},{"label":"Text","name":"text","type":"rich-text","namespace":["employment","afterBody","Hero","text"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"label":"Actions","name":"actions","type":"object","list":true,"ui":{"defaultItem":{"label":"Action Label","type":"button","icon":true,"link":"/"}},"fields":[{"label":"Label","name":"label","type":"string","namespace":["employment","opportunitiesBody","Hero","actions","label"]},{"label":"Type","name":"type","type":"string","options":[{"label":"Button","value":"button"},{"label":"Link","value":"link"}],"namespace":["employment","opportunitiesBody","Hero","actions","type"]},{"label":"Icon","name":"icon","type":"boolean","namespace":["employment","opportunitiesBody","Hero","actions","icon"]},{"label":"Link","name":"link","type":"string","namespace":["employment","opportunitiesBody","Hero","actions","link"]}],"namespace":["employment","afterBody","Hero","actions"],"searchable":true,"uid":false},{"type":"object","label":"Image","name":"image","fields":[{"name":"src","label":"Image Source","type":"image","namespace":["employment","opportunitiesBody","Hero","image","src"]},{"name":"alt","label":"Alt Text","type":"string","namespace":["employment","opportunitiesBody","Hero","image","alt"]}],"namespace":["employment","afterBody","Hero","image"],"searchable":true,"uid":false},{"type":"string","label":"Color","name":"color","options":[{"label":"Default","value":"default"},{"label":"Tint","value":"tint"},{"label":"Primary","value":"primary"}],"namespace":["employment","afterBody","Hero","color"],"searchable":true,"uid":false}],"namespace":["employment","afterBody","Hero"]},{"name":"HorizontalCard","label":"Horizontal Card","ui":{"previewSrc":"/images/thumbs/tina/horizontal-card.jpg"},"fields":[{"type":"object","label":"Cards","name":"cardList","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","opportunitiesBody","HorizontalCard","cardList","title"]},{"type":"rich-text","label":"Content","name":"content","namespace":["employment","opportunitiesBody","HorizontalCard","cardList","content"]},{"type":"image","label":"Thumbnail","name":"thumbnail","uploadDir":{"namespace":["page","beforeBody","HorizontalCard","cardList","thumbnail","uploadDir"]},"namespace":["employment","opportunitiesBody","HorizontalCard","cardList","thumbnail"]},{"type":"string","label":"Link","name":"link","namespace":["employment","opportunitiesBody","HorizontalCard","cardList","link"]}],"namespace":["employment","afterBody","HorizontalCard","cardList"],"searchable":true,"uid":false},{"type":"object","label":"Button","name":"button","fields":[{"type":"string","label":"Text","name":"text","namespace":["employment","opportunitiesBody","HorizontalCard","button","text"]},{"type":"string","label":"Link","name":"link","namespace":["employment","opportunitiesBody","HorizontalCard","button","link"]}],"namespace":["employment","afterBody","HorizontalCard","button"],"searchable":true,"uid":false}],"namespace":["employment","afterBody","HorizontalCard"]},{"name":"InternalCarousel","label":"Internal Carousel","ui":{"previewSrc":"/images/thumbs/tina/internal-carousel.jpg"},"fields":[{"label":"Images","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Image description"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["employment","opportunitiesBody","InternalCarousel","items","label"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","InternalCarousel","items","imgSrc","uploadDir"]},"namespace":["employment","opportunitiesBody","InternalCarousel","items","imgSrc"]}],"namespace":["employment","afterBody","InternalCarousel","items"],"searchable":true,"uid":false},{"type":"string","label":"Header","name":"header","namespace":["employment","afterBody","InternalCarousel","header"],"searchable":true,"uid":false},{"type":"rich-text","label":"Text","name":"paragraph","isBody":false,"namespace":["employment","afterBody","InternalCarousel","paragraph"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Website","name":"website","namespace":["employment","afterBody","InternalCarousel","website"],"searchable":true,"uid":false},{"type":"object","label":"Technologies","name":"technologies","list":true,"ui":{},"fields":[{"type":"string","label":"Name","name":"name","namespace":["employment","opportunitiesBody","InternalCarousel","technologies","name"]}],"namespace":["employment","afterBody","InternalCarousel","technologies"],"searchable":true,"uid":false},{"type":"string","label":"Case Study","name":"caseStudyUrl","namespace":["employment","afterBody","InternalCarousel","caseStudyUrl"],"searchable":true,"uid":false},{"type":"string","label":"Video URL","name":"videoUrl","namespace":["employment","afterBody","InternalCarousel","videoUrl"],"searchable":true,"uid":false}],"namespace":["employment","afterBody","InternalCarousel"]},{"label":"Join As Presenter","name":"joinAsPresenter","fields":[{"label":"Learn More Link","name":"link","type":"string","namespace":["employment","afterBody","joinAsPresenter","link"],"searchable":true,"uid":false},{"label":"Image","name":"img","type":"image","namespace":["employment","afterBody","joinAsPresenter","img"],"searchable":false,"uid":false}],"namespace":["employment","afterBody","joinAsPresenter"]},{"label":"Join Github","name":"joinGithub","ui":{"previewSrc":"/images/thumbs/tina/join-github.jpg"},"fields":[{"label":"Title","name":"title","type":"string","namespace":["employment","afterBody","joinGithub","title"],"searchable":true,"uid":false},{"label":"Join Github Link","name":"link","type":"string","namespace":["employment","afterBody","joinGithub","link"],"searchable":true,"uid":false}],"namespace":["employment","afterBody","joinGithub"]},{"name":"JotFormEmbed","label":"JotForm Embed","ui":{"previewSrc":"/images/thumbs/tina/jotform-embed.jpg"},"fields":[{"type":"string","name":"jotFormId","label":"JotForm Id","required":true,"namespace":["employment","afterBody","JotFormEmbed","jotFormId"],"searchable":true,"uid":false},{"type":"string","label":"Button Text","name":"buttonText","namespace":["employment","afterBody","JotFormEmbed","buttonText"],"searchable":true,"uid":false},{"type":"string","name":"containerClass","label":"Container Class","namespace":["employment","afterBody","JotFormEmbed","containerClass"],"searchable":true,"uid":false},{"type":"string","label":"Button Class","name":"buttonClass","namespace":["employment","afterBody","JotFormEmbed","buttonClass"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","namespace":["employment","afterBody","JotFormEmbed","animated"],"searchable":true,"uid":false}],"namespace":["employment","afterBody","JotFormEmbed"]},{"name":"LatestTech","label":"Latest Tech","ui":{"previewSrc":"/images/thumbs/tina/latest-tech.jpg"},"fields":[{"type":"reference","description":"Select a config file including a set of badges","collections":["userGroupGlobal"],"label":"Badges","name":"badges","namespace":["employment","afterBody","LatestTech","badges"],"searchable":true,"uid":false}],"namespace":["employment","afterBody","LatestTech"]},{"name":"LocationBlock","label":"Locations","ui":{"previewSrc":"/images/thumbs/tina/locations.jpg"},"fields":[{"type":"string","name":"title","label":"Title","namespace":["employment","afterBody","LocationBlock","title"],"searchable":true,"uid":false},{"type":"object","label":"Location List","name":"locationList","list":true,"ui":{},"fields":[{"type":"reference","collections":["locations"],"label":"Location","name":"location","namespace":["employment","opportunitiesBody","LocationBlock","locationList","location"]}],"namespace":["employment","afterBody","LocationBlock","locationList"],"searchable":true,"uid":false},{"type":"object","name":"chapelWebsite","label":"Chapel Website","fields":[{"type":"string","name":"title","label":"Text","namespace":["employment","opportunitiesBody","LocationBlock","chapelWebsite","title"]},{"type":"string","name":"URL","label":"URL","namespace":["employment","opportunitiesBody","LocationBlock","chapelWebsite","URL"]}],"namespace":["employment","afterBody","LocationBlock","chapelWebsite"],"searchable":true,"uid":false}],"namespace":["employment","afterBody","LocationBlock"]},{"name":"NewslettersTable","label":"Newsletters Table","ui":{"previewSrc":"/images/thumbs/tina/newsletters-table.jpg"},"fields":[{"type":"string","label":"Header text","name":"headerText","namespace":["employment","afterBody","NewslettersTable","headerText"],"searchable":true,"uid":false}],"namespace":["employment","afterBody","NewslettersTable"]},{"label":"Organizer","name":"organizer","fields":[{"type":"image","label":"Profile Image","name":"profileImg","namespace":["employment","afterBody","organizer","profileImg"],"searchable":false,"uid":false},{"type":"string","label":"Profile Link","name":"profileLink","namespace":["employment","afterBody","organizer","profileLink"],"searchable":true,"uid":false},{"type":"string","label":"Name","name":"name","namespace":["employment","afterBody","organizer","name"],"searchable":true,"uid":false},{"type":"string","label":"Position","name":"position","namespace":["employment","afterBody","organizer","position"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","namespace":["employment","afterBody","organizer","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["employment","afterBody","organizer"]},{"label":"Payment Block","name":"paymentBlock","ui":{"previewSrc":"/images/thumbs/tina/payment-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","afterBody","paymentBlock","title"],"searchable":true,"uid":false},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["employment","afterBody","paymentBlock","subTitle"],"searchable":true,"uid":false},{"type":"reference","label":"Payment Links","name":"payments","collections":["paymentDetails"],"namespace":["employment","afterBody","paymentBlock","payments"],"searchable":true,"uid":false},{"type":"rich-text","label":"Footer","name":"footer","namespace":["employment","afterBody","paymentBlock","footer"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"image","label":"Credit Cards Image","name":"creditImgSrc","namespace":["employment","afterBody","paymentBlock","creditImgSrc"],"searchable":false,"uid":false},{"type":"string","label":"Alt Text","name":"altTxt","namespace":["employment","afterBody","paymentBlock","altTxt"],"searchable":true,"uid":false}],"namespace":["employment","afterBody","paymentBlock"]},{"name":"PresenterBlock","label":"Presenters","ui":{"previewSrc":"/images/thumbs/tina/presenters.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["employment","afterBody","PresenterBlock","header"],"searchable":true,"uid":false},{"type":"object","name":"presenterList","label":"Presenters","list":true,"ui":{},"fields":[{"type":"reference","name":"presenter","label":"Presenters","collections":["presenter"],"namespace":["employment","opportunitiesBody","PresenterBlock","presenterList","presenter"]}],"namespace":["employment","afterBody","PresenterBlock","presenterList"],"searchable":true,"uid":false},{"type":"object","label":"Other Events","name":"otherEvent","fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","opportunitiesBody","PresenterBlock","otherEvent","title"]},{"type":"string","label":"URL","name":"eventURL","namespace":["employment","opportunitiesBody","PresenterBlock","otherEvent","eventURL"]}],"namespace":["employment","afterBody","PresenterBlock","otherEvent"],"searchable":true,"uid":false}],"namespace":["employment","afterBody","PresenterBlock"]},{"label":"Recurring Event","name":"RecurringEvent","ui":{"previewSrc":"/images/thumbs/tina/recurring-event.jpg"},"fields":[{"type":"string","label":"Apply Link Redirect","name":"applyLinkRedirect","namespace":["employment","afterBody","RecurringEvent","applyLinkRedirect"],"searchable":true,"uid":false},{"type":"string","label":"Day","name":"day","options":[{"label":"Monday","value":"monday"},{"label":"Tuesday","value":"tuesday"},{"label":"Wednesday","value":"wednesday"},{"label":"Thursday","value":"thursday"},{"label":"Friday","value":"friday"},{"label":"Saturday","value":"saturday"},{"label":"Sunday","value":"sunday"}],"required":true,"namespace":["employment","afterBody","RecurringEvent","day"],"searchable":true,"uid":false}],"namespace":["employment","afterBody","RecurringEvent"]},{"name":"SectionHeader","label":"Section Header","ui":{"previewSrc":"/images/thumbs/tina/section-header.jpg"},"fields":[{"type":"string","label":"Header Text","name":"headerText","namespace":["employment","afterBody","SectionHeader","headerText"],"searchable":true,"uid":false}],"namespace":["employment","afterBody","SectionHeader"]},{"name":"ServiceCards","label":"Service Cards","ui":{"previewSrc":"/images/thumbs/tina/services-cards.jpg"},"fields":[{"type":"string","label":"Big Cards Label","name":"bigCardsLabel","namespace":["employment","afterBody","ServiceCards","bigCardsLabel"],"searchable":true,"uid":false},{"label":"Big Cards","name":"bigCards","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","opportunitiesBody","ServiceCards","bigCards","title"]},{"type":"string","label":"Description","component":"textarea","name":"description","namespace":["employment","opportunitiesBody","ServiceCards","bigCards","description"]},{"type":"string","label":"URL","name":"link","namespace":["employment","opportunitiesBody","ServiceCards","bigCards","link"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Red","value":"red"},{"label":"Light Gray","value":"lightgray"},{"label":"Medium Gray","value":"mediumgray"},{"label":"Dark Gray","value":"darkgray"}],"namespace":["employment","opportunitiesBody","ServiceCards","bigCards","color"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","ServiceCards","bigCards","imgSrc","uploadDir"]},"namespace":["employment","opportunitiesBody","ServiceCards","bigCards","imgSrc"]}],"namespace":["employment","afterBody","ServiceCards","bigCards"],"searchable":true,"uid":false},{"type":"string","label":"Small Cards Label","name":"smallCardsLabel","namespace":["employment","afterBody","ServiceCards","smallCardsLabel"],"searchable":true,"uid":false},{"label":"Small Cards","name":"smallCards","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","opportunitiesBody","ServiceCards","smallCards","title"]},{"type":"string","label":"URL","name":"link","namespace":["employment","opportunitiesBody","ServiceCards","smallCards","link"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Red","value":"red"},{"label":"Light Gray","value":"lightgray"},{"label":"Medium Gray","value":"mediumgray"},{"label":"Dark Gray","value":"darkgray"}],"namespace":["employment","opportunitiesBody","ServiceCards","smallCards","color"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","ServiceCards","smallCards","imgSrc","uploadDir"]},"namespace":["employment","opportunitiesBody","ServiceCards","smallCards","imgSrc"]},{"type":"boolean","label":"External Page","description":"Select this if the link is not part of the website. This includes SSW.Rules, and SSW.People links","name":"isExternal","namespace":["employment","opportunitiesBody","ServiceCards","smallCards","isExternal"]}],"namespace":["employment","afterBody","ServiceCards","smallCards"],"searchable":true,"uid":false},{"label":"Links","name":"links","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["employment","opportunitiesBody","ServiceCards","links","label"]},{"type":"string","label":"URL","name":"link","namespace":["employment","opportunitiesBody","ServiceCards","links","link"]}],"namespace":["employment","afterBody","ServiceCards","links"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["employment","afterBody","ServiceCards","backgroundColor"],"searchable":true,"uid":false}],"namespace":["employment","afterBody","ServiceCards"]},{"label":"Table Layout","name":"TableLayout","ui":{"previewSrc":"/images/thumbs/tina/table-layout.jpg"},"fields":[{"label":"Table Style","name":"tableStyle","type":"string","options":["none","basicBorder","styled","benefits"],"namespace":["employment","afterBody","TableLayout","tableStyle"],"searchable":true,"uid":false},{"label":"First column bolded + left aligned","name":"firstColBold","type":"boolean","required":false,"namespace":["employment","afterBody","TableLayout","firstColBold"],"searchable":true,"uid":false},{"type":"string","label":"Table Headers","name":"headers","list":true,"namespace":["employment","afterBody","TableLayout","headers"],"searchable":true,"uid":false},{"type":"object","label":"Rows","name":"rows","list":true,"fields":[{"type":"object","label":"Cells","name":"cells","list":true,"fields":[{"type":"string","label":"Value","name":"cellValue","required":true,"component":{"namespace":["page","beforeBody","TableLayout","rows","cells","cellValue",""]},"namespace":["employment","callToActionBody","TableLayout","rows","cells","cellValue"]}],"ui":{},"namespace":["employment","opportunitiesBody","TableLayout","rows","cells"]},{"type":"boolean","label":"Is Heading","name":"isHeader","required":false,"namespace":["employment","opportunitiesBody","TableLayout","rows","isHeader"]}],"ui":{},"namespace":["employment","afterBody","TableLayout","rows"],"searchable":true,"uid":false}],"namespace":["employment","afterBody","TableLayout"]},{"name":"TestimonialsList","label":"Testimonials List","ui":{"previewSrc":"/images/thumbs/tina/testimonials.jpg"},"fields":[{"type":"object","label":"Exclude Categories","name":"excludedCategories","ui":{},"list":true,"fields":[{"type":"reference","label":"Category Name","name":"categoryName","collections":["testimonialCategories"],"namespace":["employment","opportunitiesBody","TestimonialsList","excludedCategories","categoryName"]}],"namespace":["employment","afterBody","TestimonialsList","excludedCategories"],"searchable":true,"uid":false}],"namespace":["employment","afterBody","TestimonialsList"]},{"label":"Training Information","name":"TrainingInformation","ui":{"previewSrc":"/images/thumbs/tina/training-information.jpg"},"fields":[{"type":"object","label":"Training Information Items","name":"trainingInformationItems","list":true,"fields":[{"type":"string","label":"Header","name":"header","namespace":["employment","opportunitiesBody","TrainingInformation","trainingInformationItems","header"]},{"type":"rich-text","label":"Body","name":"body","templates":[{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["opportunities","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["opportunities","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["opportunities","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["opportunities","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["opportunities","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","afterBody"]}],"namespace":["employment","callToActionBody","TrainingInformation","trainingInformationItems","body","VerticalListItem"]},{"label":"Recurring Event","name":"RecurringEvent","ui":{"previewSrc":"/images/thumbs/tina/recurring-event.jpg"},"fields":[{"type":"string","label":"Apply Link Redirect","name":"applyLinkRedirect","namespace":["opportunities","_body","TrainingInformation","trainingInformationItems","body","RecurringEvent","applyLinkRedirect"]},{"type":"string","label":"Day","name":"day","options":[{"label":"Monday","value":"monday"},{"label":"Tuesday","value":"tuesday"},{"label":"Wednesday","value":"wednesday"},{"label":"Thursday","value":"thursday"},{"label":"Friday","value":"friday"},{"label":"Saturday","value":"saturday"},{"label":"Sunday","value":"sunday"}],"required":true,"namespace":["opportunities","_body","TrainingInformation","trainingInformationItems","body","RecurringEvent","day"]}],"namespace":["employment","callToActionBody","TrainingInformation","trainingInformationItems","body","RecurringEvent"]}],"namespace":["employment","opportunitiesBody","TrainingInformation","trainingInformationItems","body"]}],"namespace":["employment","afterBody","TrainingInformation","trainingInformationItems"],"searchable":true,"uid":false}],"namespace":["employment","afterBody","TrainingInformation"]},{"label":"Training Learning Outcomes","name":"TrainingLearningOutcome","ui":{"previewSrc":"/images/thumbs/tina/training-learning-outcomes.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["employment","afterBody","TrainingLearningOutcome","header"],"searchable":true,"uid":false},{"type":"object","label":"List Items","name":"listItems","list":true,"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","opportunitiesBody","TrainingLearningOutcome","listItems","title"]},{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["employment","opportunitiesBody","TrainingLearningOutcome","listItems","content"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","TrainingLearningOutcome","listItems","icon","uploadDir"]},"namespace":["employment","opportunitiesBody","TrainingLearningOutcome","listItems","icon"]}],"namespace":["employment","afterBody","TrainingLearningOutcome","listItems"],"searchable":true,"uid":false}],"namespace":["employment","afterBody","TrainingLearningOutcome"]},{"label":"Tweet Embed","name":"TweetEmbed","ui":{"previewSrc":"/images/thumbs/tina/tweet-embed.jpg"},"fields":[{"type":"string","name":"url","label":"Tweet URL","required":true,"namespace":["employment","afterBody","TweetEmbed","url"],"searchable":true,"uid":false}],"namespace":["employment","afterBody","TweetEmbed"]},{"name":"UpcomingEvents","label":"Upcoming Events","ui":{"previewSrc":"/images/thumbs/tina/upcoming-events.jpg","defaultItem":{"title":"Upcoming Events","numberOfEvents":30}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","afterBody","UpcomingEvents","title"],"searchable":true,"uid":false},{"type":"number","label":"Number of Events","name":"numberOfEvents","namespace":["employment","afterBody","UpcomingEvents","numberOfEvents"],"searchable":true,"uid":false}],"namespace":["employment","afterBody","UpcomingEvents"]},{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["employment","afterBody","UtilityButton","buttonText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"link","required":false,"namespace":["employment","afterBody","UtilityButton","link"],"searchable":true,"uid":false},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["employment","afterBody","UtilityButton","size"],"searchable":true,"uid":false},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["employment","afterBody","UtilityButton","btnIcon"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["employment","afterBody","UtilityButton","animated"],"searchable":true,"uid":false},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["employment","afterBody","UtilityButton","uncentered"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["employment","afterBody","UtilityButton","removeTopMargin"],"searchable":true,"uid":false},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["employment","afterBody","UtilityButton","openInNewTab"],"searchable":true,"uid":false}],"namespace":["employment","afterBody","UtilityButton"]},{"name":"VerticalImageLayout","label":"Vertical Image Layout","fields":[{"type":"image","label":"Image","name":"imageSrc","uploadDir":{"namespace":["page","beforeBody","VerticalImageLayout","imageSrc","uploadDir"]},"namespace":["employment","afterBody","VerticalImageLayout","imageSrc"],"searchable":false,"uid":false},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","afterBody","VerticalImageLayout","altText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"imageLink","namespace":["employment","afterBody","VerticalImageLayout","imageLink"],"searchable":true,"uid":false},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","afterBody","VerticalImageLayout","height"],"searchable":true,"uid":false},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","afterBody","VerticalImageLayout","width"],"searchable":true,"uid":false},{"type":"rich-text","label":"Message","name":"message","required":true,"namespace":["employment","afterBody","VerticalImageLayout","message"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","afterBody","VerticalImageLayout","sizes"],"searchable":true,"uid":false}],"namespace":["employment","afterBody","VerticalImageLayout"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["employment","afterBody","VerticalListItem","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"number","label":"Index number","name":"index","namespace":["employment","afterBody","VerticalListItem","index"],"searchable":true,"uid":false},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["employment","afterBody","VerticalListItem","icon"],"searchable":false,"uid":false},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["employment","afterBody","VerticalListItem","iconScale"],"searchable":true,"uid":false},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["employment","afterBody","VerticalListItem","afterBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["employment","afterBody","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["employment","afterBody","VideoEmbed","url"],"searchable":true,"uid":false},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["employment","afterBody","VideoEmbed","videoWidth"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["employment","afterBody","VideoEmbed","removeMargin"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["employment","afterBody","VideoEmbed","uncentre"],"searchable":true,"uid":false},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["employment","afterBody","VideoEmbed","overflow"],"searchable":true,"uid":false},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["employment","afterBody","VideoEmbed","caption"],"searchable":true,"uid":false},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["employment","afterBody","VideoEmbed","duration"],"searchable":true,"uid":false}],"namespace":["employment","afterBody","VideoEmbed"]},{"name":"InlineJotForm","label":"In-line JotForm","ui":{"previewSrc":"/images/thumbs/tina/inline-jot-form.jpg"},"fields":[{"type":"string","name":"title","label":"Title","description":"Optional title for JotForm","namespace":["employment","afterBody","InlineJotForm","title"],"searchable":true,"uid":false},{"type":"string","name":"jotFormId","label":"JotForm ID","required":true,"namespace":["employment","afterBody","InlineJotForm","jotFormId"],"searchable":true,"uid":false},{"type":"string","name":"additionalClasses","label":"Additional classnames","description":"Optional styling for iframe element only","namespace":["employment","afterBody","InlineJotForm","additionalClasses"],"searchable":true,"uid":false}],"namespace":["employment","afterBody","InlineJotForm"]}],"namespace":["employment","afterBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"Opportunities body","name":"opportunitiesBody","templates":[{"name":"AboutUs","label":"About Us","ui":{"previewSrc":"/images/thumbs/tina/about-us.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["employment","opportunitiesBody","AboutUs","backgroundColor"],"searchable":true,"uid":false},{"type":"boolean","label":"Show Map","name":"showMap","required":false,"namespace":["employment","opportunitiesBody","AboutUs","showMap"],"searchable":true,"uid":false}],"namespace":["employment","opportunitiesBody","AboutUs"]},{"label":"Agenda","name":"Agenda","ui":{"previewSrc":"/images/thumbs/tina/agenda.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["employment","opportunitiesBody","Agenda","header"],"searchable":true,"uid":false},{"type":"string","label":"Header Color","name":"textColor","options":[{"label":"Red","value":"red"},{"label":"Gray","value":"gray"},{"label":"Default","value":"default"}],"namespace":["employment","opportunitiesBody","Agenda","textColor"],"searchable":true,"uid":false},{"type":"object","label":"Agenda Items","name":"agendaItemList","ui":{},"list":true,"fields":[{"type":"string","label":"Placeholder Text","name":"placeholder","namespace":["employment","callToActionBody","Agenda","agendaItemList","placeholder"]},{"type":"rich-text","label":"Body","name":"body","templates":[{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["eventsIndex","preface","Agenda","agendaItemList","body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["eventsIndex","preface","Agenda","agendaItemList","body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["eventsIndex","preface","Agenda","agendaItemList","body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["eventsIndex","preface","Agenda","agendaItemList","body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["eventsIndex","preface","Agenda","agendaItemList","body","VerticalListItem","afterBody"]}],"namespace":["opportunities","_body","Agenda","agendaItemList","body","VerticalListItem"]}],"namespace":["employment","callToActionBody","Agenda","agendaItemList","body"]}],"namespace":["employment","opportunitiesBody","Agenda","agendaItemList"],"searchable":true,"uid":false}],"namespace":["employment","opportunitiesBody","Agenda"]},{"label":"Agreement Form","name":"AgreementForm","ui":{"previewSrc":"/images/thumbs/tina/agreement-form.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["employment","opportunitiesBody","AgreementForm","backgroundColor"],"searchable":true,"uid":false},{"type":"object","label":"Form fields","name":"fields","list":true,"fields":[{"type":"string","label":"ID","name":"id","required":true,"namespace":["employment","callToActionBody","AgreementForm","fields","id"]},{"type":"string","label":"Label","name":"label","required":true,"namespace":["employment","callToActionBody","AgreementForm","fields","label"]},{"type":"string","label":"Placeholder","name":"placeholder","namespace":["employment","callToActionBody","AgreementForm","fields","placeholder"]},{"type":"boolean","label":"Resizeable","name":"resizeable","required":true,"namespace":["employment","callToActionBody","AgreementForm","fields","resizeable"]}],"namespace":["employment","opportunitiesBody","AgreementForm","fields"],"searchable":true,"uid":false}],"namespace":["employment","opportunitiesBody","AgreementForm"]},{"label":"Interest Form","name":"InterestForm","ui":{"previewSrc":"/images/thumbs/tina/interest-form.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["employment","opportunitiesBody","InterestForm","buttonText"],"searchable":true,"uid":false}],"namespace":["employment","opportunitiesBody","InterestForm"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["employment","opportunitiesBody","BookingButton","buttonText"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","namespace":["employment","opportunitiesBody","BookingButton","animated"],"searchable":true,"uid":false},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["employment","opportunitiesBody","BookingButton","buttonSubtitle"],"searchable":true,"uid":false}],"namespace":["employment","opportunitiesBody","BookingButton"]},{"name":"BuiltOnAzure","label":"Built on Azure","ui":{"previewSrc":"/images/thumbs/tina/built-on-azure.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["employment","opportunitiesBody","BuiltOnAzure","backgroundColor"],"searchable":true,"uid":false}],"namespace":["employment","opportunitiesBody","BuiltOnAzure"]},{"name":"Carousel","label":"Carousel","ui":{"previewSrc":"/images/thumbs/tina/carousel.jpg"},"fields":[{"label":"Items","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Item description","link":"/","openIn":"sameWindow"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["employment","callToActionBody","Carousel","items","label"]},{"type":"string","label":"URL","name":"link","description":"If link contains ssw.com.au, you can skip the full URL and just use the path. e.g. /services","namespace":["employment","callToActionBody","Carousel","items","link"]},{"type":"string","label":"Open in","name":"openIn","description":"If it is external link, please select 'New window' option.","options":[{"label":"Same window","value":"sameWindow"},{"label":"Modal","value":"modal"},{"label":"New window","value":"newWindow"}],"namespace":["employment","callToActionBody","Carousel","items","openIn"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","Carousel","items","imgSrc","uploadDir"]},"namespace":["employment","callToActionBody","Carousel","items","imgSrc"]}],"namespace":["employment","opportunitiesBody","Carousel","items"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["employment","opportunitiesBody","Carousel","backgroundColor"],"searchable":true,"uid":false},{"type":"number","label":"Delay (Seconds)","name":"delay","required":true,"namespace":["employment","opportunitiesBody","Carousel","delay"],"searchable":true,"uid":false},{"type":"boolean","label":"Show on mobile devices","name":"showOnMobileDevices","namespace":["employment","opportunitiesBody","Carousel","showOnMobileDevices"],"searchable":true,"uid":false}],"namespace":["employment","opportunitiesBody","Carousel"]},{"name":"Citation","label":"Citation","fields":[{"type":"string","label":"author","name":"author","namespace":["employment","opportunitiesBody","Citation","author"],"searchable":true,"uid":false},{"type":"string","label":"article","name":"article","required":true,"namespace":["employment","opportunitiesBody","Citation","article"],"searchable":true,"uid":false}],"namespace":["employment","opportunitiesBody","Citation"]},{"label":"Client List","name":"ClientList","ui":{"previewSrc":"/images/thumbs/tina/clients-list.jpg"},"fields":[{"type":"object","name":"categories","label":"Categories","list":true,"fields":[{"type":"reference","name":"category","label":"Category","collections":["clientCategories"],"namespace":["employment","callToActionBody","ClientList","categories","category"]}],"ui":{},"namespace":["employment","opportunitiesBody","ClientList","categories"],"searchable":true,"uid":false},{"type":"object","name":"clients","label":"Clients list","list":true,"ui":{"previewSrc":"/images/thumbs/tina/clients-list.jpg"},"fields":[{"type":"string","name":"name","label":"Name","namespace":["employment","callToActionBody","ClientList","clients","name"]},{"type":"image","name":"logo","label":"Logo","namespace":["employment","callToActionBody","ClientList","clients","logo"]},{"type":"string","name":"logoUrl","label":"Logo URL","namespace":["employment","callToActionBody","ClientList","clients","logoUrl"]},{"type":"rich-text","name":"content","label":"Content","templates":[{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["eventsIndex","preface","ClientList","clients","content","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["eventsIndex","preface","ClientList","clients","content","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["eventsIndex","preface","ClientList","clients","content","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["eventsIndex","preface","ClientList","clients","content","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["eventsIndex","preface","ClientList","clients","content","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["eventsIndex","preface","ClientList","clients","content","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["eventsIndex","preface","ClientList","clients","content","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["eventsIndex","preface","ClientList","clients","content","UtilityButton","openInNewTab"]}],"namespace":["opportunities","_body","ClientList","clients","content","UtilityButton"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["eventsIndex","preface","ClientList","clients","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["eventsIndex","preface","ClientList","clients","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["eventsIndex","preface","ClientList","clients","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["eventsIndex","preface","ClientList","clients","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["eventsIndex","preface","ClientList","clients","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["eventsIndex","preface","ClientList","clients","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["eventsIndex","preface","ClientList","clients","content","VideoEmbed","duration"]}],"namespace":["opportunities","_body","ClientList","clients","content","VideoEmbed"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["eventsIndex","preface","ClientList","clients","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["eventsIndex","preface","ClientList","clients","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["eventsIndex","preface","ClientList","clients","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["eventsIndex","preface","ClientList","clients","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["eventsIndex","preface","ClientList","clients","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["eventsIndex","preface","ClientList","clients","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["eventsIndex","preface","ClientList","clients","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["eventsIndex","preface","ClientList","clients","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["eventsIndex","preface","ClientList","clients","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["eventsIndex","preface","ClientList","clients","content","CustomImage","sizes"]}],"namespace":["opportunities","_body","ClientList","clients","content","CustomImage"]},{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["eventsIndex","preface","ClientList","clients","content","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["eventsIndex","preface","ClientList","clients","content","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["eventsIndex","afterEvents","ClientList","clients","content","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["eventsIndex","afterEvents","ClientList","clients","content","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["eventsIndex","afterEvents","ClientList","clients","content","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["eventsIndex","afterEvents","ClientList","clients","content","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["eventsIndex","afterEvents","ClientList","clients","content","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["eventsIndex","afterEvents","ClientList","clients","content","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["eventsIndex","afterEvents","ClientList","clients","content","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["eventsIndex","afterEvents","ClientList","clients","content","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["eventsIndex","afterEvents","ClientList","clients","content","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["eventsIndex","afterEvents","ClientList","clients","content","ContentCard","content","CustomImage","sizes"]}],"namespace":["eventsIndex","sidebarBody","ClientList","clients","content","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["eventsIndex","afterEvents","ClientList","clients","content","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["eventsIndex","afterEvents","ClientList","clients","content","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["eventsIndex","afterEvents","ClientList","clients","content","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["eventsIndex","afterEvents","ClientList","clients","content","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["eventsIndex","afterEvents","ClientList","clients","content","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["eventsIndex","sidebarBody","ClientList","clients","content","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["eventsIndex","afterEvents","ClientList","clients","content","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["eventsIndex","afterEvents","ClientList","clients","content","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["eventsIndex","afterEvents","ClientList","clients","content","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["eventsIndex","afterEvents","ClientList","clients","content","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["eventsIndex","afterEvents","ClientList","clients","content","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["eventsIndex","afterEvents","ClientList","clients","content","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["eventsIndex","afterEvents","ClientList","clients","content","ContentCard","content","VideoEmbed","duration"]}],"namespace":["eventsIndex","sidebarBody","ClientList","clients","content","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["eventsIndex","afterEvents","ClientList","clients","content","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["eventsIndex","afterEvents","ClientList","clients","content","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["events","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["events","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["events","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["events","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["events","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["eventsIndex","afterEvents","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["eventsIndex","sidebarBody","ClientList","clients","content","ContentCard","content","ColorBlock"]}],"namespace":["eventsIndex","preface","ClientList","clients","content","ContentCard","content"]}],"namespace":["opportunities","_body","ClientList","clients","content","ContentCard"]}],"namespace":["employment","callToActionBody","ClientList","clients","content"]},{"type":"string","name":"caseStudyUrl","label":"Case study URL","namespace":["employment","callToActionBody","ClientList","clients","caseStudyUrl"]},{"type":"object","name":"categories","label":"Categories","list":true,"ui":{},"fields":[{"type":"reference","name":"category","label":"Category","collections":["clientCategories"],"namespace":["opportunities","_body","ClientList","clients","categories","category"]}],"namespace":["employment","callToActionBody","ClientList","clients","categories"]}],"namespace":["employment","opportunitiesBody","ClientList","clients"],"searchable":true,"uid":false}],"namespace":["employment","opportunitiesBody","ClientList"]},{"name":"ClientLogos","label":"Client Logos","ui":{"previewSrc":"/images/thumbs/tina/client-logos.jpg"},"fields":[{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","opportunitiesBody","ClientLogos","altText"],"searchable":true,"uid":false}],"namespace":["employment","opportunitiesBody","ClientLogos"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","opportunitiesBody","ColorBlock","title"],"searchable":true,"uid":false},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["employment","opportunitiesBody","ColorBlock","subTitle"],"searchable":true,"uid":false},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["employment","callToActionBody","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["employment","callToActionBody","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["employment","callToActionBody","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["employment","callToActionBody","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["employment","callToActionBody","ColorBlock","colorRow","caption"]}],"namespace":["employment","opportunitiesBody","ColorBlock","colorRow"],"searchable":true,"uid":false}],"namespace":["employment","opportunitiesBody","ColorBlock"]},{"name":"ColorPalette","label":"Color Palette","ui":{"previewSrc":"/images/thumbs/tina/color-palette.jpg"},"fields":[{"type":"string","label":"Name","name":"name","namespace":["employment","opportunitiesBody","ColorPalette","name"],"searchable":true,"uid":false}],"namespace":["employment","opportunitiesBody","ColorPalette"]},{"name":"Content","label":"Content","ui":{"previewSrc":"/images/thumbs/tina/content.jpg","defaultItem":{"body":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","opportunitiesBody","Content","title"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["opportunities","_body","Content","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["opportunities","_body","Content","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["opportunities","_body","Content","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["opportunities","_body","Content","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["opportunities","_body","Content","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["opportunities","_body","Content","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["opportunities","_body","Content","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["opportunities","_body","Content","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["opportunities","_body","Content","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["opportunities","_body","Content","content","CustomImage","sizes"]}],"namespace":["employment","callToActionBody","Content","content","CustomImage"]},{"name":"ClientLogos","label":"Client Logos","ui":{"previewSrc":"/images/thumbs/tina/client-logos.jpg"},"fields":[{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["opportunities","_body","Content","content","ClientLogos","altText"]}],"namespace":["employment","callToActionBody","Content","content","ClientLogos"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["opportunities","_body","Content","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["opportunities","_body","Content","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["opportunities","_body","Content","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["opportunities","_body","Content","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["opportunities","_body","Content","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["opportunities","_body","Content","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["opportunities","_body","Content","content","VideoEmbed","duration"]}],"namespace":["employment","callToActionBody","Content","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["opportunities","_body","Content","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["opportunities","_body","Content","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["eventsIndex","preface","Content","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["eventsIndex","preface","Content","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["eventsIndex","preface","Content","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["eventsIndex","preface","Content","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["eventsIndex","preface","Content","content","ColorBlock","colorRow","caption"]}],"namespace":["opportunities","_body","Content","content","ColorBlock","colorRow"]}],"namespace":["employment","callToActionBody","Content","content","ColorBlock"]}],"namespace":["employment","opportunitiesBody","Content","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Container Padding","name":"paddingClass","options":["Mobile: No Padding","Mobile: No Top and Horizontal Padding"],"namespace":["employment","opportunitiesBody","Content","paddingClass"],"searchable":true,"uid":false},{"type":"string","label":"Text size","name":"size","options":[{"label":"small","value":"sm"},{"label":"normal","value":"base"},{"label":"large","value":"lg"},{"label":"extra large","value":"xl"},{"label":"2x large","value":"2xl"}],"namespace":["employment","opportunitiesBody","Content","size"],"searchable":true,"uid":false},{"type":"string","label":"Align","name":"align","options":[{"label":"Left","value":"left"},{"label":"Center","value":"center"},{"label":"Right","value":"right"}],"namespace":["employment","opportunitiesBody","Content","align"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["employment","opportunitiesBody","Content","backgroundColor"],"searchable":true,"uid":false}],"namespace":["employment","opportunitiesBody","Content"]},{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["employment","opportunitiesBody","ContentCard","prose"],"searchable":true,"uid":false},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["employment","opportunitiesBody","ContentCard","centerAlignedText"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["opportunities","_body","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["opportunities","_body","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["opportunities","_body","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["opportunities","_body","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["opportunities","_body","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["opportunities","_body","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["opportunities","_body","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["opportunities","_body","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["opportunities","_body","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["opportunities","_body","ContentCard","content","CustomImage","sizes"]}],"namespace":["employment","callToActionBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["opportunities","_body","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["opportunities","_body","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["opportunities","_body","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["opportunities","_body","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["opportunities","_body","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["employment","callToActionBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["opportunities","_body","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["opportunities","_body","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["opportunities","_body","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["opportunities","_body","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["opportunities","_body","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["opportunities","_body","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["opportunities","_body","ContentCard","content","VideoEmbed","duration"]}],"namespace":["employment","callToActionBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["opportunities","_body","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["opportunities","_body","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["eventsIndex","preface","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["eventsIndex","preface","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["eventsIndex","preface","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["eventsIndex","preface","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["eventsIndex","preface","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["opportunities","_body","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["employment","callToActionBody","ContentCard","content","ColorBlock"]}],"namespace":["employment","opportunitiesBody","ContentCard","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["employment","opportunitiesBody","ContentCard"]},{"name":"CustomDownloadButton","label":"Custom Download Button","ui":{"previewSrc":"/images/thumbs/tina/custom-download-button.jpg"},"fields":[{"type":"string","label":"Text","name":"btnText","namespace":["employment","opportunitiesBody","CustomDownloadButton","btnText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"btnLink","namespace":["employment","opportunitiesBody","CustomDownloadButton","btnLink"],"searchable":true,"uid":false}],"namespace":["employment","opportunitiesBody","CustomDownloadButton"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["employment","opportunitiesBody","CustomImage","src"],"searchable":false,"uid":false},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","opportunitiesBody","CustomImage","altText"],"searchable":true,"uid":false},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["employment","opportunitiesBody","CustomImage","alignment"],"searchable":true,"uid":false},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","opportunitiesBody","CustomImage","height"],"searchable":true,"uid":false},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","opportunitiesBody","CustomImage","width"],"searchable":true,"uid":false},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["employment","opportunitiesBody","CustomImage","link"],"searchable":true,"uid":false},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["employment","opportunitiesBody","CustomImage","customClass"],"searchable":true,"uid":false},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["employment","opportunitiesBody","CustomImage","caption"],"searchable":true,"uid":false},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["employment","opportunitiesBody","CustomImage","captionColor"],"searchable":true,"uid":false},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","opportunitiesBody","CustomImage","sizes"],"searchable":true,"uid":false}],"namespace":["employment","opportunitiesBody","CustomImage"]},{"name":"DomainFromQuery","label":"Domain from query","ui":{"previewSrc":"/images/thumbs/tina/domain-from-query.jpg"},"fields":[{"name":"title","label":"Title","type":"string","description":"This is a H1 heading","namespace":["employment","opportunitiesBody","DomainFromQuery","title"],"searchable":true,"uid":false},{"name":"showDomain","label":"Show domain name","type":"boolean","description":"Query param in URL must have key of 'domain'","namespace":["employment","opportunitiesBody","DomainFromQuery","showDomain"],"searchable":true,"uid":false}],"namespace":["employment","opportunitiesBody","DomainFromQuery"]},{"name":"DownloadBlock","label":"Download Block","ui":{"previewSrc":"/images/thumbs/tina/download-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","opportunitiesBody","DownloadBlock","title"],"searchable":true,"uid":false},{"type":"object","label":"Downloads","name":"downloads","ui":{},"list":true,"fields":[{"type":"string","label":"Header","name":"header","namespace":["employment","callToActionBody","DownloadBlock","downloads","header"]},{"type":"image","label":"Image","name":"img","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","img","uploadDir"]},"namespace":["employment","callToActionBody","DownloadBlock","downloads","img"]},{"type":"string","label":"Image Background","name":"imgBackground","options":["black","grey","white","darkgrey","darkgreen"],"namespace":["employment","callToActionBody","DownloadBlock","downloads","imgBackground"]},{"type":"string","label":"First Link Text","name":"firstLinkText","description":"Defaults to PNG","namespace":["employment","callToActionBody","DownloadBlock","downloads","firstLinkText"]},{"type":"image","label":"First Link","name":"firstLink","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","firstLink","uploadDir"]},"namespace":["employment","callToActionBody","DownloadBlock","downloads","firstLink"]},{"type":"string","label":"Second Link Text","name":"secondLinkText","description":"Defaults to PDF","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","secondLinkText","uploadDir"]},"namespace":["employment","callToActionBody","DownloadBlock","downloads","secondLinkText"]},{"type":"image","label":"Second Link","name":"secondLink","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","secondLink","uploadDir"]},"namespace":["employment","callToActionBody","DownloadBlock","downloads","secondLink"]}],"namespace":["employment","opportunitiesBody","DownloadBlock","downloads"],"searchable":true,"uid":false},{"type":"boolean","label":"Bottom border","name":"bottomBorder","namespace":["employment","opportunitiesBody","DownloadBlock","bottomBorder"],"searchable":true,"uid":false}],"namespace":["employment","opportunitiesBody","DownloadBlock"]},{"name":"DynamicColumns","label":"Dynamic Column Layout","fields":[{"type":"rich-text","label":"Column text body","name":"colBody","required":true,"namespace":["employment","opportunitiesBody","DynamicColumns","colBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"number","label":"Number of columns","name":"colCount","required":true,"ui":{},"namespace":["employment","opportunitiesBody","DynamicColumns","colCount"],"searchable":true,"uid":false}],"namespace":["employment","opportunitiesBody","DynamicColumns"]},{"name":"EventBooking","label":"Events Booking","ui":{"previewSrc":"/images/thumbs/tina/events-booking.jpg"},"fields":[{"type":"number","label":"Duration (In Days)","name":"eventDurationInDays","required":true,"namespace":["employment","opportunitiesBody","EventBooking","eventDurationInDays"],"searchable":true,"uid":false},{"type":"number","label":"Price","name":"price","required":true,"namespace":["employment","opportunitiesBody","EventBooking","price"],"searchable":true,"uid":false},{"type":"number","label":"Discount Price","name":"discountPrice","namespace":["employment","opportunitiesBody","EventBooking","discountPrice"],"searchable":true,"uid":false},{"type":"string","name":"gstText","label":"Select GST Option","options":["inc GST","+ GST"],"required":true,"namespace":["employment","opportunitiesBody","EventBooking","gstText"],"searchable":true,"uid":false},{"type":"string","label":"Discount Note","name":"discountNote","namespace":["employment","opportunitiesBody","EventBooking","discountNote"],"searchable":true,"uid":false},{"type":"object","label":"Event","name":"eventList","ui":{},"list":true,"fields":[{"type":"string","label":"City","name":"city","namespace":["employment","callToActionBody","EventBooking","eventList","city"]},{"type":"datetime","label":"Start Date","name":"date","ui":{},"namespace":["employment","callToActionBody","EventBooking","eventList","date"]},{"type":"string","label":"Booking URL","name":"bookingURL","namespace":["employment","callToActionBody","EventBooking","eventList","bookingURL"]},{"type":"reference","label":"Location","name":"location","collections":["locations"],"namespace":["employment","callToActionBody","EventBooking","eventList","location"]}],"namespace":["employment","opportunitiesBody","EventBooking","eventList"],"searchable":true,"uid":false}],"namespace":["employment","opportunitiesBody","EventBooking"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["opportunities","_body","EventLink","content","Flag","country"]}],"namespace":["employment","callToActionBody","EventLink","content","Flag"]}],"namespace":["employment","opportunitiesBody","EventLink","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Link","name":"link","namespace":["employment","opportunitiesBody","EventLink","link"],"searchable":true,"uid":false},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["employment","opportunitiesBody","EventLink","eventThumbnail"],"searchable":false,"uid":false},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["employment","opportunitiesBody","EventLink","thumbnailAlt"],"searchable":true,"uid":false}],"namespace":["employment","opportunitiesBody","EventLink"]},{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["employment","opportunitiesBody","Flag","country"],"searchable":true,"uid":false}],"namespace":["employment","opportunitiesBody","Flag"]},{"name":"FixedColumns","label":"Fixed Column Layout (2 columns)","ui":{"previewSrc":"/images/thumbs/tina/fixed-columns.jpg"},"fields":[{"type":"rich-text","label":"Header Section (Optional)","name":"headerSection","namespace":["employment","opportunitiesBody","FixedColumns","headerSection"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"First column text","name":"firstColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["opportunities","_body","FixedColumns","firstColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["opportunities","_body","FixedColumns","firstColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["eventsIndex","sidebarBody","FixedColumns","firstColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["eventsIndex","sidebarBody","FixedColumns","firstColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["eventsIndex","sidebarBody","FixedColumns","firstColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["eventsIndex","sidebarBody","FixedColumns","firstColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["eventsIndex","sidebarBody","FixedColumns","firstColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["eventsIndex","sidebarBody","FixedColumns","firstColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["eventsIndex","sidebarBody","FixedColumns","firstColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["eventsIndex","sidebarBody","FixedColumns","firstColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["eventsIndex","sidebarBody","FixedColumns","firstColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["eventsIndex","sidebarBody","FixedColumns","firstColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["eventsIndex","preface","FixedColumns","firstColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["eventsIndex","sidebarBody","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["eventsIndex","sidebarBody","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["eventsIndex","sidebarBody","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["eventsIndex","sidebarBody","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["eventsIndex","sidebarBody","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["eventsIndex","preface","FixedColumns","firstColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["eventsIndex","sidebarBody","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["eventsIndex","sidebarBody","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["eventsIndex","sidebarBody","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["eventsIndex","sidebarBody","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["eventsIndex","sidebarBody","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["eventsIndex","sidebarBody","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["eventsIndex","sidebarBody","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["eventsIndex","preface","FixedColumns","firstColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["eventsIndex","sidebarBody","FixedColumns","firstColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["eventsIndex","sidebarBody","FixedColumns","firstColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["eventsIndex","afterEvents","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["eventsIndex","afterEvents","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["eventsIndex","afterEvents","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["eventsIndex","afterEvents","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["eventsIndex","afterEvents","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["eventsIndex","sidebarBody","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["eventsIndex","preface","FixedColumns","firstColBody","ContentCard","content","ColorBlock"]}],"namespace":["opportunities","_body","FixedColumns","firstColBody","ContentCard","content"]}],"namespace":["employment","callToActionBody","FixedColumns","firstColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["opportunities","_body","FixedColumns","firstColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["opportunities","_body","FixedColumns","firstColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["opportunities","_body","FixedColumns","firstColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["opportunities","_body","FixedColumns","firstColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["opportunities","_body","FixedColumns","firstColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["opportunities","_body","FixedColumns","firstColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["opportunities","_body","FixedColumns","firstColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["opportunities","_body","FixedColumns","firstColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["opportunities","_body","FixedColumns","firstColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["opportunities","_body","FixedColumns","firstColBody","CustomImage","sizes"]}],"namespace":["employment","callToActionBody","FixedColumns","firstColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["eventsIndex","sidebarBody","FixedColumns","firstColBody","EventLink","content","Flag","country"]}],"namespace":["eventsIndex","preface","FixedColumns","firstColBody","EventLink","content","Flag"]}],"namespace":["opportunities","_body","FixedColumns","firstColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["opportunities","_body","FixedColumns","firstColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["opportunities","_body","FixedColumns","firstColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["opportunities","_body","FixedColumns","firstColBody","EventLink","thumbnailAlt"]}],"namespace":["employment","callToActionBody","FixedColumns","firstColBody","EventLink"]}],"namespace":["employment","opportunitiesBody","FixedColumns","firstColBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"Second column text","name":"secondColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["opportunities","_body","FixedColumns","secondColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["opportunities","_body","FixedColumns","secondColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["eventsIndex","sidebarBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["eventsIndex","sidebarBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["eventsIndex","sidebarBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["eventsIndex","sidebarBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["eventsIndex","sidebarBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["eventsIndex","sidebarBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["eventsIndex","sidebarBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["eventsIndex","sidebarBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["eventsIndex","sidebarBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["eventsIndex","sidebarBody","FixedColumns","secondColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["eventsIndex","preface","FixedColumns","secondColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["eventsIndex","sidebarBody","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["eventsIndex","sidebarBody","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["eventsIndex","sidebarBody","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["eventsIndex","sidebarBody","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["eventsIndex","sidebarBody","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["eventsIndex","preface","FixedColumns","secondColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["eventsIndex","sidebarBody","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["eventsIndex","sidebarBody","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["eventsIndex","sidebarBody","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["eventsIndex","sidebarBody","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["eventsIndex","sidebarBody","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["eventsIndex","sidebarBody","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["eventsIndex","sidebarBody","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["eventsIndex","preface","FixedColumns","secondColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["eventsIndex","sidebarBody","FixedColumns","secondColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["eventsIndex","sidebarBody","FixedColumns","secondColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["eventsIndex","afterEvents","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["eventsIndex","afterEvents","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["eventsIndex","afterEvents","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["eventsIndex","afterEvents","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["eventsIndex","afterEvents","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["eventsIndex","sidebarBody","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["eventsIndex","preface","FixedColumns","secondColBody","ContentCard","content","ColorBlock"]}],"namespace":["opportunities","_body","FixedColumns","secondColBody","ContentCard","content"]}],"namespace":["employment","callToActionBody","FixedColumns","secondColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["opportunities","_body","FixedColumns","secondColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["opportunities","_body","FixedColumns","secondColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["opportunities","_body","FixedColumns","secondColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["opportunities","_body","FixedColumns","secondColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["opportunities","_body","FixedColumns","secondColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["opportunities","_body","FixedColumns","secondColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["opportunities","_body","FixedColumns","secondColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["opportunities","_body","FixedColumns","secondColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["opportunities","_body","FixedColumns","secondColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["opportunities","_body","FixedColumns","secondColBody","CustomImage","sizes"]}],"namespace":["employment","callToActionBody","FixedColumns","secondColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["eventsIndex","sidebarBody","FixedColumns","secondColBody","EventLink","content","Flag","country"]}],"namespace":["eventsIndex","preface","FixedColumns","secondColBody","EventLink","content","Flag"]}],"namespace":["opportunities","_body","FixedColumns","secondColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["opportunities","_body","FixedColumns","secondColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["opportunities","_body","FixedColumns","secondColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["opportunities","_body","FixedColumns","secondColBody","EventLink","thumbnailAlt"]}],"namespace":["employment","callToActionBody","FixedColumns","secondColBody","EventLink"]}],"namespace":["employment","opportunitiesBody","FixedColumns","secondColBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["employment","opportunitiesBody","FixedColumns"]},{"name":"FixedTabsLayout","label":"Fixed Tabs Layout","ui":{"previewSrc":"/images/thumbs/tina/fixed-tabs-layout.jpg"},"fields":[{"type":"string","name":"firstTab","label":"First Tab","namespace":["employment","opportunitiesBody","FixedTabsLayout","firstTab"],"searchable":true,"uid":false},{"type":"rich-text","name":"firstHeading","label":"First Heading","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["opportunities","_body","FixedTabsLayout","firstHeading","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["opportunities","_body","FixedTabsLayout","firstHeading","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["opportunities","_body","FixedTabsLayout","firstHeading","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["opportunities","_body","FixedTabsLayout","firstHeading","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["opportunities","_body","FixedTabsLayout","firstHeading","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["opportunities","_body","FixedTabsLayout","firstHeading","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["opportunities","_body","FixedTabsLayout","firstHeading","VideoEmbed","duration"]}],"namespace":["employment","callToActionBody","FixedTabsLayout","firstHeading","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["opportunities","_body","FixedTabsLayout","firstHeading","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["opportunities","_body","FixedTabsLayout","firstHeading","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["opportunities","_body","FixedTabsLayout","firstHeading","BookingButton","buttonSubtitle"]}],"namespace":["employment","callToActionBody","FixedTabsLayout","firstHeading","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["opportunities","_body","FixedTabsLayout","firstHeading","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["eventsIndex","preface","FixedTabsLayout","firstHeading","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["eventsIndex","preface","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["eventsIndex","preface","FixedTabsLayout","firstHeading","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["eventsIndex","preface","FixedTabsLayout","firstHeading","ExpertBlock","expertList","skills"]}],"namespace":["opportunities","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["eventsIndex","preface","FixedTabsLayout","firstHeading","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["eventsIndex","preface","FixedTabsLayout","firstHeading","ExpertBlock","link","url"]}],"namespace":["opportunities","_body","FixedTabsLayout","firstHeading","ExpertBlock","link"]}],"namespace":["employment","callToActionBody","FixedTabsLayout","firstHeading","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["eventsIndex","preface","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["eventsIndex","preface","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["eventsIndex","preface","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["eventsIndex","preface","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["opportunities","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["employment","callToActionBody","FixedTabsLayout","firstHeading","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["opportunities","_body","FixedTabsLayout","firstHeading","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["opportunities","_body","FixedTabsLayout","firstHeading","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["opportunities","_body","FixedTabsLayout","firstHeading","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["opportunities","_body","FixedTabsLayout","firstHeading","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["opportunities","_body","FixedTabsLayout","firstHeading","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["opportunities","_body","FixedTabsLayout","firstHeading","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["opportunities","_body","FixedTabsLayout","firstHeading","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["opportunities","_body","FixedTabsLayout","firstHeading","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["opportunities","_body","FixedTabsLayout","firstHeading","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["opportunities","_body","FixedTabsLayout","firstHeading","CustomImage","sizes"]}],"namespace":["employment","callToActionBody","FixedTabsLayout","firstHeading","CustomImage"]}],"namespace":["employment","opportunitiesBody","FixedTabsLayout","firstHeading"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","name":"firstBody","label":"First Body","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["opportunities","_body","FixedTabsLayout","firstBody","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["opportunities","_body","FixedTabsLayout","firstBody","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["opportunities","_body","FixedTabsLayout","firstBody","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["opportunities","_body","FixedTabsLayout","firstBody","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["opportunities","_body","FixedTabsLayout","firstBody","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["opportunities","_body","FixedTabsLayout","firstBody","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["opportunities","_body","FixedTabsLayout","firstBody","VideoEmbed","duration"]}],"namespace":["employment","callToActionBody","FixedTabsLayout","firstBody","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["opportunities","_body","FixedTabsLayout","firstBody","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["opportunities","_body","FixedTabsLayout","firstBody","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["opportunities","_body","FixedTabsLayout","firstBody","BookingButton","buttonSubtitle"]}],"namespace":["employment","callToActionBody","FixedTabsLayout","firstBody","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["opportunities","_body","FixedTabsLayout","firstBody","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["eventsIndex","preface","FixedTabsLayout","firstBody","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["eventsIndex","preface","FixedTabsLayout","firstBody","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["eventsIndex","preface","FixedTabsLayout","firstBody","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["eventsIndex","preface","FixedTabsLayout","firstBody","ExpertBlock","expertList","skills"]}],"namespace":["opportunities","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["eventsIndex","preface","FixedTabsLayout","firstBody","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["eventsIndex","preface","FixedTabsLayout","firstBody","ExpertBlock","link","url"]}],"namespace":["opportunities","_body","FixedTabsLayout","firstBody","ExpertBlock","link"]}],"namespace":["employment","callToActionBody","FixedTabsLayout","firstBody","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["eventsIndex","preface","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["eventsIndex","preface","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["eventsIndex","preface","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["eventsIndex","preface","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["opportunities","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["employment","callToActionBody","FixedTabsLayout","firstBody","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["opportunities","_body","FixedTabsLayout","firstBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["opportunities","_body","FixedTabsLayout","firstBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["opportunities","_body","FixedTabsLayout","firstBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["opportunities","_body","FixedTabsLayout","firstBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["opportunities","_body","FixedTabsLayout","firstBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["opportunities","_body","FixedTabsLayout","firstBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["opportunities","_body","FixedTabsLayout","firstBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["opportunities","_body","FixedTabsLayout","firstBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["opportunities","_body","FixedTabsLayout","firstBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["opportunities","_body","FixedTabsLayout","firstBody","CustomImage","sizes"]}],"namespace":["employment","callToActionBody","FixedTabsLayout","firstBody","CustomImage"]}],"namespace":["employment","opportunitiesBody","FixedTabsLayout","firstBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","name":"secondTab","label":"Second Tab","namespace":["employment","opportunitiesBody","FixedTabsLayout","secondTab"],"searchable":true,"uid":false},{"type":"rich-text","name":"secondHeading","label":"Second Heading","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["opportunities","_body","FixedTabsLayout","secondHeading","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["opportunities","_body","FixedTabsLayout","secondHeading","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["opportunities","_body","FixedTabsLayout","secondHeading","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["opportunities","_body","FixedTabsLayout","secondHeading","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["opportunities","_body","FixedTabsLayout","secondHeading","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["opportunities","_body","FixedTabsLayout","secondHeading","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["opportunities","_body","FixedTabsLayout","secondHeading","VideoEmbed","duration"]}],"namespace":["employment","callToActionBody","FixedTabsLayout","secondHeading","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["opportunities","_body","FixedTabsLayout","secondHeading","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["opportunities","_body","FixedTabsLayout","secondHeading","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["opportunities","_body","FixedTabsLayout","secondHeading","BookingButton","buttonSubtitle"]}],"namespace":["employment","callToActionBody","FixedTabsLayout","secondHeading","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["opportunities","_body","FixedTabsLayout","secondHeading","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["eventsIndex","preface","FixedTabsLayout","secondHeading","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["eventsIndex","preface","FixedTabsLayout","secondHeading","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["eventsIndex","preface","FixedTabsLayout","secondHeading","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["eventsIndex","preface","FixedTabsLayout","secondHeading","ExpertBlock","expertList","skills"]}],"namespace":["opportunities","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["eventsIndex","preface","FixedTabsLayout","secondHeading","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["eventsIndex","preface","FixedTabsLayout","secondHeading","ExpertBlock","link","url"]}],"namespace":["opportunities","_body","FixedTabsLayout","secondHeading","ExpertBlock","link"]}],"namespace":["employment","callToActionBody","FixedTabsLayout","secondHeading","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["eventsIndex","preface","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["eventsIndex","preface","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["eventsIndex","preface","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["eventsIndex","preface","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["opportunities","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["employment","callToActionBody","FixedTabsLayout","secondHeading","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["opportunities","_body","FixedTabsLayout","secondHeading","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["opportunities","_body","FixedTabsLayout","secondHeading","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["opportunities","_body","FixedTabsLayout","secondHeading","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["opportunities","_body","FixedTabsLayout","secondHeading","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["opportunities","_body","FixedTabsLayout","secondHeading","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["opportunities","_body","FixedTabsLayout","secondHeading","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["opportunities","_body","FixedTabsLayout","secondHeading","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["opportunities","_body","FixedTabsLayout","secondHeading","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["opportunities","_body","FixedTabsLayout","secondHeading","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["opportunities","_body","FixedTabsLayout","secondHeading","CustomImage","sizes"]}],"namespace":["employment","callToActionBody","FixedTabsLayout","secondHeading","CustomImage"]}],"namespace":["employment","opportunitiesBody","FixedTabsLayout","secondHeading"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","name":"secondBody","label":"Second Body","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["opportunities","_body","FixedTabsLayout","secondBody","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["opportunities","_body","FixedTabsLayout","secondBody","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["opportunities","_body","FixedTabsLayout","secondBody","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["opportunities","_body","FixedTabsLayout","secondBody","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["opportunities","_body","FixedTabsLayout","secondBody","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["opportunities","_body","FixedTabsLayout","secondBody","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["opportunities","_body","FixedTabsLayout","secondBody","VideoEmbed","duration"]}],"namespace":["employment","callToActionBody","FixedTabsLayout","secondBody","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["opportunities","_body","FixedTabsLayout","secondBody","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["opportunities","_body","FixedTabsLayout","secondBody","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["opportunities","_body","FixedTabsLayout","secondBody","BookingButton","buttonSubtitle"]}],"namespace":["employment","callToActionBody","FixedTabsLayout","secondBody","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["opportunities","_body","FixedTabsLayout","secondBody","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["eventsIndex","preface","FixedTabsLayout","secondBody","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["eventsIndex","preface","FixedTabsLayout","secondBody","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["eventsIndex","preface","FixedTabsLayout","secondBody","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["eventsIndex","preface","FixedTabsLayout","secondBody","ExpertBlock","expertList","skills"]}],"namespace":["opportunities","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["eventsIndex","preface","FixedTabsLayout","secondBody","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["eventsIndex","preface","FixedTabsLayout","secondBody","ExpertBlock","link","url"]}],"namespace":["opportunities","_body","FixedTabsLayout","secondBody","ExpertBlock","link"]}],"namespace":["employment","callToActionBody","FixedTabsLayout","secondBody","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["eventsIndex","preface","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["eventsIndex","preface","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["eventsIndex","preface","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["eventsIndex","preface","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["opportunities","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["employment","callToActionBody","FixedTabsLayout","secondBody","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["opportunities","_body","FixedTabsLayout","secondBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["opportunities","_body","FixedTabsLayout","secondBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["opportunities","_body","FixedTabsLayout","secondBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["opportunities","_body","FixedTabsLayout","secondBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["opportunities","_body","FixedTabsLayout","secondBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["opportunities","_body","FixedTabsLayout","secondBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["opportunities","_body","FixedTabsLayout","secondBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["opportunities","_body","FixedTabsLayout","secondBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["opportunities","_body","FixedTabsLayout","secondBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["opportunities","_body","FixedTabsLayout","secondBody","CustomImage","sizes"]}],"namespace":["employment","callToActionBody","FixedTabsLayout","secondBody","CustomImage"]}],"namespace":["employment","opportunitiesBody","FixedTabsLayout","secondBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["employment","opportunitiesBody","FixedTabsLayout"]},{"label":"Google Maps","name":"GoogleMaps","ui":{"previewSrc":"/images/thumbs/tina/google-maps.jpg"},"fields":[{"type":"string","label":"URL","name":"embedUrl","required":true,"namespace":["employment","opportunitiesBody","GoogleMaps","embedUrl"],"searchable":true,"uid":false},{"type":"string","label":"Width","name":"embedWidth","namespace":["employment","opportunitiesBody","GoogleMaps","embedWidth"],"searchable":true,"uid":false},{"type":"string","label":"Height","name":"embedHeight","namespace":["employment","opportunitiesBody","GoogleMaps","embedHeight"],"searchable":true,"uid":false}],"namespace":["employment","opportunitiesBody","GoogleMaps"]},{"label":"Grid Layout","name":"GridLayout","ui":{"previewSrc":"/images/thumbs/tina/grid-layout.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","opportunitiesBody","GridLayout","title"],"searchable":true,"uid":false},{"type":"object","list":true,"label":"Grid Items","name":"grids","ui":{},"fields":[{"type":"string","label":"Grid Title","name":"gridTitle","namespace":["employment","callToActionBody","GridLayout","grids","gridTitle"]},{"type":"boolean","label":"Show Grid Title","name":"showGridTitle","namespace":["employment","callToActionBody","GridLayout","grids","showGridTitle"]},{"type":"boolean","label":"Centered Grid Title","name":"centeredGridTitle","namespace":["employment","callToActionBody","GridLayout","grids","centeredGridTitle"]},{"type":"boolean","label":"Show Header Divider","name":"showHeaderDivider","namespace":["employment","callToActionBody","GridLayout","grids","showHeaderDivider"]},{"type":"boolean","label":"Offset Grid Start","name":"offsetGridStart","namespace":["employment","callToActionBody","GridLayout","grids","offsetGridStart"]},{"type":"object","label":"Blocks","name":"blocks","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["opportunities","_body","GridLayout","grids","blocks","title"]},{"type":"boolean","label":"Show Title","name":"showTitle","namespace":["opportunities","_body","GridLayout","grids","blocks","showTitle"]},{"type":"image","label":"Image","name":"image","uploadDir":{"namespace":["page","beforeBody","GridLayout","grids","blocks","image","uploadDir"]},"namespace":["opportunities","_body","GridLayout","grids","blocks","image"]},{"type":"image","label":"Related Image","name":"relatedImage","uploadDir":{"namespace":["page","beforeBody","GridLayout","grids","blocks","relatedImage","uploadDir"]},"namespace":["opportunities","_body","GridLayout","grids","blocks","relatedImage"]},{"type":"rich-text","name":"linkContent","label":"Link Content","templates":[{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["eventsIndex","sidebarBody","GridLayout","grids","blocks","linkContent","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["eventsIndex","sidebarBody","GridLayout","grids","blocks","linkContent","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["eventsIndex","sidebarBody","GridLayout","grids","blocks","linkContent","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["eventsIndex","sidebarBody","GridLayout","grids","blocks","linkContent","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["eventsIndex","sidebarBody","GridLayout","grids","blocks","linkContent","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["eventsIndex","sidebarBody","GridLayout","grids","blocks","linkContent","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["eventsIndex","sidebarBody","GridLayout","grids","blocks","linkContent","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["eventsIndex","sidebarBody","GridLayout","grids","blocks","linkContent","UtilityButton","openInNewTab"]}],"namespace":["eventsIndex","preface","GridLayout","grids","blocks","linkContent","UtilityButton"]}],"namespace":["opportunities","_body","GridLayout","grids","blocks","linkContent"]}],"namespace":["employment","callToActionBody","GridLayout","grids","blocks"]}],"namespace":["employment","opportunitiesBody","GridLayout","grids"],"searchable":true,"uid":false}],"namespace":["employment","opportunitiesBody","GridLayout"]},{"name":"Hero","label":"Hero","ui":{"previewSrc":"/blocks/hero.png","defaultItem":{"tagline":"Here's some text above the other text","headline":"This Big Text is Totally Awesome","text":"Phasellus scelerisque, libero eu finibus rutrum, risus risus accumsan libero, nec molestie urna dui a leo."}},"fields":[{"type":"string","label":"Tagline","name":"tagline","namespace":["employment","opportunitiesBody","Hero","tagline"],"searchable":true,"uid":false},{"type":"string","label":"Headline","name":"headline","namespace":["employment","opportunitiesBody","Hero","headline"],"searchable":true,"uid":false},{"label":"Text","name":"text","type":"rich-text","namespace":["employment","opportunitiesBody","Hero","text"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"label":"Actions","name":"actions","type":"object","list":true,"ui":{"defaultItem":{"label":"Action Label","type":"button","icon":true,"link":"/"}},"fields":[{"label":"Label","name":"label","type":"string","namespace":["employment","callToActionBody","Hero","actions","label"]},{"label":"Type","name":"type","type":"string","options":[{"label":"Button","value":"button"},{"label":"Link","value":"link"}],"namespace":["employment","callToActionBody","Hero","actions","type"]},{"label":"Icon","name":"icon","type":"boolean","namespace":["employment","callToActionBody","Hero","actions","icon"]},{"label":"Link","name":"link","type":"string","namespace":["employment","callToActionBody","Hero","actions","link"]}],"namespace":["employment","opportunitiesBody","Hero","actions"],"searchable":true,"uid":false},{"type":"object","label":"Image","name":"image","fields":[{"name":"src","label":"Image Source","type":"image","namespace":["employment","callToActionBody","Hero","image","src"]},{"name":"alt","label":"Alt Text","type":"string","namespace":["employment","callToActionBody","Hero","image","alt"]}],"namespace":["employment","opportunitiesBody","Hero","image"],"searchable":true,"uid":false},{"type":"string","label":"Color","name":"color","options":[{"label":"Default","value":"default"},{"label":"Tint","value":"tint"},{"label":"Primary","value":"primary"}],"namespace":["employment","opportunitiesBody","Hero","color"],"searchable":true,"uid":false}],"namespace":["employment","opportunitiesBody","Hero"]},{"name":"HorizontalCard","label":"Horizontal Card","ui":{"previewSrc":"/images/thumbs/tina/horizontal-card.jpg"},"fields":[{"type":"object","label":"Cards","name":"cardList","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","callToActionBody","HorizontalCard","cardList","title"]},{"type":"rich-text","label":"Content","name":"content","namespace":["employment","callToActionBody","HorizontalCard","cardList","content"]},{"type":"image","label":"Thumbnail","name":"thumbnail","uploadDir":{"namespace":["page","beforeBody","HorizontalCard","cardList","thumbnail","uploadDir"]},"namespace":["employment","callToActionBody","HorizontalCard","cardList","thumbnail"]},{"type":"string","label":"Link","name":"link","namespace":["employment","callToActionBody","HorizontalCard","cardList","link"]}],"namespace":["employment","opportunitiesBody","HorizontalCard","cardList"],"searchable":true,"uid":false},{"type":"object","label":"Button","name":"button","fields":[{"type":"string","label":"Text","name":"text","namespace":["employment","callToActionBody","HorizontalCard","button","text"]},{"type":"string","label":"Link","name":"link","namespace":["employment","callToActionBody","HorizontalCard","button","link"]}],"namespace":["employment","opportunitiesBody","HorizontalCard","button"],"searchable":true,"uid":false}],"namespace":["employment","opportunitiesBody","HorizontalCard"]},{"name":"InternalCarousel","label":"Internal Carousel","ui":{"previewSrc":"/images/thumbs/tina/internal-carousel.jpg"},"fields":[{"label":"Images","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Image description"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["employment","callToActionBody","InternalCarousel","items","label"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","InternalCarousel","items","imgSrc","uploadDir"]},"namespace":["employment","callToActionBody","InternalCarousel","items","imgSrc"]}],"namespace":["employment","opportunitiesBody","InternalCarousel","items"],"searchable":true,"uid":false},{"type":"string","label":"Header","name":"header","namespace":["employment","opportunitiesBody","InternalCarousel","header"],"searchable":true,"uid":false},{"type":"rich-text","label":"Text","name":"paragraph","isBody":false,"namespace":["employment","opportunitiesBody","InternalCarousel","paragraph"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Website","name":"website","namespace":["employment","opportunitiesBody","InternalCarousel","website"],"searchable":true,"uid":false},{"type":"object","label":"Technologies","name":"technologies","list":true,"ui":{},"fields":[{"type":"string","label":"Name","name":"name","namespace":["employment","callToActionBody","InternalCarousel","technologies","name"]}],"namespace":["employment","opportunitiesBody","InternalCarousel","technologies"],"searchable":true,"uid":false},{"type":"string","label":"Case Study","name":"caseStudyUrl","namespace":["employment","opportunitiesBody","InternalCarousel","caseStudyUrl"],"searchable":true,"uid":false},{"type":"string","label":"Video URL","name":"videoUrl","namespace":["employment","opportunitiesBody","InternalCarousel","videoUrl"],"searchable":true,"uid":false}],"namespace":["employment","opportunitiesBody","InternalCarousel"]},{"label":"Join As Presenter","name":"joinAsPresenter","fields":[{"label":"Learn More Link","name":"link","type":"string","namespace":["employment","opportunitiesBody","joinAsPresenter","link"],"searchable":true,"uid":false},{"label":"Image","name":"img","type":"image","namespace":["employment","opportunitiesBody","joinAsPresenter","img"],"searchable":false,"uid":false}],"namespace":["employment","opportunitiesBody","joinAsPresenter"]},{"label":"Join Github","name":"joinGithub","ui":{"previewSrc":"/images/thumbs/tina/join-github.jpg"},"fields":[{"label":"Title","name":"title","type":"string","namespace":["employment","opportunitiesBody","joinGithub","title"],"searchable":true,"uid":false},{"label":"Join Github Link","name":"link","type":"string","namespace":["employment","opportunitiesBody","joinGithub","link"],"searchable":true,"uid":false}],"namespace":["employment","opportunitiesBody","joinGithub"]},{"name":"JotFormEmbed","label":"JotForm Embed","ui":{"previewSrc":"/images/thumbs/tina/jotform-embed.jpg"},"fields":[{"type":"string","name":"jotFormId","label":"JotForm Id","required":true,"namespace":["employment","opportunitiesBody","JotFormEmbed","jotFormId"],"searchable":true,"uid":false},{"type":"string","label":"Button Text","name":"buttonText","namespace":["employment","opportunitiesBody","JotFormEmbed","buttonText"],"searchable":true,"uid":false},{"type":"string","name":"containerClass","label":"Container Class","namespace":["employment","opportunitiesBody","JotFormEmbed","containerClass"],"searchable":true,"uid":false},{"type":"string","label":"Button Class","name":"buttonClass","namespace":["employment","opportunitiesBody","JotFormEmbed","buttonClass"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","namespace":["employment","opportunitiesBody","JotFormEmbed","animated"],"searchable":true,"uid":false}],"namespace":["employment","opportunitiesBody","JotFormEmbed"]},{"name":"LatestTech","label":"Latest Tech","ui":{"previewSrc":"/images/thumbs/tina/latest-tech.jpg"},"fields":[{"type":"reference","description":"Select a config file including a set of badges","collections":["userGroupGlobal"],"label":"Badges","name":"badges","namespace":["employment","opportunitiesBody","LatestTech","badges"],"searchable":true,"uid":false}],"namespace":["employment","opportunitiesBody","LatestTech"]},{"name":"LocationBlock","label":"Locations","ui":{"previewSrc":"/images/thumbs/tina/locations.jpg"},"fields":[{"type":"string","name":"title","label":"Title","namespace":["employment","opportunitiesBody","LocationBlock","title"],"searchable":true,"uid":false},{"type":"object","label":"Location List","name":"locationList","list":true,"ui":{},"fields":[{"type":"reference","collections":["locations"],"label":"Location","name":"location","namespace":["employment","callToActionBody","LocationBlock","locationList","location"]}],"namespace":["employment","opportunitiesBody","LocationBlock","locationList"],"searchable":true,"uid":false},{"type":"object","name":"chapelWebsite","label":"Chapel Website","fields":[{"type":"string","name":"title","label":"Text","namespace":["employment","callToActionBody","LocationBlock","chapelWebsite","title"]},{"type":"string","name":"URL","label":"URL","namespace":["employment","callToActionBody","LocationBlock","chapelWebsite","URL"]}],"namespace":["employment","opportunitiesBody","LocationBlock","chapelWebsite"],"searchable":true,"uid":false}],"namespace":["employment","opportunitiesBody","LocationBlock"]},{"name":"NewslettersTable","label":"Newsletters Table","ui":{"previewSrc":"/images/thumbs/tina/newsletters-table.jpg"},"fields":[{"type":"string","label":"Header text","name":"headerText","namespace":["employment","opportunitiesBody","NewslettersTable","headerText"],"searchable":true,"uid":false}],"namespace":["employment","opportunitiesBody","NewslettersTable"]},{"label":"Organizer","name":"organizer","fields":[{"type":"image","label":"Profile Image","name":"profileImg","namespace":["employment","opportunitiesBody","organizer","profileImg"],"searchable":false,"uid":false},{"type":"string","label":"Profile Link","name":"profileLink","namespace":["employment","opportunitiesBody","organizer","profileLink"],"searchable":true,"uid":false},{"type":"string","label":"Name","name":"name","namespace":["employment","opportunitiesBody","organizer","name"],"searchable":true,"uid":false},{"type":"string","label":"Position","name":"position","namespace":["employment","opportunitiesBody","organizer","position"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","namespace":["employment","opportunitiesBody","organizer","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["employment","opportunitiesBody","organizer"]},{"label":"Payment Block","name":"paymentBlock","ui":{"previewSrc":"/images/thumbs/tina/payment-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","opportunitiesBody","paymentBlock","title"],"searchable":true,"uid":false},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["employment","opportunitiesBody","paymentBlock","subTitle"],"searchable":true,"uid":false},{"type":"reference","label":"Payment Links","name":"payments","collections":["paymentDetails"],"namespace":["employment","opportunitiesBody","paymentBlock","payments"],"searchable":true,"uid":false},{"type":"rich-text","label":"Footer","name":"footer","namespace":["employment","opportunitiesBody","paymentBlock","footer"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"image","label":"Credit Cards Image","name":"creditImgSrc","namespace":["employment","opportunitiesBody","paymentBlock","creditImgSrc"],"searchable":false,"uid":false},{"type":"string","label":"Alt Text","name":"altTxt","namespace":["employment","opportunitiesBody","paymentBlock","altTxt"],"searchable":true,"uid":false}],"namespace":["employment","opportunitiesBody","paymentBlock"]},{"name":"PresenterBlock","label":"Presenters","ui":{"previewSrc":"/images/thumbs/tina/presenters.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["employment","opportunitiesBody","PresenterBlock","header"],"searchable":true,"uid":false},{"type":"object","name":"presenterList","label":"Presenters","list":true,"ui":{},"fields":[{"type":"reference","name":"presenter","label":"Presenters","collections":["presenter"],"namespace":["employment","callToActionBody","PresenterBlock","presenterList","presenter"]}],"namespace":["employment","opportunitiesBody","PresenterBlock","presenterList"],"searchable":true,"uid":false},{"type":"object","label":"Other Events","name":"otherEvent","fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","callToActionBody","PresenterBlock","otherEvent","title"]},{"type":"string","label":"URL","name":"eventURL","namespace":["employment","callToActionBody","PresenterBlock","otherEvent","eventURL"]}],"namespace":["employment","opportunitiesBody","PresenterBlock","otherEvent"],"searchable":true,"uid":false}],"namespace":["employment","opportunitiesBody","PresenterBlock"]},{"label":"Recurring Event","name":"RecurringEvent","ui":{"previewSrc":"/images/thumbs/tina/recurring-event.jpg"},"fields":[{"type":"string","label":"Apply Link Redirect","name":"applyLinkRedirect","namespace":["employment","opportunitiesBody","RecurringEvent","applyLinkRedirect"],"searchable":true,"uid":false},{"type":"string","label":"Day","name":"day","options":[{"label":"Monday","value":"monday"},{"label":"Tuesday","value":"tuesday"},{"label":"Wednesday","value":"wednesday"},{"label":"Thursday","value":"thursday"},{"label":"Friday","value":"friday"},{"label":"Saturday","value":"saturday"},{"label":"Sunday","value":"sunday"}],"required":true,"namespace":["employment","opportunitiesBody","RecurringEvent","day"],"searchable":true,"uid":false}],"namespace":["employment","opportunitiesBody","RecurringEvent"]},{"name":"SectionHeader","label":"Section Header","ui":{"previewSrc":"/images/thumbs/tina/section-header.jpg"},"fields":[{"type":"string","label":"Header Text","name":"headerText","namespace":["employment","opportunitiesBody","SectionHeader","headerText"],"searchable":true,"uid":false}],"namespace":["employment","opportunitiesBody","SectionHeader"]},{"name":"ServiceCards","label":"Service Cards","ui":{"previewSrc":"/images/thumbs/tina/services-cards.jpg"},"fields":[{"type":"string","label":"Big Cards Label","name":"bigCardsLabel","namespace":["employment","opportunitiesBody","ServiceCards","bigCardsLabel"],"searchable":true,"uid":false},{"label":"Big Cards","name":"bigCards","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","callToActionBody","ServiceCards","bigCards","title"]},{"type":"string","label":"Description","component":"textarea","name":"description","namespace":["employment","callToActionBody","ServiceCards","bigCards","description"]},{"type":"string","label":"URL","name":"link","namespace":["employment","callToActionBody","ServiceCards","bigCards","link"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Red","value":"red"},{"label":"Light Gray","value":"lightgray"},{"label":"Medium Gray","value":"mediumgray"},{"label":"Dark Gray","value":"darkgray"}],"namespace":["employment","callToActionBody","ServiceCards","bigCards","color"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","ServiceCards","bigCards","imgSrc","uploadDir"]},"namespace":["employment","callToActionBody","ServiceCards","bigCards","imgSrc"]}],"namespace":["employment","opportunitiesBody","ServiceCards","bigCards"],"searchable":true,"uid":false},{"type":"string","label":"Small Cards Label","name":"smallCardsLabel","namespace":["employment","opportunitiesBody","ServiceCards","smallCardsLabel"],"searchable":true,"uid":false},{"label":"Small Cards","name":"smallCards","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","callToActionBody","ServiceCards","smallCards","title"]},{"type":"string","label":"URL","name":"link","namespace":["employment","callToActionBody","ServiceCards","smallCards","link"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Red","value":"red"},{"label":"Light Gray","value":"lightgray"},{"label":"Medium Gray","value":"mediumgray"},{"label":"Dark Gray","value":"darkgray"}],"namespace":["employment","callToActionBody","ServiceCards","smallCards","color"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","ServiceCards","smallCards","imgSrc","uploadDir"]},"namespace":["employment","callToActionBody","ServiceCards","smallCards","imgSrc"]},{"type":"boolean","label":"External Page","description":"Select this if the link is not part of the website. This includes SSW.Rules, and SSW.People links","name":"isExternal","namespace":["employment","callToActionBody","ServiceCards","smallCards","isExternal"]}],"namespace":["employment","opportunitiesBody","ServiceCards","smallCards"],"searchable":true,"uid":false},{"label":"Links","name":"links","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["employment","callToActionBody","ServiceCards","links","label"]},{"type":"string","label":"URL","name":"link","namespace":["employment","callToActionBody","ServiceCards","links","link"]}],"namespace":["employment","opportunitiesBody","ServiceCards","links"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["employment","opportunitiesBody","ServiceCards","backgroundColor"],"searchable":true,"uid":false}],"namespace":["employment","opportunitiesBody","ServiceCards"]},{"label":"Table Layout","name":"TableLayout","ui":{"previewSrc":"/images/thumbs/tina/table-layout.jpg"},"fields":[{"label":"Table Style","name":"tableStyle","type":"string","options":["none","basicBorder","styled","benefits"],"namespace":["employment","opportunitiesBody","TableLayout","tableStyle"],"searchable":true,"uid":false},{"label":"First column bolded + left aligned","name":"firstColBold","type":"boolean","required":false,"namespace":["employment","opportunitiesBody","TableLayout","firstColBold"],"searchable":true,"uid":false},{"type":"string","label":"Table Headers","name":"headers","list":true,"namespace":["employment","opportunitiesBody","TableLayout","headers"],"searchable":true,"uid":false},{"type":"object","label":"Rows","name":"rows","list":true,"fields":[{"type":"object","label":"Cells","name":"cells","list":true,"fields":[{"type":"string","label":"Value","name":"cellValue","required":true,"component":{"namespace":["page","beforeBody","TableLayout","rows","cells","cellValue",""]},"namespace":["opportunities","_body","TableLayout","rows","cells","cellValue"]}],"ui":{},"namespace":["employment","callToActionBody","TableLayout","rows","cells"]},{"type":"boolean","label":"Is Heading","name":"isHeader","required":false,"namespace":["employment","callToActionBody","TableLayout","rows","isHeader"]}],"ui":{},"namespace":["employment","opportunitiesBody","TableLayout","rows"],"searchable":true,"uid":false}],"namespace":["employment","opportunitiesBody","TableLayout"]},{"name":"TestimonialsList","label":"Testimonials List","ui":{"previewSrc":"/images/thumbs/tina/testimonials.jpg"},"fields":[{"type":"object","label":"Exclude Categories","name":"excludedCategories","ui":{},"list":true,"fields":[{"type":"reference","label":"Category Name","name":"categoryName","collections":["testimonialCategories"],"namespace":["employment","callToActionBody","TestimonialsList","excludedCategories","categoryName"]}],"namespace":["employment","opportunitiesBody","TestimonialsList","excludedCategories"],"searchable":true,"uid":false}],"namespace":["employment","opportunitiesBody","TestimonialsList"]},{"label":"Training Information","name":"TrainingInformation","ui":{"previewSrc":"/images/thumbs/tina/training-information.jpg"},"fields":[{"type":"object","label":"Training Information Items","name":"trainingInformationItems","list":true,"fields":[{"type":"string","label":"Header","name":"header","namespace":["employment","callToActionBody","TrainingInformation","trainingInformationItems","header"]},{"type":"rich-text","label":"Body","name":"body","templates":[{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["eventsIndex","preface","TrainingInformation","trainingInformationItems","body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["eventsIndex","preface","TrainingInformation","trainingInformationItems","body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["eventsIndex","preface","TrainingInformation","trainingInformationItems","body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["eventsIndex","preface","TrainingInformation","trainingInformationItems","body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["eventsIndex","preface","TrainingInformation","trainingInformationItems","body","VerticalListItem","afterBody"]}],"namespace":["opportunities","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem"]},{"label":"Recurring Event","name":"RecurringEvent","ui":{"previewSrc":"/images/thumbs/tina/recurring-event.jpg"},"fields":[{"type":"string","label":"Apply Link Redirect","name":"applyLinkRedirect","namespace":["eventsIndex","preface","TrainingInformation","trainingInformationItems","body","RecurringEvent","applyLinkRedirect"]},{"type":"string","label":"Day","name":"day","options":[{"label":"Monday","value":"monday"},{"label":"Tuesday","value":"tuesday"},{"label":"Wednesday","value":"wednesday"},{"label":"Thursday","value":"thursday"},{"label":"Friday","value":"friday"},{"label":"Saturday","value":"saturday"},{"label":"Sunday","value":"sunday"}],"required":true,"namespace":["eventsIndex","preface","TrainingInformation","trainingInformationItems","body","RecurringEvent","day"]}],"namespace":["opportunities","_body","TrainingInformation","trainingInformationItems","body","RecurringEvent"]}],"namespace":["employment","callToActionBody","TrainingInformation","trainingInformationItems","body"]}],"namespace":["employment","opportunitiesBody","TrainingInformation","trainingInformationItems"],"searchable":true,"uid":false}],"namespace":["employment","opportunitiesBody","TrainingInformation"]},{"label":"Training Learning Outcomes","name":"TrainingLearningOutcome","ui":{"previewSrc":"/images/thumbs/tina/training-learning-outcomes.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["employment","opportunitiesBody","TrainingLearningOutcome","header"],"searchable":true,"uid":false},{"type":"object","label":"List Items","name":"listItems","list":true,"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","callToActionBody","TrainingLearningOutcome","listItems","title"]},{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["employment","callToActionBody","TrainingLearningOutcome","listItems","content"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","TrainingLearningOutcome","listItems","icon","uploadDir"]},"namespace":["employment","callToActionBody","TrainingLearningOutcome","listItems","icon"]}],"namespace":["employment","opportunitiesBody","TrainingLearningOutcome","listItems"],"searchable":true,"uid":false}],"namespace":["employment","opportunitiesBody","TrainingLearningOutcome"]},{"label":"Tweet Embed","name":"TweetEmbed","ui":{"previewSrc":"/images/thumbs/tina/tweet-embed.jpg"},"fields":[{"type":"string","name":"url","label":"Tweet URL","required":true,"namespace":["employment","opportunitiesBody","TweetEmbed","url"],"searchable":true,"uid":false}],"namespace":["employment","opportunitiesBody","TweetEmbed"]},{"name":"UpcomingEvents","label":"Upcoming Events","ui":{"previewSrc":"/images/thumbs/tina/upcoming-events.jpg","defaultItem":{"title":"Upcoming Events","numberOfEvents":30}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","opportunitiesBody","UpcomingEvents","title"],"searchable":true,"uid":false},{"type":"number","label":"Number of Events","name":"numberOfEvents","namespace":["employment","opportunitiesBody","UpcomingEvents","numberOfEvents"],"searchable":true,"uid":false}],"namespace":["employment","opportunitiesBody","UpcomingEvents"]},{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["employment","opportunitiesBody","UtilityButton","buttonText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"link","required":false,"namespace":["employment","opportunitiesBody","UtilityButton","link"],"searchable":true,"uid":false},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["employment","opportunitiesBody","UtilityButton","size"],"searchable":true,"uid":false},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["employment","opportunitiesBody","UtilityButton","btnIcon"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["employment","opportunitiesBody","UtilityButton","animated"],"searchable":true,"uid":false},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["employment","opportunitiesBody","UtilityButton","uncentered"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["employment","opportunitiesBody","UtilityButton","removeTopMargin"],"searchable":true,"uid":false},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["employment","opportunitiesBody","UtilityButton","openInNewTab"],"searchable":true,"uid":false}],"namespace":["employment","opportunitiesBody","UtilityButton"]},{"name":"VerticalImageLayout","label":"Vertical Image Layout","fields":[{"type":"image","label":"Image","name":"imageSrc","uploadDir":{"namespace":["page","beforeBody","VerticalImageLayout","imageSrc","uploadDir"]},"namespace":["employment","opportunitiesBody","VerticalImageLayout","imageSrc"],"searchable":false,"uid":false},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","opportunitiesBody","VerticalImageLayout","altText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"imageLink","namespace":["employment","opportunitiesBody","VerticalImageLayout","imageLink"],"searchable":true,"uid":false},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","opportunitiesBody","VerticalImageLayout","height"],"searchable":true,"uid":false},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","opportunitiesBody","VerticalImageLayout","width"],"searchable":true,"uid":false},{"type":"rich-text","label":"Message","name":"message","required":true,"namespace":["employment","opportunitiesBody","VerticalImageLayout","message"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","opportunitiesBody","VerticalImageLayout","sizes"],"searchable":true,"uid":false}],"namespace":["employment","opportunitiesBody","VerticalImageLayout"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["employment","opportunitiesBody","VerticalListItem","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"number","label":"Index number","name":"index","namespace":["employment","opportunitiesBody","VerticalListItem","index"],"searchable":true,"uid":false},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["employment","opportunitiesBody","VerticalListItem","icon"],"searchable":false,"uid":false},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["employment","opportunitiesBody","VerticalListItem","iconScale"],"searchable":true,"uid":false},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["employment","opportunitiesBody","VerticalListItem","afterBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["employment","opportunitiesBody","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["employment","opportunitiesBody","VideoEmbed","url"],"searchable":true,"uid":false},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["employment","opportunitiesBody","VideoEmbed","videoWidth"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["employment","opportunitiesBody","VideoEmbed","removeMargin"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["employment","opportunitiesBody","VideoEmbed","uncentre"],"searchable":true,"uid":false},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["employment","opportunitiesBody","VideoEmbed","overflow"],"searchable":true,"uid":false},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["employment","opportunitiesBody","VideoEmbed","caption"],"searchable":true,"uid":false},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["employment","opportunitiesBody","VideoEmbed","duration"],"searchable":true,"uid":false}],"namespace":["employment","opportunitiesBody","VideoEmbed"]},{"name":"InlineJotForm","label":"In-line JotForm","ui":{"previewSrc":"/images/thumbs/tina/inline-jot-form.jpg"},"fields":[{"type":"string","name":"title","label":"Title","description":"Optional title for JotForm","namespace":["employment","opportunitiesBody","InlineJotForm","title"],"searchable":true,"uid":false},{"type":"string","name":"jotFormId","label":"JotForm ID","required":true,"namespace":["employment","opportunitiesBody","InlineJotForm","jotFormId"],"searchable":true,"uid":false},{"type":"string","name":"additionalClasses","label":"Additional classnames","description":"Optional styling for iframe element only","namespace":["employment","opportunitiesBody","InlineJotForm","additionalClasses"],"searchable":true,"uid":false}],"namespace":["employment","opportunitiesBody","InlineJotForm"]}],"namespace":["employment","opportunitiesBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"object","label":"Opportunities","name":"opportunities","list":true,"required":true,"ui":{},"fields":[{"type":"reference","label":"Opportunity document","name":"opportunityRef","collections":["opportunities"],"namespace":["employment","opportunities","opportunityRef"],"searchable":true,"uid":false}],"namespace":["employment","opportunities"],"searchable":true,"uid":false},{"type":"rich-text","label":"Call to action body","name":"callToActionBody","templates":[{"name":"AboutUs","label":"About Us","ui":{"previewSrc":"/images/thumbs/tina/about-us.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["employment","callToActionBody","AboutUs","backgroundColor"],"searchable":true,"uid":false},{"type":"boolean","label":"Show Map","name":"showMap","required":false,"namespace":["employment","callToActionBody","AboutUs","showMap"],"searchable":true,"uid":false}],"namespace":["employment","callToActionBody","AboutUs"]},{"label":"Agenda","name":"Agenda","ui":{"previewSrc":"/images/thumbs/tina/agenda.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["employment","callToActionBody","Agenda","header"],"searchable":true,"uid":false},{"type":"string","label":"Header Color","name":"textColor","options":[{"label":"Red","value":"red"},{"label":"Gray","value":"gray"},{"label":"Default","value":"default"}],"namespace":["employment","callToActionBody","Agenda","textColor"],"searchable":true,"uid":false},{"type":"object","label":"Agenda Items","name":"agendaItemList","ui":{},"list":true,"fields":[{"type":"string","label":"Placeholder Text","name":"placeholder","namespace":["opportunities","_body","Agenda","agendaItemList","placeholder"]},{"type":"rich-text","label":"Body","name":"body","templates":[{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["eventsIndex","sidebarBody","Agenda","agendaItemList","body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["eventsIndex","sidebarBody","Agenda","agendaItemList","body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["eventsIndex","sidebarBody","Agenda","agendaItemList","body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["eventsIndex","sidebarBody","Agenda","agendaItemList","body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["eventsIndex","sidebarBody","Agenda","agendaItemList","body","VerticalListItem","afterBody"]}],"namespace":["eventsIndex","preface","Agenda","agendaItemList","body","VerticalListItem"]}],"namespace":["opportunities","_body","Agenda","agendaItemList","body"]}],"namespace":["employment","callToActionBody","Agenda","agendaItemList"],"searchable":true,"uid":false}],"namespace":["employment","callToActionBody","Agenda"]},{"label":"Agreement Form","name":"AgreementForm","ui":{"previewSrc":"/images/thumbs/tina/agreement-form.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["employment","callToActionBody","AgreementForm","backgroundColor"],"searchable":true,"uid":false},{"type":"object","label":"Form fields","name":"fields","list":true,"fields":[{"type":"string","label":"ID","name":"id","required":true,"namespace":["opportunities","_body","AgreementForm","fields","id"]},{"type":"string","label":"Label","name":"label","required":true,"namespace":["opportunities","_body","AgreementForm","fields","label"]},{"type":"string","label":"Placeholder","name":"placeholder","namespace":["opportunities","_body","AgreementForm","fields","placeholder"]},{"type":"boolean","label":"Resizeable","name":"resizeable","required":true,"namespace":["opportunities","_body","AgreementForm","fields","resizeable"]}],"namespace":["employment","callToActionBody","AgreementForm","fields"],"searchable":true,"uid":false}],"namespace":["employment","callToActionBody","AgreementForm"]},{"label":"Interest Form","name":"InterestForm","ui":{"previewSrc":"/images/thumbs/tina/interest-form.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["employment","callToActionBody","InterestForm","buttonText"],"searchable":true,"uid":false}],"namespace":["employment","callToActionBody","InterestForm"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["employment","callToActionBody","BookingButton","buttonText"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","namespace":["employment","callToActionBody","BookingButton","animated"],"searchable":true,"uid":false},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["employment","callToActionBody","BookingButton","buttonSubtitle"],"searchable":true,"uid":false}],"namespace":["employment","callToActionBody","BookingButton"]},{"name":"BuiltOnAzure","label":"Built on Azure","ui":{"previewSrc":"/images/thumbs/tina/built-on-azure.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["employment","callToActionBody","BuiltOnAzure","backgroundColor"],"searchable":true,"uid":false}],"namespace":["employment","callToActionBody","BuiltOnAzure"]},{"name":"Carousel","label":"Carousel","ui":{"previewSrc":"/images/thumbs/tina/carousel.jpg"},"fields":[{"label":"Items","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Item description","link":"/","openIn":"sameWindow"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["opportunities","_body","Carousel","items","label"]},{"type":"string","label":"URL","name":"link","description":"If link contains ssw.com.au, you can skip the full URL and just use the path. e.g. /services","namespace":["opportunities","_body","Carousel","items","link"]},{"type":"string","label":"Open in","name":"openIn","description":"If it is external link, please select 'New window' option.","options":[{"label":"Same window","value":"sameWindow"},{"label":"Modal","value":"modal"},{"label":"New window","value":"newWindow"}],"namespace":["opportunities","_body","Carousel","items","openIn"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","Carousel","items","imgSrc","uploadDir"]},"namespace":["opportunities","_body","Carousel","items","imgSrc"]}],"namespace":["employment","callToActionBody","Carousel","items"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["employment","callToActionBody","Carousel","backgroundColor"],"searchable":true,"uid":false},{"type":"number","label":"Delay (Seconds)","name":"delay","required":true,"namespace":["employment","callToActionBody","Carousel","delay"],"searchable":true,"uid":false},{"type":"boolean","label":"Show on mobile devices","name":"showOnMobileDevices","namespace":["employment","callToActionBody","Carousel","showOnMobileDevices"],"searchable":true,"uid":false}],"namespace":["employment","callToActionBody","Carousel"]},{"name":"Citation","label":"Citation","fields":[{"type":"string","label":"author","name":"author","namespace":["employment","callToActionBody","Citation","author"],"searchable":true,"uid":false},{"type":"string","label":"article","name":"article","required":true,"namespace":["employment","callToActionBody","Citation","article"],"searchable":true,"uid":false}],"namespace":["employment","callToActionBody","Citation"]},{"label":"Client List","name":"ClientList","ui":{"previewSrc":"/images/thumbs/tina/clients-list.jpg"},"fields":[{"type":"object","name":"categories","label":"Categories","list":true,"fields":[{"type":"reference","name":"category","label":"Category","collections":["clientCategories"],"namespace":["opportunities","_body","ClientList","categories","category"]}],"ui":{},"namespace":["employment","callToActionBody","ClientList","categories"],"searchable":true,"uid":false},{"type":"object","name":"clients","label":"Clients list","list":true,"ui":{"previewSrc":"/images/thumbs/tina/clients-list.jpg"},"fields":[{"type":"string","name":"name","label":"Name","namespace":["opportunities","_body","ClientList","clients","name"]},{"type":"image","name":"logo","label":"Logo","namespace":["opportunities","_body","ClientList","clients","logo"]},{"type":"string","name":"logoUrl","label":"Logo URL","namespace":["opportunities","_body","ClientList","clients","logoUrl"]},{"type":"rich-text","name":"content","label":"Content","templates":[{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["eventsIndex","sidebarBody","ClientList","clients","content","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["eventsIndex","sidebarBody","ClientList","clients","content","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["eventsIndex","sidebarBody","ClientList","clients","content","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["eventsIndex","sidebarBody","ClientList","clients","content","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["eventsIndex","sidebarBody","ClientList","clients","content","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["eventsIndex","sidebarBody","ClientList","clients","content","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["eventsIndex","sidebarBody","ClientList","clients","content","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["eventsIndex","sidebarBody","ClientList","clients","content","UtilityButton","openInNewTab"]}],"namespace":["eventsIndex","preface","ClientList","clients","content","UtilityButton"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["eventsIndex","sidebarBody","ClientList","clients","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["eventsIndex","sidebarBody","ClientList","clients","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["eventsIndex","sidebarBody","ClientList","clients","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["eventsIndex","sidebarBody","ClientList","clients","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["eventsIndex","sidebarBody","ClientList","clients","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["eventsIndex","sidebarBody","ClientList","clients","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["eventsIndex","sidebarBody","ClientList","clients","content","VideoEmbed","duration"]}],"namespace":["eventsIndex","preface","ClientList","clients","content","VideoEmbed"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["eventsIndex","sidebarBody","ClientList","clients","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["eventsIndex","sidebarBody","ClientList","clients","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["eventsIndex","sidebarBody","ClientList","clients","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["eventsIndex","sidebarBody","ClientList","clients","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["eventsIndex","sidebarBody","ClientList","clients","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["eventsIndex","sidebarBody","ClientList","clients","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["eventsIndex","sidebarBody","ClientList","clients","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["eventsIndex","sidebarBody","ClientList","clients","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["eventsIndex","sidebarBody","ClientList","clients","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["eventsIndex","sidebarBody","ClientList","clients","content","CustomImage","sizes"]}],"namespace":["eventsIndex","preface","ClientList","clients","content","CustomImage"]},{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["eventsIndex","sidebarBody","ClientList","clients","content","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["eventsIndex","sidebarBody","ClientList","clients","content","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["events","_body","ClientList","clients","content","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["events","_body","ClientList","clients","content","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["events","_body","ClientList","clients","content","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["events","_body","ClientList","clients","content","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["events","_body","ClientList","clients","content","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["events","_body","ClientList","clients","content","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["events","_body","ClientList","clients","content","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["events","_body","ClientList","clients","content","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["events","_body","ClientList","clients","content","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["events","_body","ClientList","clients","content","ContentCard","content","CustomImage","sizes"]}],"namespace":["eventsIndex","afterEvents","ClientList","clients","content","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["events","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["events","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["events","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["events","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["events","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["eventsIndex","afterEvents","ClientList","clients","content","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["events","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["events","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["events","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["events","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["events","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["events","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["events","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","duration"]}],"namespace":["eventsIndex","afterEvents","ClientList","clients","content","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["events","_body","ClientList","clients","content","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["events","_body","ClientList","clients","content","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["events","footer","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["events","footer","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["events","footer","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["events","footer","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["events","footer","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["events","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["eventsIndex","afterEvents","ClientList","clients","content","ContentCard","content","ColorBlock"]}],"namespace":["eventsIndex","sidebarBody","ClientList","clients","content","ContentCard","content"]}],"namespace":["eventsIndex","preface","ClientList","clients","content","ContentCard"]}],"namespace":["opportunities","_body","ClientList","clients","content"]},{"type":"string","name":"caseStudyUrl","label":"Case study URL","namespace":["opportunities","_body","ClientList","clients","caseStudyUrl"]},{"type":"object","name":"categories","label":"Categories","list":true,"ui":{},"fields":[{"type":"reference","name":"category","label":"Category","collections":["clientCategories"],"namespace":["eventsIndex","preface","ClientList","clients","categories","category"]}],"namespace":["opportunities","_body","ClientList","clients","categories"]}],"namespace":["employment","callToActionBody","ClientList","clients"],"searchable":true,"uid":false}],"namespace":["employment","callToActionBody","ClientList"]},{"name":"ClientLogos","label":"Client Logos","ui":{"previewSrc":"/images/thumbs/tina/client-logos.jpg"},"fields":[{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","callToActionBody","ClientLogos","altText"],"searchable":true,"uid":false}],"namespace":["employment","callToActionBody","ClientLogos"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","callToActionBody","ColorBlock","title"],"searchable":true,"uid":false},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["employment","callToActionBody","ColorBlock","subTitle"],"searchable":true,"uid":false},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["opportunities","_body","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["opportunities","_body","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["opportunities","_body","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["opportunities","_body","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["opportunities","_body","ColorBlock","colorRow","caption"]}],"namespace":["employment","callToActionBody","ColorBlock","colorRow"],"searchable":true,"uid":false}],"namespace":["employment","callToActionBody","ColorBlock"]},{"name":"ColorPalette","label":"Color Palette","ui":{"previewSrc":"/images/thumbs/tina/color-palette.jpg"},"fields":[{"type":"string","label":"Name","name":"name","namespace":["employment","callToActionBody","ColorPalette","name"],"searchable":true,"uid":false}],"namespace":["employment","callToActionBody","ColorPalette"]},{"name":"Content","label":"Content","ui":{"previewSrc":"/images/thumbs/tina/content.jpg","defaultItem":{"body":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","callToActionBody","Content","title"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["eventsIndex","preface","Content","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["eventsIndex","preface","Content","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["eventsIndex","preface","Content","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["eventsIndex","preface","Content","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["eventsIndex","preface","Content","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["eventsIndex","preface","Content","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["eventsIndex","preface","Content","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["eventsIndex","preface","Content","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["eventsIndex","preface","Content","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["eventsIndex","preface","Content","content","CustomImage","sizes"]}],"namespace":["opportunities","_body","Content","content","CustomImage"]},{"name":"ClientLogos","label":"Client Logos","ui":{"previewSrc":"/images/thumbs/tina/client-logos.jpg"},"fields":[{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["eventsIndex","preface","Content","content","ClientLogos","altText"]}],"namespace":["opportunities","_body","Content","content","ClientLogos"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["eventsIndex","preface","Content","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["eventsIndex","preface","Content","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["eventsIndex","preface","Content","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["eventsIndex","preface","Content","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["eventsIndex","preface","Content","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["eventsIndex","preface","Content","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["eventsIndex","preface","Content","content","VideoEmbed","duration"]}],"namespace":["opportunities","_body","Content","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["eventsIndex","preface","Content","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["eventsIndex","preface","Content","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["eventsIndex","sidebarBody","Content","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["eventsIndex","sidebarBody","Content","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["eventsIndex","sidebarBody","Content","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["eventsIndex","sidebarBody","Content","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["eventsIndex","sidebarBody","Content","content","ColorBlock","colorRow","caption"]}],"namespace":["eventsIndex","preface","Content","content","ColorBlock","colorRow"]}],"namespace":["opportunities","_body","Content","content","ColorBlock"]}],"namespace":["employment","callToActionBody","Content","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Container Padding","name":"paddingClass","options":["Mobile: No Padding","Mobile: No Top and Horizontal Padding"],"namespace":["employment","callToActionBody","Content","paddingClass"],"searchable":true,"uid":false},{"type":"string","label":"Text size","name":"size","options":[{"label":"small","value":"sm"},{"label":"normal","value":"base"},{"label":"large","value":"lg"},{"label":"extra large","value":"xl"},{"label":"2x large","value":"2xl"}],"namespace":["employment","callToActionBody","Content","size"],"searchable":true,"uid":false},{"type":"string","label":"Align","name":"align","options":[{"label":"Left","value":"left"},{"label":"Center","value":"center"},{"label":"Right","value":"right"}],"namespace":["employment","callToActionBody","Content","align"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["employment","callToActionBody","Content","backgroundColor"],"searchable":true,"uid":false}],"namespace":["employment","callToActionBody","Content"]},{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["employment","callToActionBody","ContentCard","prose"],"searchable":true,"uid":false},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["employment","callToActionBody","ContentCard","centerAlignedText"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["eventsIndex","preface","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["eventsIndex","preface","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["eventsIndex","preface","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["eventsIndex","preface","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["eventsIndex","preface","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["eventsIndex","preface","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["eventsIndex","preface","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["eventsIndex","preface","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["eventsIndex","preface","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["eventsIndex","preface","ContentCard","content","CustomImage","sizes"]}],"namespace":["opportunities","_body","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["eventsIndex","preface","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["eventsIndex","preface","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["eventsIndex","preface","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["eventsIndex","preface","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["eventsIndex","preface","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["opportunities","_body","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["eventsIndex","preface","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["eventsIndex","preface","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["eventsIndex","preface","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["eventsIndex","preface","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["eventsIndex","preface","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["eventsIndex","preface","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["eventsIndex","preface","ContentCard","content","VideoEmbed","duration"]}],"namespace":["opportunities","_body","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["eventsIndex","preface","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["eventsIndex","preface","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["eventsIndex","sidebarBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["eventsIndex","sidebarBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["eventsIndex","sidebarBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["eventsIndex","sidebarBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["eventsIndex","sidebarBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["eventsIndex","preface","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["opportunities","_body","ContentCard","content","ColorBlock"]}],"namespace":["employment","callToActionBody","ContentCard","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["employment","callToActionBody","ContentCard"]},{"name":"CustomDownloadButton","label":"Custom Download Button","ui":{"previewSrc":"/images/thumbs/tina/custom-download-button.jpg"},"fields":[{"type":"string","label":"Text","name":"btnText","namespace":["employment","callToActionBody","CustomDownloadButton","btnText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"btnLink","namespace":["employment","callToActionBody","CustomDownloadButton","btnLink"],"searchable":true,"uid":false}],"namespace":["employment","callToActionBody","CustomDownloadButton"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["employment","callToActionBody","CustomImage","src"],"searchable":false,"uid":false},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","callToActionBody","CustomImage","altText"],"searchable":true,"uid":false},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["employment","callToActionBody","CustomImage","alignment"],"searchable":true,"uid":false},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","callToActionBody","CustomImage","height"],"searchable":true,"uid":false},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","callToActionBody","CustomImage","width"],"searchable":true,"uid":false},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["employment","callToActionBody","CustomImage","link"],"searchable":true,"uid":false},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["employment","callToActionBody","CustomImage","customClass"],"searchable":true,"uid":false},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["employment","callToActionBody","CustomImage","caption"],"searchable":true,"uid":false},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["employment","callToActionBody","CustomImage","captionColor"],"searchable":true,"uid":false},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","callToActionBody","CustomImage","sizes"],"searchable":true,"uid":false}],"namespace":["employment","callToActionBody","CustomImage"]},{"name":"DomainFromQuery","label":"Domain from query","ui":{"previewSrc":"/images/thumbs/tina/domain-from-query.jpg"},"fields":[{"name":"title","label":"Title","type":"string","description":"This is a H1 heading","namespace":["employment","callToActionBody","DomainFromQuery","title"],"searchable":true,"uid":false},{"name":"showDomain","label":"Show domain name","type":"boolean","description":"Query param in URL must have key of 'domain'","namespace":["employment","callToActionBody","DomainFromQuery","showDomain"],"searchable":true,"uid":false}],"namespace":["employment","callToActionBody","DomainFromQuery"]},{"name":"DownloadBlock","label":"Download Block","ui":{"previewSrc":"/images/thumbs/tina/download-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","callToActionBody","DownloadBlock","title"],"searchable":true,"uid":false},{"type":"object","label":"Downloads","name":"downloads","ui":{},"list":true,"fields":[{"type":"string","label":"Header","name":"header","namespace":["opportunities","_body","DownloadBlock","downloads","header"]},{"type":"image","label":"Image","name":"img","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","img","uploadDir"]},"namespace":["opportunities","_body","DownloadBlock","downloads","img"]},{"type":"string","label":"Image Background","name":"imgBackground","options":["black","grey","white","darkgrey","darkgreen"],"namespace":["opportunities","_body","DownloadBlock","downloads","imgBackground"]},{"type":"string","label":"First Link Text","name":"firstLinkText","description":"Defaults to PNG","namespace":["opportunities","_body","DownloadBlock","downloads","firstLinkText"]},{"type":"image","label":"First Link","name":"firstLink","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","firstLink","uploadDir"]},"namespace":["opportunities","_body","DownloadBlock","downloads","firstLink"]},{"type":"string","label":"Second Link Text","name":"secondLinkText","description":"Defaults to PDF","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","secondLinkText","uploadDir"]},"namespace":["opportunities","_body","DownloadBlock","downloads","secondLinkText"]},{"type":"image","label":"Second Link","name":"secondLink","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","secondLink","uploadDir"]},"namespace":["opportunities","_body","DownloadBlock","downloads","secondLink"]}],"namespace":["employment","callToActionBody","DownloadBlock","downloads"],"searchable":true,"uid":false},{"type":"boolean","label":"Bottom border","name":"bottomBorder","namespace":["employment","callToActionBody","DownloadBlock","bottomBorder"],"searchable":true,"uid":false}],"namespace":["employment","callToActionBody","DownloadBlock"]},{"name":"DynamicColumns","label":"Dynamic Column Layout","fields":[{"type":"rich-text","label":"Column text body","name":"colBody","required":true,"namespace":["employment","callToActionBody","DynamicColumns","colBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"number","label":"Number of columns","name":"colCount","required":true,"ui":{},"namespace":["employment","callToActionBody","DynamicColumns","colCount"],"searchable":true,"uid":false}],"namespace":["employment","callToActionBody","DynamicColumns"]},{"name":"EventBooking","label":"Events Booking","ui":{"previewSrc":"/images/thumbs/tina/events-booking.jpg"},"fields":[{"type":"number","label":"Duration (In Days)","name":"eventDurationInDays","required":true,"namespace":["employment","callToActionBody","EventBooking","eventDurationInDays"],"searchable":true,"uid":false},{"type":"number","label":"Price","name":"price","required":true,"namespace":["employment","callToActionBody","EventBooking","price"],"searchable":true,"uid":false},{"type":"number","label":"Discount Price","name":"discountPrice","namespace":["employment","callToActionBody","EventBooking","discountPrice"],"searchable":true,"uid":false},{"type":"string","name":"gstText","label":"Select GST Option","options":["inc GST","+ GST"],"required":true,"namespace":["employment","callToActionBody","EventBooking","gstText"],"searchable":true,"uid":false},{"type":"string","label":"Discount Note","name":"discountNote","namespace":["employment","callToActionBody","EventBooking","discountNote"],"searchable":true,"uid":false},{"type":"object","label":"Event","name":"eventList","ui":{},"list":true,"fields":[{"type":"string","label":"City","name":"city","namespace":["opportunities","_body","EventBooking","eventList","city"]},{"type":"datetime","label":"Start Date","name":"date","ui":{},"namespace":["opportunities","_body","EventBooking","eventList","date"]},{"type":"string","label":"Booking URL","name":"bookingURL","namespace":["opportunities","_body","EventBooking","eventList","bookingURL"]},{"type":"reference","label":"Location","name":"location","collections":["locations"],"namespace":["opportunities","_body","EventBooking","eventList","location"]}],"namespace":["employment","callToActionBody","EventBooking","eventList"],"searchable":true,"uid":false}],"namespace":["employment","callToActionBody","EventBooking"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["eventsIndex","preface","EventLink","content","Flag","country"]}],"namespace":["opportunities","_body","EventLink","content","Flag"]}],"namespace":["employment","callToActionBody","EventLink","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Link","name":"link","namespace":["employment","callToActionBody","EventLink","link"],"searchable":true,"uid":false},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["employment","callToActionBody","EventLink","eventThumbnail"],"searchable":false,"uid":false},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["employment","callToActionBody","EventLink","thumbnailAlt"],"searchable":true,"uid":false}],"namespace":["employment","callToActionBody","EventLink"]},{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["employment","callToActionBody","Flag","country"],"searchable":true,"uid":false}],"namespace":["employment","callToActionBody","Flag"]},{"name":"FixedColumns","label":"Fixed Column Layout (2 columns)","ui":{"previewSrc":"/images/thumbs/tina/fixed-columns.jpg"},"fields":[{"type":"rich-text","label":"Header Section (Optional)","name":"headerSection","namespace":["employment","callToActionBody","FixedColumns","headerSection"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"First column text","name":"firstColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["eventsIndex","preface","FixedColumns","firstColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["eventsIndex","preface","FixedColumns","firstColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["eventsIndex","afterEvents","FixedColumns","firstColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["eventsIndex","afterEvents","FixedColumns","firstColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["eventsIndex","afterEvents","FixedColumns","firstColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["eventsIndex","afterEvents","FixedColumns","firstColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["eventsIndex","afterEvents","FixedColumns","firstColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["eventsIndex","afterEvents","FixedColumns","firstColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["eventsIndex","afterEvents","FixedColumns","firstColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["eventsIndex","afterEvents","FixedColumns","firstColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["eventsIndex","afterEvents","FixedColumns","firstColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["eventsIndex","afterEvents","FixedColumns","firstColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["eventsIndex","sidebarBody","FixedColumns","firstColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["eventsIndex","afterEvents","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["eventsIndex","afterEvents","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["eventsIndex","afterEvents","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["eventsIndex","afterEvents","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["eventsIndex","afterEvents","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["eventsIndex","sidebarBody","FixedColumns","firstColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["eventsIndex","afterEvents","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["eventsIndex","afterEvents","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["eventsIndex","afterEvents","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["eventsIndex","afterEvents","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["eventsIndex","afterEvents","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["eventsIndex","afterEvents","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["eventsIndex","afterEvents","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["eventsIndex","sidebarBody","FixedColumns","firstColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["eventsIndex","afterEvents","FixedColumns","firstColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["eventsIndex","afterEvents","FixedColumns","firstColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["events","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["events","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["events","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["events","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["events","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["eventsIndex","afterEvents","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["eventsIndex","sidebarBody","FixedColumns","firstColBody","ContentCard","content","ColorBlock"]}],"namespace":["eventsIndex","preface","FixedColumns","firstColBody","ContentCard","content"]}],"namespace":["opportunities","_body","FixedColumns","firstColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["eventsIndex","preface","FixedColumns","firstColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["eventsIndex","preface","FixedColumns","firstColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["eventsIndex","preface","FixedColumns","firstColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["eventsIndex","preface","FixedColumns","firstColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["eventsIndex","preface","FixedColumns","firstColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["eventsIndex","preface","FixedColumns","firstColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["eventsIndex","preface","FixedColumns","firstColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["eventsIndex","preface","FixedColumns","firstColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["eventsIndex","preface","FixedColumns","firstColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["eventsIndex","preface","FixedColumns","firstColBody","CustomImage","sizes"]}],"namespace":["opportunities","_body","FixedColumns","firstColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["eventsIndex","afterEvents","FixedColumns","firstColBody","EventLink","content","Flag","country"]}],"namespace":["eventsIndex","sidebarBody","FixedColumns","firstColBody","EventLink","content","Flag"]}],"namespace":["eventsIndex","preface","FixedColumns","firstColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["eventsIndex","preface","FixedColumns","firstColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["eventsIndex","preface","FixedColumns","firstColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["eventsIndex","preface","FixedColumns","firstColBody","EventLink","thumbnailAlt"]}],"namespace":["opportunities","_body","FixedColumns","firstColBody","EventLink"]}],"namespace":["employment","callToActionBody","FixedColumns","firstColBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"Second column text","name":"secondColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["eventsIndex","preface","FixedColumns","secondColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["eventsIndex","preface","FixedColumns","secondColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["eventsIndex","afterEvents","FixedColumns","secondColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["eventsIndex","afterEvents","FixedColumns","secondColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["eventsIndex","afterEvents","FixedColumns","secondColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["eventsIndex","afterEvents","FixedColumns","secondColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["eventsIndex","afterEvents","FixedColumns","secondColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["eventsIndex","afterEvents","FixedColumns","secondColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["eventsIndex","afterEvents","FixedColumns","secondColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["eventsIndex","afterEvents","FixedColumns","secondColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["eventsIndex","afterEvents","FixedColumns","secondColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["eventsIndex","afterEvents","FixedColumns","secondColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["eventsIndex","sidebarBody","FixedColumns","secondColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["eventsIndex","afterEvents","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["eventsIndex","afterEvents","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["eventsIndex","afterEvents","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["eventsIndex","afterEvents","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["eventsIndex","afterEvents","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["eventsIndex","sidebarBody","FixedColumns","secondColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["eventsIndex","afterEvents","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["eventsIndex","afterEvents","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["eventsIndex","afterEvents","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["eventsIndex","afterEvents","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["eventsIndex","afterEvents","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["eventsIndex","afterEvents","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["eventsIndex","afterEvents","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["eventsIndex","sidebarBody","FixedColumns","secondColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["eventsIndex","afterEvents","FixedColumns","secondColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["eventsIndex","afterEvents","FixedColumns","secondColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["events","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["events","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["events","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["events","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["events","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["eventsIndex","afterEvents","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["eventsIndex","sidebarBody","FixedColumns","secondColBody","ContentCard","content","ColorBlock"]}],"namespace":["eventsIndex","preface","FixedColumns","secondColBody","ContentCard","content"]}],"namespace":["opportunities","_body","FixedColumns","secondColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["eventsIndex","preface","FixedColumns","secondColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["eventsIndex","preface","FixedColumns","secondColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["eventsIndex","preface","FixedColumns","secondColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["eventsIndex","preface","FixedColumns","secondColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["eventsIndex","preface","FixedColumns","secondColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["eventsIndex","preface","FixedColumns","secondColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["eventsIndex","preface","FixedColumns","secondColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["eventsIndex","preface","FixedColumns","secondColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["eventsIndex","preface","FixedColumns","secondColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["eventsIndex","preface","FixedColumns","secondColBody","CustomImage","sizes"]}],"namespace":["opportunities","_body","FixedColumns","secondColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["eventsIndex","afterEvents","FixedColumns","secondColBody","EventLink","content","Flag","country"]}],"namespace":["eventsIndex","sidebarBody","FixedColumns","secondColBody","EventLink","content","Flag"]}],"namespace":["eventsIndex","preface","FixedColumns","secondColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["eventsIndex","preface","FixedColumns","secondColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["eventsIndex","preface","FixedColumns","secondColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["eventsIndex","preface","FixedColumns","secondColBody","EventLink","thumbnailAlt"]}],"namespace":["opportunities","_body","FixedColumns","secondColBody","EventLink"]}],"namespace":["employment","callToActionBody","FixedColumns","secondColBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["employment","callToActionBody","FixedColumns"]},{"name":"FixedTabsLayout","label":"Fixed Tabs Layout","ui":{"previewSrc":"/images/thumbs/tina/fixed-tabs-layout.jpg"},"fields":[{"type":"string","name":"firstTab","label":"First Tab","namespace":["employment","callToActionBody","FixedTabsLayout","firstTab"],"searchable":true,"uid":false},{"type":"rich-text","name":"firstHeading","label":"First Heading","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["eventsIndex","preface","FixedTabsLayout","firstHeading","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["eventsIndex","preface","FixedTabsLayout","firstHeading","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["eventsIndex","preface","FixedTabsLayout","firstHeading","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["eventsIndex","preface","FixedTabsLayout","firstHeading","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["eventsIndex","preface","FixedTabsLayout","firstHeading","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["eventsIndex","preface","FixedTabsLayout","firstHeading","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["eventsIndex","preface","FixedTabsLayout","firstHeading","VideoEmbed","duration"]}],"namespace":["opportunities","_body","FixedTabsLayout","firstHeading","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["eventsIndex","preface","FixedTabsLayout","firstHeading","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["eventsIndex","preface","FixedTabsLayout","firstHeading","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["eventsIndex","preface","FixedTabsLayout","firstHeading","BookingButton","buttonSubtitle"]}],"namespace":["opportunities","_body","FixedTabsLayout","firstHeading","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["eventsIndex","preface","FixedTabsLayout","firstHeading","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","skills"]}],"namespace":["eventsIndex","preface","FixedTabsLayout","firstHeading","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstHeading","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstHeading","ExpertBlock","link","url"]}],"namespace":["eventsIndex","preface","FixedTabsLayout","firstHeading","ExpertBlock","link"]}],"namespace":["opportunities","_body","FixedTabsLayout","firstHeading","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["eventsIndex","preface","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["opportunities","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["eventsIndex","preface","FixedTabsLayout","firstHeading","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["eventsIndex","preface","FixedTabsLayout","firstHeading","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["eventsIndex","preface","FixedTabsLayout","firstHeading","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["eventsIndex","preface","FixedTabsLayout","firstHeading","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["eventsIndex","preface","FixedTabsLayout","firstHeading","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["eventsIndex","preface","FixedTabsLayout","firstHeading","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["eventsIndex","preface","FixedTabsLayout","firstHeading","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["eventsIndex","preface","FixedTabsLayout","firstHeading","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["eventsIndex","preface","FixedTabsLayout","firstHeading","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["eventsIndex","preface","FixedTabsLayout","firstHeading","CustomImage","sizes"]}],"namespace":["opportunities","_body","FixedTabsLayout","firstHeading","CustomImage"]}],"namespace":["employment","callToActionBody","FixedTabsLayout","firstHeading"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","name":"firstBody","label":"First Body","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["eventsIndex","preface","FixedTabsLayout","firstBody","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["eventsIndex","preface","FixedTabsLayout","firstBody","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["eventsIndex","preface","FixedTabsLayout","firstBody","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["eventsIndex","preface","FixedTabsLayout","firstBody","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["eventsIndex","preface","FixedTabsLayout","firstBody","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["eventsIndex","preface","FixedTabsLayout","firstBody","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["eventsIndex","preface","FixedTabsLayout","firstBody","VideoEmbed","duration"]}],"namespace":["opportunities","_body","FixedTabsLayout","firstBody","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["eventsIndex","preface","FixedTabsLayout","firstBody","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["eventsIndex","preface","FixedTabsLayout","firstBody","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["eventsIndex","preface","FixedTabsLayout","firstBody","BookingButton","buttonSubtitle"]}],"namespace":["opportunities","_body","FixedTabsLayout","firstBody","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["eventsIndex","preface","FixedTabsLayout","firstBody","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstBody","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstBody","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstBody","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstBody","ExpertBlock","expertList","skills"]}],"namespace":["eventsIndex","preface","FixedTabsLayout","firstBody","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstBody","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstBody","ExpertBlock","link","url"]}],"namespace":["eventsIndex","preface","FixedTabsLayout","firstBody","ExpertBlock","link"]}],"namespace":["opportunities","_body","FixedTabsLayout","firstBody","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["eventsIndex","preface","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["opportunities","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["eventsIndex","preface","FixedTabsLayout","firstBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["eventsIndex","preface","FixedTabsLayout","firstBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["eventsIndex","preface","FixedTabsLayout","firstBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["eventsIndex","preface","FixedTabsLayout","firstBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["eventsIndex","preface","FixedTabsLayout","firstBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["eventsIndex","preface","FixedTabsLayout","firstBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["eventsIndex","preface","FixedTabsLayout","firstBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["eventsIndex","preface","FixedTabsLayout","firstBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["eventsIndex","preface","FixedTabsLayout","firstBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["eventsIndex","preface","FixedTabsLayout","firstBody","CustomImage","sizes"]}],"namespace":["opportunities","_body","FixedTabsLayout","firstBody","CustomImage"]}],"namespace":["employment","callToActionBody","FixedTabsLayout","firstBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","name":"secondTab","label":"Second Tab","namespace":["employment","callToActionBody","FixedTabsLayout","secondTab"],"searchable":true,"uid":false},{"type":"rich-text","name":"secondHeading","label":"Second Heading","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["eventsIndex","preface","FixedTabsLayout","secondHeading","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["eventsIndex","preface","FixedTabsLayout","secondHeading","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["eventsIndex","preface","FixedTabsLayout","secondHeading","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["eventsIndex","preface","FixedTabsLayout","secondHeading","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["eventsIndex","preface","FixedTabsLayout","secondHeading","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["eventsIndex","preface","FixedTabsLayout","secondHeading","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["eventsIndex","preface","FixedTabsLayout","secondHeading","VideoEmbed","duration"]}],"namespace":["opportunities","_body","FixedTabsLayout","secondHeading","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["eventsIndex","preface","FixedTabsLayout","secondHeading","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["eventsIndex","preface","FixedTabsLayout","secondHeading","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["eventsIndex","preface","FixedTabsLayout","secondHeading","BookingButton","buttonSubtitle"]}],"namespace":["opportunities","_body","FixedTabsLayout","secondHeading","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["eventsIndex","preface","FixedTabsLayout","secondHeading","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondHeading","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondHeading","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondHeading","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondHeading","ExpertBlock","expertList","skills"]}],"namespace":["eventsIndex","preface","FixedTabsLayout","secondHeading","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondHeading","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondHeading","ExpertBlock","link","url"]}],"namespace":["eventsIndex","preface","FixedTabsLayout","secondHeading","ExpertBlock","link"]}],"namespace":["opportunities","_body","FixedTabsLayout","secondHeading","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["eventsIndex","preface","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["opportunities","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["eventsIndex","preface","FixedTabsLayout","secondHeading","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["eventsIndex","preface","FixedTabsLayout","secondHeading","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["eventsIndex","preface","FixedTabsLayout","secondHeading","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["eventsIndex","preface","FixedTabsLayout","secondHeading","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["eventsIndex","preface","FixedTabsLayout","secondHeading","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["eventsIndex","preface","FixedTabsLayout","secondHeading","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["eventsIndex","preface","FixedTabsLayout","secondHeading","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["eventsIndex","preface","FixedTabsLayout","secondHeading","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["eventsIndex","preface","FixedTabsLayout","secondHeading","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["eventsIndex","preface","FixedTabsLayout","secondHeading","CustomImage","sizes"]}],"namespace":["opportunities","_body","FixedTabsLayout","secondHeading","CustomImage"]}],"namespace":["employment","callToActionBody","FixedTabsLayout","secondHeading"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","name":"secondBody","label":"Second Body","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["eventsIndex","preface","FixedTabsLayout","secondBody","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["eventsIndex","preface","FixedTabsLayout","secondBody","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["eventsIndex","preface","FixedTabsLayout","secondBody","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["eventsIndex","preface","FixedTabsLayout","secondBody","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["eventsIndex","preface","FixedTabsLayout","secondBody","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["eventsIndex","preface","FixedTabsLayout","secondBody","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["eventsIndex","preface","FixedTabsLayout","secondBody","VideoEmbed","duration"]}],"namespace":["opportunities","_body","FixedTabsLayout","secondBody","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["eventsIndex","preface","FixedTabsLayout","secondBody","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["eventsIndex","preface","FixedTabsLayout","secondBody","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["eventsIndex","preface","FixedTabsLayout","secondBody","BookingButton","buttonSubtitle"]}],"namespace":["opportunities","_body","FixedTabsLayout","secondBody","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["eventsIndex","preface","FixedTabsLayout","secondBody","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondBody","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondBody","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondBody","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondBody","ExpertBlock","expertList","skills"]}],"namespace":["eventsIndex","preface","FixedTabsLayout","secondBody","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondBody","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondBody","ExpertBlock","link","url"]}],"namespace":["eventsIndex","preface","FixedTabsLayout","secondBody","ExpertBlock","link"]}],"namespace":["opportunities","_body","FixedTabsLayout","secondBody","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["eventsIndex","preface","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["opportunities","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["eventsIndex","preface","FixedTabsLayout","secondBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["eventsIndex","preface","FixedTabsLayout","secondBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["eventsIndex","preface","FixedTabsLayout","secondBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["eventsIndex","preface","FixedTabsLayout","secondBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["eventsIndex","preface","FixedTabsLayout","secondBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["eventsIndex","preface","FixedTabsLayout","secondBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["eventsIndex","preface","FixedTabsLayout","secondBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["eventsIndex","preface","FixedTabsLayout","secondBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["eventsIndex","preface","FixedTabsLayout","secondBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["eventsIndex","preface","FixedTabsLayout","secondBody","CustomImage","sizes"]}],"namespace":["opportunities","_body","FixedTabsLayout","secondBody","CustomImage"]}],"namespace":["employment","callToActionBody","FixedTabsLayout","secondBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["employment","callToActionBody","FixedTabsLayout"]},{"label":"Google Maps","name":"GoogleMaps","ui":{"previewSrc":"/images/thumbs/tina/google-maps.jpg"},"fields":[{"type":"string","label":"URL","name":"embedUrl","required":true,"namespace":["employment","callToActionBody","GoogleMaps","embedUrl"],"searchable":true,"uid":false},{"type":"string","label":"Width","name":"embedWidth","namespace":["employment","callToActionBody","GoogleMaps","embedWidth"],"searchable":true,"uid":false},{"type":"string","label":"Height","name":"embedHeight","namespace":["employment","callToActionBody","GoogleMaps","embedHeight"],"searchable":true,"uid":false}],"namespace":["employment","callToActionBody","GoogleMaps"]},{"label":"Grid Layout","name":"GridLayout","ui":{"previewSrc":"/images/thumbs/tina/grid-layout.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","callToActionBody","GridLayout","title"],"searchable":true,"uid":false},{"type":"object","list":true,"label":"Grid Items","name":"grids","ui":{},"fields":[{"type":"string","label":"Grid Title","name":"gridTitle","namespace":["opportunities","_body","GridLayout","grids","gridTitle"]},{"type":"boolean","label":"Show Grid Title","name":"showGridTitle","namespace":["opportunities","_body","GridLayout","grids","showGridTitle"]},{"type":"boolean","label":"Centered Grid Title","name":"centeredGridTitle","namespace":["opportunities","_body","GridLayout","grids","centeredGridTitle"]},{"type":"boolean","label":"Show Header Divider","name":"showHeaderDivider","namespace":["opportunities","_body","GridLayout","grids","showHeaderDivider"]},{"type":"boolean","label":"Offset Grid Start","name":"offsetGridStart","namespace":["opportunities","_body","GridLayout","grids","offsetGridStart"]},{"type":"object","label":"Blocks","name":"blocks","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["eventsIndex","preface","GridLayout","grids","blocks","title"]},{"type":"boolean","label":"Show Title","name":"showTitle","namespace":["eventsIndex","preface","GridLayout","grids","blocks","showTitle"]},{"type":"image","label":"Image","name":"image","uploadDir":{"namespace":["page","beforeBody","GridLayout","grids","blocks","image","uploadDir"]},"namespace":["eventsIndex","preface","GridLayout","grids","blocks","image"]},{"type":"image","label":"Related Image","name":"relatedImage","uploadDir":{"namespace":["page","beforeBody","GridLayout","grids","blocks","relatedImage","uploadDir"]},"namespace":["eventsIndex","preface","GridLayout","grids","blocks","relatedImage"]},{"type":"rich-text","name":"linkContent","label":"Link Content","templates":[{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["eventsIndex","afterEvents","GridLayout","grids","blocks","linkContent","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["eventsIndex","afterEvents","GridLayout","grids","blocks","linkContent","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["eventsIndex","afterEvents","GridLayout","grids","blocks","linkContent","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["eventsIndex","afterEvents","GridLayout","grids","blocks","linkContent","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["eventsIndex","afterEvents","GridLayout","grids","blocks","linkContent","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["eventsIndex","afterEvents","GridLayout","grids","blocks","linkContent","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["eventsIndex","afterEvents","GridLayout","grids","blocks","linkContent","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["eventsIndex","afterEvents","GridLayout","grids","blocks","linkContent","UtilityButton","openInNewTab"]}],"namespace":["eventsIndex","sidebarBody","GridLayout","grids","blocks","linkContent","UtilityButton"]}],"namespace":["eventsIndex","preface","GridLayout","grids","blocks","linkContent"]}],"namespace":["opportunities","_body","GridLayout","grids","blocks"]}],"namespace":["employment","callToActionBody","GridLayout","grids"],"searchable":true,"uid":false}],"namespace":["employment","callToActionBody","GridLayout"]},{"name":"Hero","label":"Hero","ui":{"previewSrc":"/blocks/hero.png","defaultItem":{"tagline":"Here's some text above the other text","headline":"This Big Text is Totally Awesome","text":"Phasellus scelerisque, libero eu finibus rutrum, risus risus accumsan libero, nec molestie urna dui a leo."}},"fields":[{"type":"string","label":"Tagline","name":"tagline","namespace":["employment","callToActionBody","Hero","tagline"],"searchable":true,"uid":false},{"type":"string","label":"Headline","name":"headline","namespace":["employment","callToActionBody","Hero","headline"],"searchable":true,"uid":false},{"label":"Text","name":"text","type":"rich-text","namespace":["employment","callToActionBody","Hero","text"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"label":"Actions","name":"actions","type":"object","list":true,"ui":{"defaultItem":{"label":"Action Label","type":"button","icon":true,"link":"/"}},"fields":[{"label":"Label","name":"label","type":"string","namespace":["opportunities","_body","Hero","actions","label"]},{"label":"Type","name":"type","type":"string","options":[{"label":"Button","value":"button"},{"label":"Link","value":"link"}],"namespace":["opportunities","_body","Hero","actions","type"]},{"label":"Icon","name":"icon","type":"boolean","namespace":["opportunities","_body","Hero","actions","icon"]},{"label":"Link","name":"link","type":"string","namespace":["opportunities","_body","Hero","actions","link"]}],"namespace":["employment","callToActionBody","Hero","actions"],"searchable":true,"uid":false},{"type":"object","label":"Image","name":"image","fields":[{"name":"src","label":"Image Source","type":"image","namespace":["opportunities","_body","Hero","image","src"]},{"name":"alt","label":"Alt Text","type":"string","namespace":["opportunities","_body","Hero","image","alt"]}],"namespace":["employment","callToActionBody","Hero","image"],"searchable":true,"uid":false},{"type":"string","label":"Color","name":"color","options":[{"label":"Default","value":"default"},{"label":"Tint","value":"tint"},{"label":"Primary","value":"primary"}],"namespace":["employment","callToActionBody","Hero","color"],"searchable":true,"uid":false}],"namespace":["employment","callToActionBody","Hero"]},{"name":"HorizontalCard","label":"Horizontal Card","ui":{"previewSrc":"/images/thumbs/tina/horizontal-card.jpg"},"fields":[{"type":"object","label":"Cards","name":"cardList","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["opportunities","_body","HorizontalCard","cardList","title"]},{"type":"rich-text","label":"Content","name":"content","namespace":["opportunities","_body","HorizontalCard","cardList","content"]},{"type":"image","label":"Thumbnail","name":"thumbnail","uploadDir":{"namespace":["page","beforeBody","HorizontalCard","cardList","thumbnail","uploadDir"]},"namespace":["opportunities","_body","HorizontalCard","cardList","thumbnail"]},{"type":"string","label":"Link","name":"link","namespace":["opportunities","_body","HorizontalCard","cardList","link"]}],"namespace":["employment","callToActionBody","HorizontalCard","cardList"],"searchable":true,"uid":false},{"type":"object","label":"Button","name":"button","fields":[{"type":"string","label":"Text","name":"text","namespace":["opportunities","_body","HorizontalCard","button","text"]},{"type":"string","label":"Link","name":"link","namespace":["opportunities","_body","HorizontalCard","button","link"]}],"namespace":["employment","callToActionBody","HorizontalCard","button"],"searchable":true,"uid":false}],"namespace":["employment","callToActionBody","HorizontalCard"]},{"name":"InternalCarousel","label":"Internal Carousel","ui":{"previewSrc":"/images/thumbs/tina/internal-carousel.jpg"},"fields":[{"label":"Images","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Image description"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["opportunities","_body","InternalCarousel","items","label"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","InternalCarousel","items","imgSrc","uploadDir"]},"namespace":["opportunities","_body","InternalCarousel","items","imgSrc"]}],"namespace":["employment","callToActionBody","InternalCarousel","items"],"searchable":true,"uid":false},{"type":"string","label":"Header","name":"header","namespace":["employment","callToActionBody","InternalCarousel","header"],"searchable":true,"uid":false},{"type":"rich-text","label":"Text","name":"paragraph","isBody":false,"namespace":["employment","callToActionBody","InternalCarousel","paragraph"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Website","name":"website","namespace":["employment","callToActionBody","InternalCarousel","website"],"searchable":true,"uid":false},{"type":"object","label":"Technologies","name":"technologies","list":true,"ui":{},"fields":[{"type":"string","label":"Name","name":"name","namespace":["opportunities","_body","InternalCarousel","technologies","name"]}],"namespace":["employment","callToActionBody","InternalCarousel","technologies"],"searchable":true,"uid":false},{"type":"string","label":"Case Study","name":"caseStudyUrl","namespace":["employment","callToActionBody","InternalCarousel","caseStudyUrl"],"searchable":true,"uid":false},{"type":"string","label":"Video URL","name":"videoUrl","namespace":["employment","callToActionBody","InternalCarousel","videoUrl"],"searchable":true,"uid":false}],"namespace":["employment","callToActionBody","InternalCarousel"]},{"label":"Join As Presenter","name":"joinAsPresenter","fields":[{"label":"Learn More Link","name":"link","type":"string","namespace":["employment","callToActionBody","joinAsPresenter","link"],"searchable":true,"uid":false},{"label":"Image","name":"img","type":"image","namespace":["employment","callToActionBody","joinAsPresenter","img"],"searchable":false,"uid":false}],"namespace":["employment","callToActionBody","joinAsPresenter"]},{"label":"Join Github","name":"joinGithub","ui":{"previewSrc":"/images/thumbs/tina/join-github.jpg"},"fields":[{"label":"Title","name":"title","type":"string","namespace":["employment","callToActionBody","joinGithub","title"],"searchable":true,"uid":false},{"label":"Join Github Link","name":"link","type":"string","namespace":["employment","callToActionBody","joinGithub","link"],"searchable":true,"uid":false}],"namespace":["employment","callToActionBody","joinGithub"]},{"name":"JotFormEmbed","label":"JotForm Embed","ui":{"previewSrc":"/images/thumbs/tina/jotform-embed.jpg"},"fields":[{"type":"string","name":"jotFormId","label":"JotForm Id","required":true,"namespace":["employment","callToActionBody","JotFormEmbed","jotFormId"],"searchable":true,"uid":false},{"type":"string","label":"Button Text","name":"buttonText","namespace":["employment","callToActionBody","JotFormEmbed","buttonText"],"searchable":true,"uid":false},{"type":"string","name":"containerClass","label":"Container Class","namespace":["employment","callToActionBody","JotFormEmbed","containerClass"],"searchable":true,"uid":false},{"type":"string","label":"Button Class","name":"buttonClass","namespace":["employment","callToActionBody","JotFormEmbed","buttonClass"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","namespace":["employment","callToActionBody","JotFormEmbed","animated"],"searchable":true,"uid":false}],"namespace":["employment","callToActionBody","JotFormEmbed"]},{"name":"LatestTech","label":"Latest Tech","ui":{"previewSrc":"/images/thumbs/tina/latest-tech.jpg"},"fields":[{"type":"reference","description":"Select a config file including a set of badges","collections":["userGroupGlobal"],"label":"Badges","name":"badges","namespace":["employment","callToActionBody","LatestTech","badges"],"searchable":true,"uid":false}],"namespace":["employment","callToActionBody","LatestTech"]},{"name":"LocationBlock","label":"Locations","ui":{"previewSrc":"/images/thumbs/tina/locations.jpg"},"fields":[{"type":"string","name":"title","label":"Title","namespace":["employment","callToActionBody","LocationBlock","title"],"searchable":true,"uid":false},{"type":"object","label":"Location List","name":"locationList","list":true,"ui":{},"fields":[{"type":"reference","collections":["locations"],"label":"Location","name":"location","namespace":["opportunities","_body","LocationBlock","locationList","location"]}],"namespace":["employment","callToActionBody","LocationBlock","locationList"],"searchable":true,"uid":false},{"type":"object","name":"chapelWebsite","label":"Chapel Website","fields":[{"type":"string","name":"title","label":"Text","namespace":["opportunities","_body","LocationBlock","chapelWebsite","title"]},{"type":"string","name":"URL","label":"URL","namespace":["opportunities","_body","LocationBlock","chapelWebsite","URL"]}],"namespace":["employment","callToActionBody","LocationBlock","chapelWebsite"],"searchable":true,"uid":false}],"namespace":["employment","callToActionBody","LocationBlock"]},{"name":"NewslettersTable","label":"Newsletters Table","ui":{"previewSrc":"/images/thumbs/tina/newsletters-table.jpg"},"fields":[{"type":"string","label":"Header text","name":"headerText","namespace":["employment","callToActionBody","NewslettersTable","headerText"],"searchable":true,"uid":false}],"namespace":["employment","callToActionBody","NewslettersTable"]},{"label":"Organizer","name":"organizer","fields":[{"type":"image","label":"Profile Image","name":"profileImg","namespace":["employment","callToActionBody","organizer","profileImg"],"searchable":false,"uid":false},{"type":"string","label":"Profile Link","name":"profileLink","namespace":["employment","callToActionBody","organizer","profileLink"],"searchable":true,"uid":false},{"type":"string","label":"Name","name":"name","namespace":["employment","callToActionBody","organizer","name"],"searchable":true,"uid":false},{"type":"string","label":"Position","name":"position","namespace":["employment","callToActionBody","organizer","position"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","namespace":["employment","callToActionBody","organizer","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["employment","callToActionBody","organizer"]},{"label":"Payment Block","name":"paymentBlock","ui":{"previewSrc":"/images/thumbs/tina/payment-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","callToActionBody","paymentBlock","title"],"searchable":true,"uid":false},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["employment","callToActionBody","paymentBlock","subTitle"],"searchable":true,"uid":false},{"type":"reference","label":"Payment Links","name":"payments","collections":["paymentDetails"],"namespace":["employment","callToActionBody","paymentBlock","payments"],"searchable":true,"uid":false},{"type":"rich-text","label":"Footer","name":"footer","namespace":["employment","callToActionBody","paymentBlock","footer"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"image","label":"Credit Cards Image","name":"creditImgSrc","namespace":["employment","callToActionBody","paymentBlock","creditImgSrc"],"searchable":false,"uid":false},{"type":"string","label":"Alt Text","name":"altTxt","namespace":["employment","callToActionBody","paymentBlock","altTxt"],"searchable":true,"uid":false}],"namespace":["employment","callToActionBody","paymentBlock"]},{"name":"PresenterBlock","label":"Presenters","ui":{"previewSrc":"/images/thumbs/tina/presenters.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["employment","callToActionBody","PresenterBlock","header"],"searchable":true,"uid":false},{"type":"object","name":"presenterList","label":"Presenters","list":true,"ui":{},"fields":[{"type":"reference","name":"presenter","label":"Presenters","collections":["presenter"],"namespace":["opportunities","_body","PresenterBlock","presenterList","presenter"]}],"namespace":["employment","callToActionBody","PresenterBlock","presenterList"],"searchable":true,"uid":false},{"type":"object","label":"Other Events","name":"otherEvent","fields":[{"type":"string","label":"Title","name":"title","namespace":["opportunities","_body","PresenterBlock","otherEvent","title"]},{"type":"string","label":"URL","name":"eventURL","namespace":["opportunities","_body","PresenterBlock","otherEvent","eventURL"]}],"namespace":["employment","callToActionBody","PresenterBlock","otherEvent"],"searchable":true,"uid":false}],"namespace":["employment","callToActionBody","PresenterBlock"]},{"label":"Recurring Event","name":"RecurringEvent","ui":{"previewSrc":"/images/thumbs/tina/recurring-event.jpg"},"fields":[{"type":"string","label":"Apply Link Redirect","name":"applyLinkRedirect","namespace":["employment","callToActionBody","RecurringEvent","applyLinkRedirect"],"searchable":true,"uid":false},{"type":"string","label":"Day","name":"day","options":[{"label":"Monday","value":"monday"},{"label":"Tuesday","value":"tuesday"},{"label":"Wednesday","value":"wednesday"},{"label":"Thursday","value":"thursday"},{"label":"Friday","value":"friday"},{"label":"Saturday","value":"saturday"},{"label":"Sunday","value":"sunday"}],"required":true,"namespace":["employment","callToActionBody","RecurringEvent","day"],"searchable":true,"uid":false}],"namespace":["employment","callToActionBody","RecurringEvent"]},{"name":"SectionHeader","label":"Section Header","ui":{"previewSrc":"/images/thumbs/tina/section-header.jpg"},"fields":[{"type":"string","label":"Header Text","name":"headerText","namespace":["employment","callToActionBody","SectionHeader","headerText"],"searchable":true,"uid":false}],"namespace":["employment","callToActionBody","SectionHeader"]},{"name":"ServiceCards","label":"Service Cards","ui":{"previewSrc":"/images/thumbs/tina/services-cards.jpg"},"fields":[{"type":"string","label":"Big Cards Label","name":"bigCardsLabel","namespace":["employment","callToActionBody","ServiceCards","bigCardsLabel"],"searchable":true,"uid":false},{"label":"Big Cards","name":"bigCards","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["opportunities","_body","ServiceCards","bigCards","title"]},{"type":"string","label":"Description","component":"textarea","name":"description","namespace":["opportunities","_body","ServiceCards","bigCards","description"]},{"type":"string","label":"URL","name":"link","namespace":["opportunities","_body","ServiceCards","bigCards","link"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Red","value":"red"},{"label":"Light Gray","value":"lightgray"},{"label":"Medium Gray","value":"mediumgray"},{"label":"Dark Gray","value":"darkgray"}],"namespace":["opportunities","_body","ServiceCards","bigCards","color"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","ServiceCards","bigCards","imgSrc","uploadDir"]},"namespace":["opportunities","_body","ServiceCards","bigCards","imgSrc"]}],"namespace":["employment","callToActionBody","ServiceCards","bigCards"],"searchable":true,"uid":false},{"type":"string","label":"Small Cards Label","name":"smallCardsLabel","namespace":["employment","callToActionBody","ServiceCards","smallCardsLabel"],"searchable":true,"uid":false},{"label":"Small Cards","name":"smallCards","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["opportunities","_body","ServiceCards","smallCards","title"]},{"type":"string","label":"URL","name":"link","namespace":["opportunities","_body","ServiceCards","smallCards","link"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Red","value":"red"},{"label":"Light Gray","value":"lightgray"},{"label":"Medium Gray","value":"mediumgray"},{"label":"Dark Gray","value":"darkgray"}],"namespace":["opportunities","_body","ServiceCards","smallCards","color"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","ServiceCards","smallCards","imgSrc","uploadDir"]},"namespace":["opportunities","_body","ServiceCards","smallCards","imgSrc"]},{"type":"boolean","label":"External Page","description":"Select this if the link is not part of the website. This includes SSW.Rules, and SSW.People links","name":"isExternal","namespace":["opportunities","_body","ServiceCards","smallCards","isExternal"]}],"namespace":["employment","callToActionBody","ServiceCards","smallCards"],"searchable":true,"uid":false},{"label":"Links","name":"links","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["opportunities","_body","ServiceCards","links","label"]},{"type":"string","label":"URL","name":"link","namespace":["opportunities","_body","ServiceCards","links","link"]}],"namespace":["employment","callToActionBody","ServiceCards","links"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["employment","callToActionBody","ServiceCards","backgroundColor"],"searchable":true,"uid":false}],"namespace":["employment","callToActionBody","ServiceCards"]},{"label":"Table Layout","name":"TableLayout","ui":{"previewSrc":"/images/thumbs/tina/table-layout.jpg"},"fields":[{"label":"Table Style","name":"tableStyle","type":"string","options":["none","basicBorder","styled","benefits"],"namespace":["employment","callToActionBody","TableLayout","tableStyle"],"searchable":true,"uid":false},{"label":"First column bolded + left aligned","name":"firstColBold","type":"boolean","required":false,"namespace":["employment","callToActionBody","TableLayout","firstColBold"],"searchable":true,"uid":false},{"type":"string","label":"Table Headers","name":"headers","list":true,"namespace":["employment","callToActionBody","TableLayout","headers"],"searchable":true,"uid":false},{"type":"object","label":"Rows","name":"rows","list":true,"fields":[{"type":"object","label":"Cells","name":"cells","list":true,"fields":[{"type":"string","label":"Value","name":"cellValue","required":true,"component":{"namespace":["page","beforeBody","TableLayout","rows","cells","cellValue",""]},"namespace":["eventsIndex","preface","TableLayout","rows","cells","cellValue"]}],"ui":{},"namespace":["opportunities","_body","TableLayout","rows","cells"]},{"type":"boolean","label":"Is Heading","name":"isHeader","required":false,"namespace":["opportunities","_body","TableLayout","rows","isHeader"]}],"ui":{},"namespace":["employment","callToActionBody","TableLayout","rows"],"searchable":true,"uid":false}],"namespace":["employment","callToActionBody","TableLayout"]},{"name":"TestimonialsList","label":"Testimonials List","ui":{"previewSrc":"/images/thumbs/tina/testimonials.jpg"},"fields":[{"type":"object","label":"Exclude Categories","name":"excludedCategories","ui":{},"list":true,"fields":[{"type":"reference","label":"Category Name","name":"categoryName","collections":["testimonialCategories"],"namespace":["opportunities","_body","TestimonialsList","excludedCategories","categoryName"]}],"namespace":["employment","callToActionBody","TestimonialsList","excludedCategories"],"searchable":true,"uid":false}],"namespace":["employment","callToActionBody","TestimonialsList"]},{"label":"Training Information","name":"TrainingInformation","ui":{"previewSrc":"/images/thumbs/tina/training-information.jpg"},"fields":[{"type":"object","label":"Training Information Items","name":"trainingInformationItems","list":true,"fields":[{"type":"string","label":"Header","name":"header","namespace":["opportunities","_body","TrainingInformation","trainingInformationItems","header"]},{"type":"rich-text","label":"Body","name":"body","templates":[{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["eventsIndex","sidebarBody","TrainingInformation","trainingInformationItems","body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["eventsIndex","sidebarBody","TrainingInformation","trainingInformationItems","body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["eventsIndex","sidebarBody","TrainingInformation","trainingInformationItems","body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["eventsIndex","sidebarBody","TrainingInformation","trainingInformationItems","body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["eventsIndex","sidebarBody","TrainingInformation","trainingInformationItems","body","VerticalListItem","afterBody"]}],"namespace":["eventsIndex","preface","TrainingInformation","trainingInformationItems","body","VerticalListItem"]},{"label":"Recurring Event","name":"RecurringEvent","ui":{"previewSrc":"/images/thumbs/tina/recurring-event.jpg"},"fields":[{"type":"string","label":"Apply Link Redirect","name":"applyLinkRedirect","namespace":["eventsIndex","sidebarBody","TrainingInformation","trainingInformationItems","body","RecurringEvent","applyLinkRedirect"]},{"type":"string","label":"Day","name":"day","options":[{"label":"Monday","value":"monday"},{"label":"Tuesday","value":"tuesday"},{"label":"Wednesday","value":"wednesday"},{"label":"Thursday","value":"thursday"},{"label":"Friday","value":"friday"},{"label":"Saturday","value":"saturday"},{"label":"Sunday","value":"sunday"}],"required":true,"namespace":["eventsIndex","sidebarBody","TrainingInformation","trainingInformationItems","body","RecurringEvent","day"]}],"namespace":["eventsIndex","preface","TrainingInformation","trainingInformationItems","body","RecurringEvent"]}],"namespace":["opportunities","_body","TrainingInformation","trainingInformationItems","body"]}],"namespace":["employment","callToActionBody","TrainingInformation","trainingInformationItems"],"searchable":true,"uid":false}],"namespace":["employment","callToActionBody","TrainingInformation"]},{"label":"Training Learning Outcomes","name":"TrainingLearningOutcome","ui":{"previewSrc":"/images/thumbs/tina/training-learning-outcomes.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["employment","callToActionBody","TrainingLearningOutcome","header"],"searchable":true,"uid":false},{"type":"object","label":"List Items","name":"listItems","list":true,"fields":[{"type":"string","label":"Title","name":"title","namespace":["opportunities","_body","TrainingLearningOutcome","listItems","title"]},{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["opportunities","_body","TrainingLearningOutcome","listItems","content"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","TrainingLearningOutcome","listItems","icon","uploadDir"]},"namespace":["opportunities","_body","TrainingLearningOutcome","listItems","icon"]}],"namespace":["employment","callToActionBody","TrainingLearningOutcome","listItems"],"searchable":true,"uid":false}],"namespace":["employment","callToActionBody","TrainingLearningOutcome"]},{"label":"Tweet Embed","name":"TweetEmbed","ui":{"previewSrc":"/images/thumbs/tina/tweet-embed.jpg"},"fields":[{"type":"string","name":"url","label":"Tweet URL","required":true,"namespace":["employment","callToActionBody","TweetEmbed","url"],"searchable":true,"uid":false}],"namespace":["employment","callToActionBody","TweetEmbed"]},{"name":"UpcomingEvents","label":"Upcoming Events","ui":{"previewSrc":"/images/thumbs/tina/upcoming-events.jpg","defaultItem":{"title":"Upcoming Events","numberOfEvents":30}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["employment","callToActionBody","UpcomingEvents","title"],"searchable":true,"uid":false},{"type":"number","label":"Number of Events","name":"numberOfEvents","namespace":["employment","callToActionBody","UpcomingEvents","numberOfEvents"],"searchable":true,"uid":false}],"namespace":["employment","callToActionBody","UpcomingEvents"]},{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["employment","callToActionBody","UtilityButton","buttonText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"link","required":false,"namespace":["employment","callToActionBody","UtilityButton","link"],"searchable":true,"uid":false},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["employment","callToActionBody","UtilityButton","size"],"searchable":true,"uid":false},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["employment","callToActionBody","UtilityButton","btnIcon"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["employment","callToActionBody","UtilityButton","animated"],"searchable":true,"uid":false},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["employment","callToActionBody","UtilityButton","uncentered"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["employment","callToActionBody","UtilityButton","removeTopMargin"],"searchable":true,"uid":false},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["employment","callToActionBody","UtilityButton","openInNewTab"],"searchable":true,"uid":false}],"namespace":["employment","callToActionBody","UtilityButton"]},{"name":"VerticalImageLayout","label":"Vertical Image Layout","fields":[{"type":"image","label":"Image","name":"imageSrc","uploadDir":{"namespace":["page","beforeBody","VerticalImageLayout","imageSrc","uploadDir"]},"namespace":["employment","callToActionBody","VerticalImageLayout","imageSrc"],"searchable":false,"uid":false},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["employment","callToActionBody","VerticalImageLayout","altText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"imageLink","namespace":["employment","callToActionBody","VerticalImageLayout","imageLink"],"searchable":true,"uid":false},{"type":"number","label":"Height","name":"height","required":true,"namespace":["employment","callToActionBody","VerticalImageLayout","height"],"searchable":true,"uid":false},{"type":"number","label":"Width","name":"width","required":true,"namespace":["employment","callToActionBody","VerticalImageLayout","width"],"searchable":true,"uid":false},{"type":"rich-text","label":"Message","name":"message","required":true,"namespace":["employment","callToActionBody","VerticalImageLayout","message"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["employment","callToActionBody","VerticalImageLayout","sizes"],"searchable":true,"uid":false}],"namespace":["employment","callToActionBody","VerticalImageLayout"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["employment","callToActionBody","VerticalListItem","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"number","label":"Index number","name":"index","namespace":["employment","callToActionBody","VerticalListItem","index"],"searchable":true,"uid":false},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["employment","callToActionBody","VerticalListItem","icon"],"searchable":false,"uid":false},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["employment","callToActionBody","VerticalListItem","iconScale"],"searchable":true,"uid":false},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["employment","callToActionBody","VerticalListItem","afterBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["employment","callToActionBody","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["employment","callToActionBody","VideoEmbed","url"],"searchable":true,"uid":false},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["employment","callToActionBody","VideoEmbed","videoWidth"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["employment","callToActionBody","VideoEmbed","removeMargin"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["employment","callToActionBody","VideoEmbed","uncentre"],"searchable":true,"uid":false},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["employment","callToActionBody","VideoEmbed","overflow"],"searchable":true,"uid":false},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["employment","callToActionBody","VideoEmbed","caption"],"searchable":true,"uid":false},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["employment","callToActionBody","VideoEmbed","duration"],"searchable":true,"uid":false}],"namespace":["employment","callToActionBody","VideoEmbed"]},{"name":"InlineJotForm","label":"In-line JotForm","ui":{"previewSrc":"/images/thumbs/tina/inline-jot-form.jpg"},"fields":[{"type":"string","name":"title","label":"Title","description":"Optional title for JotForm","namespace":["employment","callToActionBody","InlineJotForm","title"],"searchable":true,"uid":false},{"type":"string","name":"jotFormId","label":"JotForm ID","required":true,"namespace":["employment","callToActionBody","InlineJotForm","jotFormId"],"searchable":true,"uid":false},{"type":"string","name":"additionalClasses","label":"Additional classnames","description":"Optional styling for iframe element only","namespace":["employment","callToActionBody","InlineJotForm","additionalClasses"],"searchable":true,"uid":false}],"namespace":["employment","callToActionBody","InlineJotForm"]}],"namespace":["employment","callToActionBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["employment"]},{"label":"Employment - Opportunities","name":"opportunities","format":"mdx","path":"content/opportunities","fields":[{"type":"string","name":"tip","label":"Tip","ui":{},"namespace":["opportunities","tip"],"searchable":true,"uid":false},{"type":"string","label":"Job Title","name":"title","isTitle":true,"required":true,"namespace":["opportunities","title"],"searchable":true,"uid":false},{"type":"string","label":"Type","name":"employmentType","options":["Contract","Permanent","Work Experience"],"namespace":["opportunities","employmentType"],"searchable":true,"uid":false},{"type":"string","list":true,"label":"Locations","name":"locations","options":["Sydney","Brisbane","Melbourne","Newcastle","France","China"],"namespace":["opportunities","locations"],"searchable":true,"uid":false},{"type":"boolean","label":"Hide Apply Button","name":"hideApply","namespace":["opportunities","hideApply"],"searchable":true,"uid":false},{"type":"rich-text","label":"Description","name":"_body","isBody":true,"templates":[{"name":"AboutUs","label":"About Us","ui":{"previewSrc":"/images/thumbs/tina/about-us.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["opportunities","_body","AboutUs","backgroundColor"],"searchable":true,"uid":false},{"type":"boolean","label":"Show Map","name":"showMap","required":false,"namespace":["opportunities","_body","AboutUs","showMap"],"searchable":true,"uid":false}],"namespace":["opportunities","_body","AboutUs"]},{"label":"Agenda","name":"Agenda","ui":{"previewSrc":"/images/thumbs/tina/agenda.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["opportunities","_body","Agenda","header"],"searchable":true,"uid":false},{"type":"string","label":"Header Color","name":"textColor","options":[{"label":"Red","value":"red"},{"label":"Gray","value":"gray"},{"label":"Default","value":"default"}],"namespace":["opportunities","_body","Agenda","textColor"],"searchable":true,"uid":false},{"type":"object","label":"Agenda Items","name":"agendaItemList","ui":{},"list":true,"fields":[{"type":"string","label":"Placeholder Text","name":"placeholder","namespace":["eventsIndex","preface","Agenda","agendaItemList","placeholder"]},{"type":"rich-text","label":"Body","name":"body","templates":[{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["eventsIndex","afterEvents","Agenda","agendaItemList","body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["eventsIndex","afterEvents","Agenda","agendaItemList","body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["eventsIndex","afterEvents","Agenda","agendaItemList","body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["eventsIndex","afterEvents","Agenda","agendaItemList","body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["eventsIndex","afterEvents","Agenda","agendaItemList","body","VerticalListItem","afterBody"]}],"namespace":["eventsIndex","sidebarBody","Agenda","agendaItemList","body","VerticalListItem"]}],"namespace":["eventsIndex","preface","Agenda","agendaItemList","body"]}],"namespace":["opportunities","_body","Agenda","agendaItemList"],"searchable":true,"uid":false}],"namespace":["opportunities","_body","Agenda"]},{"label":"Agreement Form","name":"AgreementForm","ui":{"previewSrc":"/images/thumbs/tina/agreement-form.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["opportunities","_body","AgreementForm","backgroundColor"],"searchable":true,"uid":false},{"type":"object","label":"Form fields","name":"fields","list":true,"fields":[{"type":"string","label":"ID","name":"id","required":true,"namespace":["eventsIndex","preface","AgreementForm","fields","id"]},{"type":"string","label":"Label","name":"label","required":true,"namespace":["eventsIndex","preface","AgreementForm","fields","label"]},{"type":"string","label":"Placeholder","name":"placeholder","namespace":["eventsIndex","preface","AgreementForm","fields","placeholder"]},{"type":"boolean","label":"Resizeable","name":"resizeable","required":true,"namespace":["eventsIndex","preface","AgreementForm","fields","resizeable"]}],"namespace":["opportunities","_body","AgreementForm","fields"],"searchable":true,"uid":false}],"namespace":["opportunities","_body","AgreementForm"]},{"label":"Interest Form","name":"InterestForm","ui":{"previewSrc":"/images/thumbs/tina/interest-form.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["opportunities","_body","InterestForm","buttonText"],"searchable":true,"uid":false}],"namespace":["opportunities","_body","InterestForm"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["opportunities","_body","BookingButton","buttonText"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","namespace":["opportunities","_body","BookingButton","animated"],"searchable":true,"uid":false},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["opportunities","_body","BookingButton","buttonSubtitle"],"searchable":true,"uid":false}],"namespace":["opportunities","_body","BookingButton"]},{"name":"BuiltOnAzure","label":"Built on Azure","ui":{"previewSrc":"/images/thumbs/tina/built-on-azure.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["opportunities","_body","BuiltOnAzure","backgroundColor"],"searchable":true,"uid":false}],"namespace":["opportunities","_body","BuiltOnAzure"]},{"name":"Carousel","label":"Carousel","ui":{"previewSrc":"/images/thumbs/tina/carousel.jpg"},"fields":[{"label":"Items","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Item description","link":"/","openIn":"sameWindow"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["eventsIndex","preface","Carousel","items","label"]},{"type":"string","label":"URL","name":"link","description":"If link contains ssw.com.au, you can skip the full URL and just use the path. e.g. /services","namespace":["eventsIndex","preface","Carousel","items","link"]},{"type":"string","label":"Open in","name":"openIn","description":"If it is external link, please select 'New window' option.","options":[{"label":"Same window","value":"sameWindow"},{"label":"Modal","value":"modal"},{"label":"New window","value":"newWindow"}],"namespace":["eventsIndex","preface","Carousel","items","openIn"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","Carousel","items","imgSrc","uploadDir"]},"namespace":["eventsIndex","preface","Carousel","items","imgSrc"]}],"namespace":["opportunities","_body","Carousel","items"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["opportunities","_body","Carousel","backgroundColor"],"searchable":true,"uid":false},{"type":"number","label":"Delay (Seconds)","name":"delay","required":true,"namespace":["opportunities","_body","Carousel","delay"],"searchable":true,"uid":false},{"type":"boolean","label":"Show on mobile devices","name":"showOnMobileDevices","namespace":["opportunities","_body","Carousel","showOnMobileDevices"],"searchable":true,"uid":false}],"namespace":["opportunities","_body","Carousel"]},{"name":"Citation","label":"Citation","fields":[{"type":"string","label":"author","name":"author","namespace":["opportunities","_body","Citation","author"],"searchable":true,"uid":false},{"type":"string","label":"article","name":"article","required":true,"namespace":["opportunities","_body","Citation","article"],"searchable":true,"uid":false}],"namespace":["opportunities","_body","Citation"]},{"label":"Client List","name":"ClientList","ui":{"previewSrc":"/images/thumbs/tina/clients-list.jpg"},"fields":[{"type":"object","name":"categories","label":"Categories","list":true,"fields":[{"type":"reference","name":"category","label":"Category","collections":["clientCategories"],"namespace":["eventsIndex","preface","ClientList","categories","category"]}],"ui":{},"namespace":["opportunities","_body","ClientList","categories"],"searchable":true,"uid":false},{"type":"object","name":"clients","label":"Clients list","list":true,"ui":{"previewSrc":"/images/thumbs/tina/clients-list.jpg"},"fields":[{"type":"string","name":"name","label":"Name","namespace":["eventsIndex","preface","ClientList","clients","name"]},{"type":"image","name":"logo","label":"Logo","namespace":["eventsIndex","preface","ClientList","clients","logo"]},{"type":"string","name":"logoUrl","label":"Logo URL","namespace":["eventsIndex","preface","ClientList","clients","logoUrl"]},{"type":"rich-text","name":"content","label":"Content","templates":[{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["eventsIndex","afterEvents","ClientList","clients","content","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["eventsIndex","afterEvents","ClientList","clients","content","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["eventsIndex","afterEvents","ClientList","clients","content","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["eventsIndex","afterEvents","ClientList","clients","content","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["eventsIndex","afterEvents","ClientList","clients","content","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["eventsIndex","afterEvents","ClientList","clients","content","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["eventsIndex","afterEvents","ClientList","clients","content","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["eventsIndex","afterEvents","ClientList","clients","content","UtilityButton","openInNewTab"]}],"namespace":["eventsIndex","sidebarBody","ClientList","clients","content","UtilityButton"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["eventsIndex","afterEvents","ClientList","clients","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["eventsIndex","afterEvents","ClientList","clients","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["eventsIndex","afterEvents","ClientList","clients","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["eventsIndex","afterEvents","ClientList","clients","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["eventsIndex","afterEvents","ClientList","clients","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["eventsIndex","afterEvents","ClientList","clients","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["eventsIndex","afterEvents","ClientList","clients","content","VideoEmbed","duration"]}],"namespace":["eventsIndex","sidebarBody","ClientList","clients","content","VideoEmbed"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["eventsIndex","afterEvents","ClientList","clients","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["eventsIndex","afterEvents","ClientList","clients","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["eventsIndex","afterEvents","ClientList","clients","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["eventsIndex","afterEvents","ClientList","clients","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["eventsIndex","afterEvents","ClientList","clients","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["eventsIndex","afterEvents","ClientList","clients","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["eventsIndex","afterEvents","ClientList","clients","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["eventsIndex","afterEvents","ClientList","clients","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["eventsIndex","afterEvents","ClientList","clients","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["eventsIndex","afterEvents","ClientList","clients","content","CustomImage","sizes"]}],"namespace":["eventsIndex","sidebarBody","ClientList","clients","content","CustomImage"]},{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["eventsIndex","afterEvents","ClientList","clients","content","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["eventsIndex","afterEvents","ClientList","clients","content","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["events","footer","ClientList","clients","content","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["events","footer","ClientList","clients","content","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["events","footer","ClientList","clients","content","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["events","footer","ClientList","clients","content","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["events","footer","ClientList","clients","content","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["events","footer","ClientList","clients","content","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["events","footer","ClientList","clients","content","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["events","footer","ClientList","clients","content","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["events","footer","ClientList","clients","content","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["events","footer","ClientList","clients","content","ContentCard","content","CustomImage","sizes"]}],"namespace":["events","_body","ClientList","clients","content","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["events","footer","ClientList","clients","content","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["events","footer","ClientList","clients","content","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["events","footer","ClientList","clients","content","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["events","footer","ClientList","clients","content","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["events","footer","ClientList","clients","content","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["events","_body","ClientList","clients","content","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["events","footer","ClientList","clients","content","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["events","footer","ClientList","clients","content","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["events","footer","ClientList","clients","content","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["events","footer","ClientList","clients","content","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["events","footer","ClientList","clients","content","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["events","footer","ClientList","clients","content","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["events","footer","ClientList","clients","content","ContentCard","content","VideoEmbed","duration"]}],"namespace":["events","_body","ClientList","clients","content","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["events","footer","ClientList","clients","content","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["events","footer","ClientList","clients","content","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["logos","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["logos","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["logos","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["logos","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["logos","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["events","footer","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["events","_body","ClientList","clients","content","ContentCard","content","ColorBlock"]}],"namespace":["eventsIndex","afterEvents","ClientList","clients","content","ContentCard","content"]}],"namespace":["eventsIndex","sidebarBody","ClientList","clients","content","ContentCard"]}],"namespace":["eventsIndex","preface","ClientList","clients","content"]},{"type":"string","name":"caseStudyUrl","label":"Case study URL","namespace":["eventsIndex","preface","ClientList","clients","caseStudyUrl"]},{"type":"object","name":"categories","label":"Categories","list":true,"ui":{},"fields":[{"type":"reference","name":"category","label":"Category","collections":["clientCategories"],"namespace":["eventsIndex","sidebarBody","ClientList","clients","categories","category"]}],"namespace":["eventsIndex","preface","ClientList","clients","categories"]}],"namespace":["opportunities","_body","ClientList","clients"],"searchable":true,"uid":false}],"namespace":["opportunities","_body","ClientList"]},{"name":"ClientLogos","label":"Client Logos","ui":{"previewSrc":"/images/thumbs/tina/client-logos.jpg"},"fields":[{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["opportunities","_body","ClientLogos","altText"],"searchable":true,"uid":false}],"namespace":["opportunities","_body","ClientLogos"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["opportunities","_body","ColorBlock","title"],"searchable":true,"uid":false},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["opportunities","_body","ColorBlock","subTitle"],"searchable":true,"uid":false},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["eventsIndex","preface","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["eventsIndex","preface","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["eventsIndex","preface","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["eventsIndex","preface","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["eventsIndex","preface","ColorBlock","colorRow","caption"]}],"namespace":["opportunities","_body","ColorBlock","colorRow"],"searchable":true,"uid":false}],"namespace":["opportunities","_body","ColorBlock"]},{"name":"ColorPalette","label":"Color Palette","ui":{"previewSrc":"/images/thumbs/tina/color-palette.jpg"},"fields":[{"type":"string","label":"Name","name":"name","namespace":["opportunities","_body","ColorPalette","name"],"searchable":true,"uid":false}],"namespace":["opportunities","_body","ColorPalette"]},{"name":"Content","label":"Content","ui":{"previewSrc":"/images/thumbs/tina/content.jpg","defaultItem":{"body":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["opportunities","_body","Content","title"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["eventsIndex","sidebarBody","Content","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["eventsIndex","sidebarBody","Content","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["eventsIndex","sidebarBody","Content","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["eventsIndex","sidebarBody","Content","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["eventsIndex","sidebarBody","Content","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["eventsIndex","sidebarBody","Content","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["eventsIndex","sidebarBody","Content","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["eventsIndex","sidebarBody","Content","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["eventsIndex","sidebarBody","Content","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["eventsIndex","sidebarBody","Content","content","CustomImage","sizes"]}],"namespace":["eventsIndex","preface","Content","content","CustomImage"]},{"name":"ClientLogos","label":"Client Logos","ui":{"previewSrc":"/images/thumbs/tina/client-logos.jpg"},"fields":[{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["eventsIndex","sidebarBody","Content","content","ClientLogos","altText"]}],"namespace":["eventsIndex","preface","Content","content","ClientLogos"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["eventsIndex","sidebarBody","Content","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["eventsIndex","sidebarBody","Content","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["eventsIndex","sidebarBody","Content","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["eventsIndex","sidebarBody","Content","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["eventsIndex","sidebarBody","Content","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["eventsIndex","sidebarBody","Content","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["eventsIndex","sidebarBody","Content","content","VideoEmbed","duration"]}],"namespace":["eventsIndex","preface","Content","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["eventsIndex","sidebarBody","Content","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["eventsIndex","sidebarBody","Content","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["eventsIndex","afterEvents","Content","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["eventsIndex","afterEvents","Content","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["eventsIndex","afterEvents","Content","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["eventsIndex","afterEvents","Content","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["eventsIndex","afterEvents","Content","content","ColorBlock","colorRow","caption"]}],"namespace":["eventsIndex","sidebarBody","Content","content","ColorBlock","colorRow"]}],"namespace":["eventsIndex","preface","Content","content","ColorBlock"]}],"namespace":["opportunities","_body","Content","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Container Padding","name":"paddingClass","options":["Mobile: No Padding","Mobile: No Top and Horizontal Padding"],"namespace":["opportunities","_body","Content","paddingClass"],"searchable":true,"uid":false},{"type":"string","label":"Text size","name":"size","options":[{"label":"small","value":"sm"},{"label":"normal","value":"base"},{"label":"large","value":"lg"},{"label":"extra large","value":"xl"},{"label":"2x large","value":"2xl"}],"namespace":["opportunities","_body","Content","size"],"searchable":true,"uid":false},{"type":"string","label":"Align","name":"align","options":[{"label":"Left","value":"left"},{"label":"Center","value":"center"},{"label":"Right","value":"right"}],"namespace":["opportunities","_body","Content","align"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["opportunities","_body","Content","backgroundColor"],"searchable":true,"uid":false}],"namespace":["opportunities","_body","Content"]},{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["opportunities","_body","ContentCard","prose"],"searchable":true,"uid":false},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["opportunities","_body","ContentCard","centerAlignedText"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["eventsIndex","sidebarBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["eventsIndex","sidebarBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["eventsIndex","sidebarBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["eventsIndex","sidebarBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["eventsIndex","sidebarBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["eventsIndex","sidebarBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["eventsIndex","sidebarBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["eventsIndex","sidebarBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["eventsIndex","sidebarBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["eventsIndex","sidebarBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["eventsIndex","preface","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["eventsIndex","sidebarBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["eventsIndex","sidebarBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["eventsIndex","sidebarBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["eventsIndex","sidebarBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["eventsIndex","sidebarBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["eventsIndex","preface","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["eventsIndex","sidebarBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["eventsIndex","sidebarBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["eventsIndex","sidebarBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["eventsIndex","sidebarBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["eventsIndex","sidebarBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["eventsIndex","sidebarBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["eventsIndex","sidebarBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["eventsIndex","preface","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["eventsIndex","sidebarBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["eventsIndex","sidebarBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["eventsIndex","afterEvents","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["eventsIndex","afterEvents","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["eventsIndex","afterEvents","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["eventsIndex","afterEvents","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["eventsIndex","afterEvents","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["eventsIndex","sidebarBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["eventsIndex","preface","ContentCard","content","ColorBlock"]}],"namespace":["opportunities","_body","ContentCard","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["opportunities","_body","ContentCard"]},{"name":"CustomDownloadButton","label":"Custom Download Button","ui":{"previewSrc":"/images/thumbs/tina/custom-download-button.jpg"},"fields":[{"type":"string","label":"Text","name":"btnText","namespace":["opportunities","_body","CustomDownloadButton","btnText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"btnLink","namespace":["opportunities","_body","CustomDownloadButton","btnLink"],"searchable":true,"uid":false}],"namespace":["opportunities","_body","CustomDownloadButton"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["opportunities","_body","CustomImage","src"],"searchable":false,"uid":false},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["opportunities","_body","CustomImage","altText"],"searchable":true,"uid":false},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["opportunities","_body","CustomImage","alignment"],"searchable":true,"uid":false},{"type":"number","label":"Height","name":"height","required":true,"namespace":["opportunities","_body","CustomImage","height"],"searchable":true,"uid":false},{"type":"number","label":"Width","name":"width","required":true,"namespace":["opportunities","_body","CustomImage","width"],"searchable":true,"uid":false},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["opportunities","_body","CustomImage","link"],"searchable":true,"uid":false},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["opportunities","_body","CustomImage","customClass"],"searchable":true,"uid":false},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["opportunities","_body","CustomImage","caption"],"searchable":true,"uid":false},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["opportunities","_body","CustomImage","captionColor"],"searchable":true,"uid":false},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["opportunities","_body","CustomImage","sizes"],"searchable":true,"uid":false}],"namespace":["opportunities","_body","CustomImage"]},{"name":"DomainFromQuery","label":"Domain from query","ui":{"previewSrc":"/images/thumbs/tina/domain-from-query.jpg"},"fields":[{"name":"title","label":"Title","type":"string","description":"This is a H1 heading","namespace":["opportunities","_body","DomainFromQuery","title"],"searchable":true,"uid":false},{"name":"showDomain","label":"Show domain name","type":"boolean","description":"Query param in URL must have key of 'domain'","namespace":["opportunities","_body","DomainFromQuery","showDomain"],"searchable":true,"uid":false}],"namespace":["opportunities","_body","DomainFromQuery"]},{"name":"DownloadBlock","label":"Download Block","ui":{"previewSrc":"/images/thumbs/tina/download-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["opportunities","_body","DownloadBlock","title"],"searchable":true,"uid":false},{"type":"object","label":"Downloads","name":"downloads","ui":{},"list":true,"fields":[{"type":"string","label":"Header","name":"header","namespace":["eventsIndex","preface","DownloadBlock","downloads","header"]},{"type":"image","label":"Image","name":"img","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","img","uploadDir"]},"namespace":["eventsIndex","preface","DownloadBlock","downloads","img"]},{"type":"string","label":"Image Background","name":"imgBackground","options":["black","grey","white","darkgrey","darkgreen"],"namespace":["eventsIndex","preface","DownloadBlock","downloads","imgBackground"]},{"type":"string","label":"First Link Text","name":"firstLinkText","description":"Defaults to PNG","namespace":["eventsIndex","preface","DownloadBlock","downloads","firstLinkText"]},{"type":"image","label":"First Link","name":"firstLink","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","firstLink","uploadDir"]},"namespace":["eventsIndex","preface","DownloadBlock","downloads","firstLink"]},{"type":"string","label":"Second Link Text","name":"secondLinkText","description":"Defaults to PDF","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","secondLinkText","uploadDir"]},"namespace":["eventsIndex","preface","DownloadBlock","downloads","secondLinkText"]},{"type":"image","label":"Second Link","name":"secondLink","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","secondLink","uploadDir"]},"namespace":["eventsIndex","preface","DownloadBlock","downloads","secondLink"]}],"namespace":["opportunities","_body","DownloadBlock","downloads"],"searchable":true,"uid":false},{"type":"boolean","label":"Bottom border","name":"bottomBorder","namespace":["opportunities","_body","DownloadBlock","bottomBorder"],"searchable":true,"uid":false}],"namespace":["opportunities","_body","DownloadBlock"]},{"name":"DynamicColumns","label":"Dynamic Column Layout","fields":[{"type":"rich-text","label":"Column text body","name":"colBody","required":true,"namespace":["opportunities","_body","DynamicColumns","colBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"number","label":"Number of columns","name":"colCount","required":true,"ui":{},"namespace":["opportunities","_body","DynamicColumns","colCount"],"searchable":true,"uid":false}],"namespace":["opportunities","_body","DynamicColumns"]},{"name":"EventBooking","label":"Events Booking","ui":{"previewSrc":"/images/thumbs/tina/events-booking.jpg"},"fields":[{"type":"number","label":"Duration (In Days)","name":"eventDurationInDays","required":true,"namespace":["opportunities","_body","EventBooking","eventDurationInDays"],"searchable":true,"uid":false},{"type":"number","label":"Price","name":"price","required":true,"namespace":["opportunities","_body","EventBooking","price"],"searchable":true,"uid":false},{"type":"number","label":"Discount Price","name":"discountPrice","namespace":["opportunities","_body","EventBooking","discountPrice"],"searchable":true,"uid":false},{"type":"string","name":"gstText","label":"Select GST Option","options":["inc GST","+ GST"],"required":true,"namespace":["opportunities","_body","EventBooking","gstText"],"searchable":true,"uid":false},{"type":"string","label":"Discount Note","name":"discountNote","namespace":["opportunities","_body","EventBooking","discountNote"],"searchable":true,"uid":false},{"type":"object","label":"Event","name":"eventList","ui":{},"list":true,"fields":[{"type":"string","label":"City","name":"city","namespace":["eventsIndex","preface","EventBooking","eventList","city"]},{"type":"datetime","label":"Start Date","name":"date","ui":{},"namespace":["eventsIndex","preface","EventBooking","eventList","date"]},{"type":"string","label":"Booking URL","name":"bookingURL","namespace":["eventsIndex","preface","EventBooking","eventList","bookingURL"]},{"type":"reference","label":"Location","name":"location","collections":["locations"],"namespace":["eventsIndex","preface","EventBooking","eventList","location"]}],"namespace":["opportunities","_body","EventBooking","eventList"],"searchable":true,"uid":false}],"namespace":["opportunities","_body","EventBooking"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["eventsIndex","sidebarBody","EventLink","content","Flag","country"]}],"namespace":["eventsIndex","preface","EventLink","content","Flag"]}],"namespace":["opportunities","_body","EventLink","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Link","name":"link","namespace":["opportunities","_body","EventLink","link"],"searchable":true,"uid":false},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["opportunities","_body","EventLink","eventThumbnail"],"searchable":false,"uid":false},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["opportunities","_body","EventLink","thumbnailAlt"],"searchable":true,"uid":false}],"namespace":["opportunities","_body","EventLink"]},{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["opportunities","_body","Flag","country"],"searchable":true,"uid":false}],"namespace":["opportunities","_body","Flag"]},{"name":"FixedColumns","label":"Fixed Column Layout (2 columns)","ui":{"previewSrc":"/images/thumbs/tina/fixed-columns.jpg"},"fields":[{"type":"rich-text","label":"Header Section (Optional)","name":"headerSection","namespace":["opportunities","_body","FixedColumns","headerSection"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"First column text","name":"firstColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["eventsIndex","sidebarBody","FixedColumns","firstColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["eventsIndex","sidebarBody","FixedColumns","firstColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["events","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["events","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["events","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["events","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["events","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["events","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["events","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["events","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["events","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["events","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["eventsIndex","afterEvents","FixedColumns","firstColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["events","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["events","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["events","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["events","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["events","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["eventsIndex","afterEvents","FixedColumns","firstColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["events","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["events","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["events","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["events","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["events","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["events","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["events","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["eventsIndex","afterEvents","FixedColumns","firstColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["events","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["events","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["events","footer","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["events","footer","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["events","footer","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["events","footer","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["events","footer","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["events","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["eventsIndex","afterEvents","FixedColumns","firstColBody","ContentCard","content","ColorBlock"]}],"namespace":["eventsIndex","sidebarBody","FixedColumns","firstColBody","ContentCard","content"]}],"namespace":["eventsIndex","preface","FixedColumns","firstColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["eventsIndex","sidebarBody","FixedColumns","firstColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["eventsIndex","sidebarBody","FixedColumns","firstColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["eventsIndex","sidebarBody","FixedColumns","firstColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["eventsIndex","sidebarBody","FixedColumns","firstColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["eventsIndex","sidebarBody","FixedColumns","firstColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["eventsIndex","sidebarBody","FixedColumns","firstColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["eventsIndex","sidebarBody","FixedColumns","firstColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["eventsIndex","sidebarBody","FixedColumns","firstColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["eventsIndex","sidebarBody","FixedColumns","firstColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["eventsIndex","sidebarBody","FixedColumns","firstColBody","CustomImage","sizes"]}],"namespace":["eventsIndex","preface","FixedColumns","firstColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["events","_body","FixedColumns","firstColBody","EventLink","content","Flag","country"]}],"namespace":["eventsIndex","afterEvents","FixedColumns","firstColBody","EventLink","content","Flag"]}],"namespace":["eventsIndex","sidebarBody","FixedColumns","firstColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["eventsIndex","sidebarBody","FixedColumns","firstColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["eventsIndex","sidebarBody","FixedColumns","firstColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["eventsIndex","sidebarBody","FixedColumns","firstColBody","EventLink","thumbnailAlt"]}],"namespace":["eventsIndex","preface","FixedColumns","firstColBody","EventLink"]}],"namespace":["opportunities","_body","FixedColumns","firstColBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"Second column text","name":"secondColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["eventsIndex","sidebarBody","FixedColumns","secondColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["eventsIndex","sidebarBody","FixedColumns","secondColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["events","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["events","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["events","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["events","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["events","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["events","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["events","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["events","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["events","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["events","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["eventsIndex","afterEvents","FixedColumns","secondColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["events","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["events","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["events","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["events","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["events","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["eventsIndex","afterEvents","FixedColumns","secondColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["events","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["events","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["events","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["events","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["events","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["events","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["events","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["eventsIndex","afterEvents","FixedColumns","secondColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["events","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["events","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["events","footer","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["events","footer","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["events","footer","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["events","footer","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["events","footer","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["events","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["eventsIndex","afterEvents","FixedColumns","secondColBody","ContentCard","content","ColorBlock"]}],"namespace":["eventsIndex","sidebarBody","FixedColumns","secondColBody","ContentCard","content"]}],"namespace":["eventsIndex","preface","FixedColumns","secondColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["eventsIndex","sidebarBody","FixedColumns","secondColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["eventsIndex","sidebarBody","FixedColumns","secondColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["eventsIndex","sidebarBody","FixedColumns","secondColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["eventsIndex","sidebarBody","FixedColumns","secondColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["eventsIndex","sidebarBody","FixedColumns","secondColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["eventsIndex","sidebarBody","FixedColumns","secondColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["eventsIndex","sidebarBody","FixedColumns","secondColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["eventsIndex","sidebarBody","FixedColumns","secondColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["eventsIndex","sidebarBody","FixedColumns","secondColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["eventsIndex","sidebarBody","FixedColumns","secondColBody","CustomImage","sizes"]}],"namespace":["eventsIndex","preface","FixedColumns","secondColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["events","_body","FixedColumns","secondColBody","EventLink","content","Flag","country"]}],"namespace":["eventsIndex","afterEvents","FixedColumns","secondColBody","EventLink","content","Flag"]}],"namespace":["eventsIndex","sidebarBody","FixedColumns","secondColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["eventsIndex","sidebarBody","FixedColumns","secondColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["eventsIndex","sidebarBody","FixedColumns","secondColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["eventsIndex","sidebarBody","FixedColumns","secondColBody","EventLink","thumbnailAlt"]}],"namespace":["eventsIndex","preface","FixedColumns","secondColBody","EventLink"]}],"namespace":["opportunities","_body","FixedColumns","secondColBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["opportunities","_body","FixedColumns"]},{"name":"FixedTabsLayout","label":"Fixed Tabs Layout","ui":{"previewSrc":"/images/thumbs/tina/fixed-tabs-layout.jpg"},"fields":[{"type":"string","name":"firstTab","label":"First Tab","namespace":["opportunities","_body","FixedTabsLayout","firstTab"],"searchable":true,"uid":false},{"type":"rich-text","name":"firstHeading","label":"First Heading","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstHeading","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstHeading","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstHeading","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstHeading","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstHeading","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstHeading","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstHeading","VideoEmbed","duration"]}],"namespace":["eventsIndex","preface","FixedTabsLayout","firstHeading","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstHeading","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstHeading","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstHeading","BookingButton","buttonSubtitle"]}],"namespace":["eventsIndex","preface","FixedTabsLayout","firstHeading","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstHeading","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstHeading","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstHeading","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstHeading","ExpertBlock","expertList","skills"]}],"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstHeading","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstHeading","ExpertBlock","link","url"]}],"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstHeading","ExpertBlock","link"]}],"namespace":["eventsIndex","preface","FixedTabsLayout","firstHeading","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["events","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["events","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["events","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["eventsIndex","preface","FixedTabsLayout","firstHeading","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstHeading","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstHeading","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstHeading","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstHeading","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstHeading","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstHeading","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstHeading","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstHeading","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstHeading","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstHeading","CustomImage","sizes"]}],"namespace":["eventsIndex","preface","FixedTabsLayout","firstHeading","CustomImage"]}],"namespace":["opportunities","_body","FixedTabsLayout","firstHeading"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","name":"firstBody","label":"First Body","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstBody","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstBody","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstBody","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstBody","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstBody","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstBody","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstBody","VideoEmbed","duration"]}],"namespace":["eventsIndex","preface","FixedTabsLayout","firstBody","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstBody","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstBody","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstBody","BookingButton","buttonSubtitle"]}],"namespace":["eventsIndex","preface","FixedTabsLayout","firstBody","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstBody","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstBody","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstBody","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstBody","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstBody","ExpertBlock","expertList","skills"]}],"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstBody","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstBody","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstBody","ExpertBlock","link","url"]}],"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstBody","ExpertBlock","link"]}],"namespace":["eventsIndex","preface","FixedTabsLayout","firstBody","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["events","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["events","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["events","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["eventsIndex","preface","FixedTabsLayout","firstBody","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstBody","CustomImage","sizes"]}],"namespace":["eventsIndex","preface","FixedTabsLayout","firstBody","CustomImage"]}],"namespace":["opportunities","_body","FixedTabsLayout","firstBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","name":"secondTab","label":"Second Tab","namespace":["opportunities","_body","FixedTabsLayout","secondTab"],"searchable":true,"uid":false},{"type":"rich-text","name":"secondHeading","label":"Second Heading","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondHeading","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondHeading","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondHeading","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondHeading","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondHeading","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondHeading","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondHeading","VideoEmbed","duration"]}],"namespace":["eventsIndex","preface","FixedTabsLayout","secondHeading","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondHeading","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondHeading","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondHeading","BookingButton","buttonSubtitle"]}],"namespace":["eventsIndex","preface","FixedTabsLayout","secondHeading","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondHeading","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondHeading","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondHeading","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondHeading","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondHeading","ExpertBlock","expertList","skills"]}],"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondHeading","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondHeading","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondHeading","ExpertBlock","link","url"]}],"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondHeading","ExpertBlock","link"]}],"namespace":["eventsIndex","preface","FixedTabsLayout","secondHeading","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["events","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["events","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["events","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["eventsIndex","preface","FixedTabsLayout","secondHeading","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondHeading","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondHeading","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondHeading","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondHeading","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondHeading","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondHeading","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondHeading","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondHeading","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondHeading","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondHeading","CustomImage","sizes"]}],"namespace":["eventsIndex","preface","FixedTabsLayout","secondHeading","CustomImage"]}],"namespace":["opportunities","_body","FixedTabsLayout","secondHeading"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","name":"secondBody","label":"Second Body","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondBody","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondBody","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondBody","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondBody","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondBody","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondBody","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondBody","VideoEmbed","duration"]}],"namespace":["eventsIndex","preface","FixedTabsLayout","secondBody","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondBody","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondBody","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondBody","BookingButton","buttonSubtitle"]}],"namespace":["eventsIndex","preface","FixedTabsLayout","secondBody","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondBody","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondBody","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondBody","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondBody","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondBody","ExpertBlock","expertList","skills"]}],"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondBody","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondBody","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondBody","ExpertBlock","link","url"]}],"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondBody","ExpertBlock","link"]}],"namespace":["eventsIndex","preface","FixedTabsLayout","secondBody","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["events","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["events","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["events","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["eventsIndex","preface","FixedTabsLayout","secondBody","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondBody","CustomImage","sizes"]}],"namespace":["eventsIndex","preface","FixedTabsLayout","secondBody","CustomImage"]}],"namespace":["opportunities","_body","FixedTabsLayout","secondBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["opportunities","_body","FixedTabsLayout"]},{"label":"Google Maps","name":"GoogleMaps","ui":{"previewSrc":"/images/thumbs/tina/google-maps.jpg"},"fields":[{"type":"string","label":"URL","name":"embedUrl","required":true,"namespace":["opportunities","_body","GoogleMaps","embedUrl"],"searchable":true,"uid":false},{"type":"string","label":"Width","name":"embedWidth","namespace":["opportunities","_body","GoogleMaps","embedWidth"],"searchable":true,"uid":false},{"type":"string","label":"Height","name":"embedHeight","namespace":["opportunities","_body","GoogleMaps","embedHeight"],"searchable":true,"uid":false}],"namespace":["opportunities","_body","GoogleMaps"]},{"label":"Grid Layout","name":"GridLayout","ui":{"previewSrc":"/images/thumbs/tina/grid-layout.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["opportunities","_body","GridLayout","title"],"searchable":true,"uid":false},{"type":"object","list":true,"label":"Grid Items","name":"grids","ui":{},"fields":[{"type":"string","label":"Grid Title","name":"gridTitle","namespace":["eventsIndex","preface","GridLayout","grids","gridTitle"]},{"type":"boolean","label":"Show Grid Title","name":"showGridTitle","namespace":["eventsIndex","preface","GridLayout","grids","showGridTitle"]},{"type":"boolean","label":"Centered Grid Title","name":"centeredGridTitle","namespace":["eventsIndex","preface","GridLayout","grids","centeredGridTitle"]},{"type":"boolean","label":"Show Header Divider","name":"showHeaderDivider","namespace":["eventsIndex","preface","GridLayout","grids","showHeaderDivider"]},{"type":"boolean","label":"Offset Grid Start","name":"offsetGridStart","namespace":["eventsIndex","preface","GridLayout","grids","offsetGridStart"]},{"type":"object","label":"Blocks","name":"blocks","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["eventsIndex","sidebarBody","GridLayout","grids","blocks","title"]},{"type":"boolean","label":"Show Title","name":"showTitle","namespace":["eventsIndex","sidebarBody","GridLayout","grids","blocks","showTitle"]},{"type":"image","label":"Image","name":"image","uploadDir":{"namespace":["page","beforeBody","GridLayout","grids","blocks","image","uploadDir"]},"namespace":["eventsIndex","sidebarBody","GridLayout","grids","blocks","image"]},{"type":"image","label":"Related Image","name":"relatedImage","uploadDir":{"namespace":["page","beforeBody","GridLayout","grids","blocks","relatedImage","uploadDir"]},"namespace":["eventsIndex","sidebarBody","GridLayout","grids","blocks","relatedImage"]},{"type":"rich-text","name":"linkContent","label":"Link Content","templates":[{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["events","_body","GridLayout","grids","blocks","linkContent","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["events","_body","GridLayout","grids","blocks","linkContent","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["events","_body","GridLayout","grids","blocks","linkContent","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["events","_body","GridLayout","grids","blocks","linkContent","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["events","_body","GridLayout","grids","blocks","linkContent","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["events","_body","GridLayout","grids","blocks","linkContent","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["events","_body","GridLayout","grids","blocks","linkContent","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["events","_body","GridLayout","grids","blocks","linkContent","UtilityButton","openInNewTab"]}],"namespace":["eventsIndex","afterEvents","GridLayout","grids","blocks","linkContent","UtilityButton"]}],"namespace":["eventsIndex","sidebarBody","GridLayout","grids","blocks","linkContent"]}],"namespace":["eventsIndex","preface","GridLayout","grids","blocks"]}],"namespace":["opportunities","_body","GridLayout","grids"],"searchable":true,"uid":false}],"namespace":["opportunities","_body","GridLayout"]},{"name":"Hero","label":"Hero","ui":{"previewSrc":"/blocks/hero.png","defaultItem":{"tagline":"Here's some text above the other text","headline":"This Big Text is Totally Awesome","text":"Phasellus scelerisque, libero eu finibus rutrum, risus risus accumsan libero, nec molestie urna dui a leo."}},"fields":[{"type":"string","label":"Tagline","name":"tagline","namespace":["opportunities","_body","Hero","tagline"],"searchable":true,"uid":false},{"type":"string","label":"Headline","name":"headline","namespace":["opportunities","_body","Hero","headline"],"searchable":true,"uid":false},{"label":"Text","name":"text","type":"rich-text","namespace":["opportunities","_body","Hero","text"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"label":"Actions","name":"actions","type":"object","list":true,"ui":{"defaultItem":{"label":"Action Label","type":"button","icon":true,"link":"/"}},"fields":[{"label":"Label","name":"label","type":"string","namespace":["eventsIndex","preface","Hero","actions","label"]},{"label":"Type","name":"type","type":"string","options":[{"label":"Button","value":"button"},{"label":"Link","value":"link"}],"namespace":["eventsIndex","preface","Hero","actions","type"]},{"label":"Icon","name":"icon","type":"boolean","namespace":["eventsIndex","preface","Hero","actions","icon"]},{"label":"Link","name":"link","type":"string","namespace":["eventsIndex","preface","Hero","actions","link"]}],"namespace":["opportunities","_body","Hero","actions"],"searchable":true,"uid":false},{"type":"object","label":"Image","name":"image","fields":[{"name":"src","label":"Image Source","type":"image","namespace":["eventsIndex","preface","Hero","image","src"]},{"name":"alt","label":"Alt Text","type":"string","namespace":["eventsIndex","preface","Hero","image","alt"]}],"namespace":["opportunities","_body","Hero","image"],"searchable":true,"uid":false},{"type":"string","label":"Color","name":"color","options":[{"label":"Default","value":"default"},{"label":"Tint","value":"tint"},{"label":"Primary","value":"primary"}],"namespace":["opportunities","_body","Hero","color"],"searchable":true,"uid":false}],"namespace":["opportunities","_body","Hero"]},{"name":"HorizontalCard","label":"Horizontal Card","ui":{"previewSrc":"/images/thumbs/tina/horizontal-card.jpg"},"fields":[{"type":"object","label":"Cards","name":"cardList","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["eventsIndex","preface","HorizontalCard","cardList","title"]},{"type":"rich-text","label":"Content","name":"content","namespace":["eventsIndex","preface","HorizontalCard","cardList","content"]},{"type":"image","label":"Thumbnail","name":"thumbnail","uploadDir":{"namespace":["page","beforeBody","HorizontalCard","cardList","thumbnail","uploadDir"]},"namespace":["eventsIndex","preface","HorizontalCard","cardList","thumbnail"]},{"type":"string","label":"Link","name":"link","namespace":["eventsIndex","preface","HorizontalCard","cardList","link"]}],"namespace":["opportunities","_body","HorizontalCard","cardList"],"searchable":true,"uid":false},{"type":"object","label":"Button","name":"button","fields":[{"type":"string","label":"Text","name":"text","namespace":["eventsIndex","preface","HorizontalCard","button","text"]},{"type":"string","label":"Link","name":"link","namespace":["eventsIndex","preface","HorizontalCard","button","link"]}],"namespace":["opportunities","_body","HorizontalCard","button"],"searchable":true,"uid":false}],"namespace":["opportunities","_body","HorizontalCard"]},{"name":"InternalCarousel","label":"Internal Carousel","ui":{"previewSrc":"/images/thumbs/tina/internal-carousel.jpg"},"fields":[{"label":"Images","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Image description"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["eventsIndex","preface","InternalCarousel","items","label"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","InternalCarousel","items","imgSrc","uploadDir"]},"namespace":["eventsIndex","preface","InternalCarousel","items","imgSrc"]}],"namespace":["opportunities","_body","InternalCarousel","items"],"searchable":true,"uid":false},{"type":"string","label":"Header","name":"header","namespace":["opportunities","_body","InternalCarousel","header"],"searchable":true,"uid":false},{"type":"rich-text","label":"Text","name":"paragraph","isBody":false,"namespace":["opportunities","_body","InternalCarousel","paragraph"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Website","name":"website","namespace":["opportunities","_body","InternalCarousel","website"],"searchable":true,"uid":false},{"type":"object","label":"Technologies","name":"technologies","list":true,"ui":{},"fields":[{"type":"string","label":"Name","name":"name","namespace":["eventsIndex","preface","InternalCarousel","technologies","name"]}],"namespace":["opportunities","_body","InternalCarousel","technologies"],"searchable":true,"uid":false},{"type":"string","label":"Case Study","name":"caseStudyUrl","namespace":["opportunities","_body","InternalCarousel","caseStudyUrl"],"searchable":true,"uid":false},{"type":"string","label":"Video URL","name":"videoUrl","namespace":["opportunities","_body","InternalCarousel","videoUrl"],"searchable":true,"uid":false}],"namespace":["opportunities","_body","InternalCarousel"]},{"label":"Join As Presenter","name":"joinAsPresenter","fields":[{"label":"Learn More Link","name":"link","type":"string","namespace":["opportunities","_body","joinAsPresenter","link"],"searchable":true,"uid":false},{"label":"Image","name":"img","type":"image","namespace":["opportunities","_body","joinAsPresenter","img"],"searchable":false,"uid":false}],"namespace":["opportunities","_body","joinAsPresenter"]},{"label":"Join Github","name":"joinGithub","ui":{"previewSrc":"/images/thumbs/tina/join-github.jpg"},"fields":[{"label":"Title","name":"title","type":"string","namespace":["opportunities","_body","joinGithub","title"],"searchable":true,"uid":false},{"label":"Join Github Link","name":"link","type":"string","namespace":["opportunities","_body","joinGithub","link"],"searchable":true,"uid":false}],"namespace":["opportunities","_body","joinGithub"]},{"name":"JotFormEmbed","label":"JotForm Embed","ui":{"previewSrc":"/images/thumbs/tina/jotform-embed.jpg"},"fields":[{"type":"string","name":"jotFormId","label":"JotForm Id","required":true,"namespace":["opportunities","_body","JotFormEmbed","jotFormId"],"searchable":true,"uid":false},{"type":"string","label":"Button Text","name":"buttonText","namespace":["opportunities","_body","JotFormEmbed","buttonText"],"searchable":true,"uid":false},{"type":"string","name":"containerClass","label":"Container Class","namespace":["opportunities","_body","JotFormEmbed","containerClass"],"searchable":true,"uid":false},{"type":"string","label":"Button Class","name":"buttonClass","namespace":["opportunities","_body","JotFormEmbed","buttonClass"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","namespace":["opportunities","_body","JotFormEmbed","animated"],"searchable":true,"uid":false}],"namespace":["opportunities","_body","JotFormEmbed"]},{"name":"LatestTech","label":"Latest Tech","ui":{"previewSrc":"/images/thumbs/tina/latest-tech.jpg"},"fields":[{"type":"reference","description":"Select a config file including a set of badges","collections":["userGroupGlobal"],"label":"Badges","name":"badges","namespace":["opportunities","_body","LatestTech","badges"],"searchable":true,"uid":false}],"namespace":["opportunities","_body","LatestTech"]},{"name":"LocationBlock","label":"Locations","ui":{"previewSrc":"/images/thumbs/tina/locations.jpg"},"fields":[{"type":"string","name":"title","label":"Title","namespace":["opportunities","_body","LocationBlock","title"],"searchable":true,"uid":false},{"type":"object","label":"Location List","name":"locationList","list":true,"ui":{},"fields":[{"type":"reference","collections":["locations"],"label":"Location","name":"location","namespace":["eventsIndex","preface","LocationBlock","locationList","location"]}],"namespace":["opportunities","_body","LocationBlock","locationList"],"searchable":true,"uid":false},{"type":"object","name":"chapelWebsite","label":"Chapel Website","fields":[{"type":"string","name":"title","label":"Text","namespace":["eventsIndex","preface","LocationBlock","chapelWebsite","title"]},{"type":"string","name":"URL","label":"URL","namespace":["eventsIndex","preface","LocationBlock","chapelWebsite","URL"]}],"namespace":["opportunities","_body","LocationBlock","chapelWebsite"],"searchable":true,"uid":false}],"namespace":["opportunities","_body","LocationBlock"]},{"name":"NewslettersTable","label":"Newsletters Table","ui":{"previewSrc":"/images/thumbs/tina/newsletters-table.jpg"},"fields":[{"type":"string","label":"Header text","name":"headerText","namespace":["opportunities","_body","NewslettersTable","headerText"],"searchable":true,"uid":false}],"namespace":["opportunities","_body","NewslettersTable"]},{"label":"Organizer","name":"organizer","fields":[{"type":"image","label":"Profile Image","name":"profileImg","namespace":["opportunities","_body","organizer","profileImg"],"searchable":false,"uid":false},{"type":"string","label":"Profile Link","name":"profileLink","namespace":["opportunities","_body","organizer","profileLink"],"searchable":true,"uid":false},{"type":"string","label":"Name","name":"name","namespace":["opportunities","_body","organizer","name"],"searchable":true,"uid":false},{"type":"string","label":"Position","name":"position","namespace":["opportunities","_body","organizer","position"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","namespace":["opportunities","_body","organizer","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["opportunities","_body","organizer"]},{"label":"Payment Block","name":"paymentBlock","ui":{"previewSrc":"/images/thumbs/tina/payment-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["opportunities","_body","paymentBlock","title"],"searchable":true,"uid":false},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["opportunities","_body","paymentBlock","subTitle"],"searchable":true,"uid":false},{"type":"reference","label":"Payment Links","name":"payments","collections":["paymentDetails"],"namespace":["opportunities","_body","paymentBlock","payments"],"searchable":true,"uid":false},{"type":"rich-text","label":"Footer","name":"footer","namespace":["opportunities","_body","paymentBlock","footer"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"image","label":"Credit Cards Image","name":"creditImgSrc","namespace":["opportunities","_body","paymentBlock","creditImgSrc"],"searchable":false,"uid":false},{"type":"string","label":"Alt Text","name":"altTxt","namespace":["opportunities","_body","paymentBlock","altTxt"],"searchable":true,"uid":false}],"namespace":["opportunities","_body","paymentBlock"]},{"name":"PresenterBlock","label":"Presenters","ui":{"previewSrc":"/images/thumbs/tina/presenters.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["opportunities","_body","PresenterBlock","header"],"searchable":true,"uid":false},{"type":"object","name":"presenterList","label":"Presenters","list":true,"ui":{},"fields":[{"type":"reference","name":"presenter","label":"Presenters","collections":["presenter"],"namespace":["eventsIndex","preface","PresenterBlock","presenterList","presenter"]}],"namespace":["opportunities","_body","PresenterBlock","presenterList"],"searchable":true,"uid":false},{"type":"object","label":"Other Events","name":"otherEvent","fields":[{"type":"string","label":"Title","name":"title","namespace":["eventsIndex","preface","PresenterBlock","otherEvent","title"]},{"type":"string","label":"URL","name":"eventURL","namespace":["eventsIndex","preface","PresenterBlock","otherEvent","eventURL"]}],"namespace":["opportunities","_body","PresenterBlock","otherEvent"],"searchable":true,"uid":false}],"namespace":["opportunities","_body","PresenterBlock"]},{"label":"Recurring Event","name":"RecurringEvent","ui":{"previewSrc":"/images/thumbs/tina/recurring-event.jpg"},"fields":[{"type":"string","label":"Apply Link Redirect","name":"applyLinkRedirect","namespace":["opportunities","_body","RecurringEvent","applyLinkRedirect"],"searchable":true,"uid":false},{"type":"string","label":"Day","name":"day","options":[{"label":"Monday","value":"monday"},{"label":"Tuesday","value":"tuesday"},{"label":"Wednesday","value":"wednesday"},{"label":"Thursday","value":"thursday"},{"label":"Friday","value":"friday"},{"label":"Saturday","value":"saturday"},{"label":"Sunday","value":"sunday"}],"required":true,"namespace":["opportunities","_body","RecurringEvent","day"],"searchable":true,"uid":false}],"namespace":["opportunities","_body","RecurringEvent"]},{"name":"SectionHeader","label":"Section Header","ui":{"previewSrc":"/images/thumbs/tina/section-header.jpg"},"fields":[{"type":"string","label":"Header Text","name":"headerText","namespace":["opportunities","_body","SectionHeader","headerText"],"searchable":true,"uid":false}],"namespace":["opportunities","_body","SectionHeader"]},{"name":"ServiceCards","label":"Service Cards","ui":{"previewSrc":"/images/thumbs/tina/services-cards.jpg"},"fields":[{"type":"string","label":"Big Cards Label","name":"bigCardsLabel","namespace":["opportunities","_body","ServiceCards","bigCardsLabel"],"searchable":true,"uid":false},{"label":"Big Cards","name":"bigCards","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["eventsIndex","preface","ServiceCards","bigCards","title"]},{"type":"string","label":"Description","component":"textarea","name":"description","namespace":["eventsIndex","preface","ServiceCards","bigCards","description"]},{"type":"string","label":"URL","name":"link","namespace":["eventsIndex","preface","ServiceCards","bigCards","link"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Red","value":"red"},{"label":"Light Gray","value":"lightgray"},{"label":"Medium Gray","value":"mediumgray"},{"label":"Dark Gray","value":"darkgray"}],"namespace":["eventsIndex","preface","ServiceCards","bigCards","color"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","ServiceCards","bigCards","imgSrc","uploadDir"]},"namespace":["eventsIndex","preface","ServiceCards","bigCards","imgSrc"]}],"namespace":["opportunities","_body","ServiceCards","bigCards"],"searchable":true,"uid":false},{"type":"string","label":"Small Cards Label","name":"smallCardsLabel","namespace":["opportunities","_body","ServiceCards","smallCardsLabel"],"searchable":true,"uid":false},{"label":"Small Cards","name":"smallCards","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["eventsIndex","preface","ServiceCards","smallCards","title"]},{"type":"string","label":"URL","name":"link","namespace":["eventsIndex","preface","ServiceCards","smallCards","link"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Red","value":"red"},{"label":"Light Gray","value":"lightgray"},{"label":"Medium Gray","value":"mediumgray"},{"label":"Dark Gray","value":"darkgray"}],"namespace":["eventsIndex","preface","ServiceCards","smallCards","color"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","ServiceCards","smallCards","imgSrc","uploadDir"]},"namespace":["eventsIndex","preface","ServiceCards","smallCards","imgSrc"]},{"type":"boolean","label":"External Page","description":"Select this if the link is not part of the website. This includes SSW.Rules, and SSW.People links","name":"isExternal","namespace":["eventsIndex","preface","ServiceCards","smallCards","isExternal"]}],"namespace":["opportunities","_body","ServiceCards","smallCards"],"searchable":true,"uid":false},{"label":"Links","name":"links","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["eventsIndex","preface","ServiceCards","links","label"]},{"type":"string","label":"URL","name":"link","namespace":["eventsIndex","preface","ServiceCards","links","link"]}],"namespace":["opportunities","_body","ServiceCards","links"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["opportunities","_body","ServiceCards","backgroundColor"],"searchable":true,"uid":false}],"namespace":["opportunities","_body","ServiceCards"]},{"label":"Table Layout","name":"TableLayout","ui":{"previewSrc":"/images/thumbs/tina/table-layout.jpg"},"fields":[{"label":"Table Style","name":"tableStyle","type":"string","options":["none","basicBorder","styled","benefits"],"namespace":["opportunities","_body","TableLayout","tableStyle"],"searchable":true,"uid":false},{"label":"First column bolded + left aligned","name":"firstColBold","type":"boolean","required":false,"namespace":["opportunities","_body","TableLayout","firstColBold"],"searchable":true,"uid":false},{"type":"string","label":"Table Headers","name":"headers","list":true,"namespace":["opportunities","_body","TableLayout","headers"],"searchable":true,"uid":false},{"type":"object","label":"Rows","name":"rows","list":true,"fields":[{"type":"object","label":"Cells","name":"cells","list":true,"fields":[{"type":"string","label":"Value","name":"cellValue","required":true,"component":{"namespace":["page","beforeBody","TableLayout","rows","cells","cellValue",""]},"namespace":["eventsIndex","sidebarBody","TableLayout","rows","cells","cellValue"]}],"ui":{},"namespace":["eventsIndex","preface","TableLayout","rows","cells"]},{"type":"boolean","label":"Is Heading","name":"isHeader","required":false,"namespace":["eventsIndex","preface","TableLayout","rows","isHeader"]}],"ui":{},"namespace":["opportunities","_body","TableLayout","rows"],"searchable":true,"uid":false}],"namespace":["opportunities","_body","TableLayout"]},{"name":"TestimonialsList","label":"Testimonials List","ui":{"previewSrc":"/images/thumbs/tina/testimonials.jpg"},"fields":[{"type":"object","label":"Exclude Categories","name":"excludedCategories","ui":{},"list":true,"fields":[{"type":"reference","label":"Category Name","name":"categoryName","collections":["testimonialCategories"],"namespace":["eventsIndex","preface","TestimonialsList","excludedCategories","categoryName"]}],"namespace":["opportunities","_body","TestimonialsList","excludedCategories"],"searchable":true,"uid":false}],"namespace":["opportunities","_body","TestimonialsList"]},{"label":"Training Information","name":"TrainingInformation","ui":{"previewSrc":"/images/thumbs/tina/training-information.jpg"},"fields":[{"type":"object","label":"Training Information Items","name":"trainingInformationItems","list":true,"fields":[{"type":"string","label":"Header","name":"header","namespace":["eventsIndex","preface","TrainingInformation","trainingInformationItems","header"]},{"type":"rich-text","label":"Body","name":"body","templates":[{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["eventsIndex","afterEvents","TrainingInformation","trainingInformationItems","body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["eventsIndex","afterEvents","TrainingInformation","trainingInformationItems","body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["eventsIndex","afterEvents","TrainingInformation","trainingInformationItems","body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["eventsIndex","afterEvents","TrainingInformation","trainingInformationItems","body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["eventsIndex","afterEvents","TrainingInformation","trainingInformationItems","body","VerticalListItem","afterBody"]}],"namespace":["eventsIndex","sidebarBody","TrainingInformation","trainingInformationItems","body","VerticalListItem"]},{"label":"Recurring Event","name":"RecurringEvent","ui":{"previewSrc":"/images/thumbs/tina/recurring-event.jpg"},"fields":[{"type":"string","label":"Apply Link Redirect","name":"applyLinkRedirect","namespace":["eventsIndex","afterEvents","TrainingInformation","trainingInformationItems","body","RecurringEvent","applyLinkRedirect"]},{"type":"string","label":"Day","name":"day","options":[{"label":"Monday","value":"monday"},{"label":"Tuesday","value":"tuesday"},{"label":"Wednesday","value":"wednesday"},{"label":"Thursday","value":"thursday"},{"label":"Friday","value":"friday"},{"label":"Saturday","value":"saturday"},{"label":"Sunday","value":"sunday"}],"required":true,"namespace":["eventsIndex","afterEvents","TrainingInformation","trainingInformationItems","body","RecurringEvent","day"]}],"namespace":["eventsIndex","sidebarBody","TrainingInformation","trainingInformationItems","body","RecurringEvent"]}],"namespace":["eventsIndex","preface","TrainingInformation","trainingInformationItems","body"]}],"namespace":["opportunities","_body","TrainingInformation","trainingInformationItems"],"searchable":true,"uid":false}],"namespace":["opportunities","_body","TrainingInformation"]},{"label":"Training Learning Outcomes","name":"TrainingLearningOutcome","ui":{"previewSrc":"/images/thumbs/tina/training-learning-outcomes.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["opportunities","_body","TrainingLearningOutcome","header"],"searchable":true,"uid":false},{"type":"object","label":"List Items","name":"listItems","list":true,"fields":[{"type":"string","label":"Title","name":"title","namespace":["eventsIndex","preface","TrainingLearningOutcome","listItems","title"]},{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["eventsIndex","preface","TrainingLearningOutcome","listItems","content"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","TrainingLearningOutcome","listItems","icon","uploadDir"]},"namespace":["eventsIndex","preface","TrainingLearningOutcome","listItems","icon"]}],"namespace":["opportunities","_body","TrainingLearningOutcome","listItems"],"searchable":true,"uid":false}],"namespace":["opportunities","_body","TrainingLearningOutcome"]},{"label":"Tweet Embed","name":"TweetEmbed","ui":{"previewSrc":"/images/thumbs/tina/tweet-embed.jpg"},"fields":[{"type":"string","name":"url","label":"Tweet URL","required":true,"namespace":["opportunities","_body","TweetEmbed","url"],"searchable":true,"uid":false}],"namespace":["opportunities","_body","TweetEmbed"]},{"name":"UpcomingEvents","label":"Upcoming Events","ui":{"previewSrc":"/images/thumbs/tina/upcoming-events.jpg","defaultItem":{"title":"Upcoming Events","numberOfEvents":30}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["opportunities","_body","UpcomingEvents","title"],"searchable":true,"uid":false},{"type":"number","label":"Number of Events","name":"numberOfEvents","namespace":["opportunities","_body","UpcomingEvents","numberOfEvents"],"searchable":true,"uid":false}],"namespace":["opportunities","_body","UpcomingEvents"]},{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["opportunities","_body","UtilityButton","buttonText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"link","required":false,"namespace":["opportunities","_body","UtilityButton","link"],"searchable":true,"uid":false},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["opportunities","_body","UtilityButton","size"],"searchable":true,"uid":false},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["opportunities","_body","UtilityButton","btnIcon"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["opportunities","_body","UtilityButton","animated"],"searchable":true,"uid":false},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["opportunities","_body","UtilityButton","uncentered"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["opportunities","_body","UtilityButton","removeTopMargin"],"searchable":true,"uid":false},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["opportunities","_body","UtilityButton","openInNewTab"],"searchable":true,"uid":false}],"namespace":["opportunities","_body","UtilityButton"]},{"name":"VerticalImageLayout","label":"Vertical Image Layout","fields":[{"type":"image","label":"Image","name":"imageSrc","uploadDir":{"namespace":["page","beforeBody","VerticalImageLayout","imageSrc","uploadDir"]},"namespace":["opportunities","_body","VerticalImageLayout","imageSrc"],"searchable":false,"uid":false},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["opportunities","_body","VerticalImageLayout","altText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"imageLink","namespace":["opportunities","_body","VerticalImageLayout","imageLink"],"searchable":true,"uid":false},{"type":"number","label":"Height","name":"height","required":true,"namespace":["opportunities","_body","VerticalImageLayout","height"],"searchable":true,"uid":false},{"type":"number","label":"Width","name":"width","required":true,"namespace":["opportunities","_body","VerticalImageLayout","width"],"searchable":true,"uid":false},{"type":"rich-text","label":"Message","name":"message","required":true,"namespace":["opportunities","_body","VerticalImageLayout","message"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["opportunities","_body","VerticalImageLayout","sizes"],"searchable":true,"uid":false}],"namespace":["opportunities","_body","VerticalImageLayout"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["opportunities","_body","VerticalListItem","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"number","label":"Index number","name":"index","namespace":["opportunities","_body","VerticalListItem","index"],"searchable":true,"uid":false},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["opportunities","_body","VerticalListItem","icon"],"searchable":false,"uid":false},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["opportunities","_body","VerticalListItem","iconScale"],"searchable":true,"uid":false},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["opportunities","_body","VerticalListItem","afterBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["opportunities","_body","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["opportunities","_body","VideoEmbed","url"],"searchable":true,"uid":false},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["opportunities","_body","VideoEmbed","videoWidth"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["opportunities","_body","VideoEmbed","removeMargin"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["opportunities","_body","VideoEmbed","uncentre"],"searchable":true,"uid":false},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["opportunities","_body","VideoEmbed","overflow"],"searchable":true,"uid":false},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["opportunities","_body","VideoEmbed","caption"],"searchable":true,"uid":false},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["opportunities","_body","VideoEmbed","duration"],"searchable":true,"uid":false}],"namespace":["opportunities","_body","VideoEmbed"]},{"name":"InlineJotForm","label":"In-line JotForm","ui":{"previewSrc":"/images/thumbs/tina/inline-jot-form.jpg"},"fields":[{"type":"string","name":"title","label":"Title","description":"Optional title for JotForm","namespace":["opportunities","_body","InlineJotForm","title"],"searchable":true,"uid":false},{"type":"string","name":"jotFormId","label":"JotForm ID","required":true,"namespace":["opportunities","_body","InlineJotForm","jotFormId"],"searchable":true,"uid":false},{"type":"string","name":"additionalClasses","label":"Additional classnames","description":"Optional styling for iframe element only","namespace":["opportunities","_body","InlineJotForm","additionalClasses"],"searchable":true,"uid":false}],"namespace":["opportunities","_body","InlineJotForm"]}],"namespace":["opportunities","_body"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["opportunities"]},{"label":"Events - Index","name":"eventsIndex","format":"mdx","path":"content/events/index","ui":{"allowedActions":{"create":false,"delete":false}},"fields":[{"type":"object","label":"SEO Values","name":"seo","fields":[{"type":"string","label":"Title (70 characters)","name":"title","ui":{},"namespace":["eventsIndex","seo","title"],"searchable":true,"uid":false},{"type":"string","label":"Description (150 characters)","name":"description","component":"textarea","ui":{},"namespace":["eventsIndex","seo","description"],"searchable":true,"uid":false},{"type":"string","label":"Canonical URL","name":"canonical","namespace":["eventsIndex","seo","canonical"],"searchable":true,"uid":false},{"type":"boolean","name":"showBreadcrumb","label":"Show Breadcrumb","namespace":["eventsIndex","seo","showBreadcrumb"],"searchable":true,"uid":false},{"label":"Images","name":"images","list":true,"type":"object","ui":{"defaultItem":{"url":"/images/ssw-default-og.jpg","width":1200,"height":630,"alt":"SSW Consulting - Enterprise Software Development"}},"fields":[{"type":"image","label":"Image Url","name":"url","require":true,"namespace":["events","seo","images","url"],"searchable":false,"uid":false},{"type":"number","label":"Width (px)","name":"width","namespace":["events","seo","images","width"],"searchable":true,"uid":false},{"type":"number","label":"Height (px)","name":"height","namespace":["events","seo","images","height"],"searchable":true,"uid":false},{"type":"string","label":"Image Alt Text","name":"alt","namespace":["events","seo","images","alt"],"searchable":true,"uid":false}],"namespace":["eventsIndex","seo","images"],"searchable":true,"uid":false}],"namespace":["eventsIndex","seo"],"searchable":true,"uid":false},{"type":"rich-text","name":"preface","label":"Preface","templates":[{"name":"AboutUs","label":"About Us","ui":{"previewSrc":"/images/thumbs/tina/about-us.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["eventsIndex","preface","AboutUs","backgroundColor"],"searchable":true,"uid":false},{"type":"boolean","label":"Show Map","name":"showMap","required":false,"namespace":["eventsIndex","preface","AboutUs","showMap"],"searchable":true,"uid":false}],"namespace":["eventsIndex","preface","AboutUs"]},{"label":"Agenda","name":"Agenda","ui":{"previewSrc":"/images/thumbs/tina/agenda.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["eventsIndex","preface","Agenda","header"],"searchable":true,"uid":false},{"type":"string","label":"Header Color","name":"textColor","options":[{"label":"Red","value":"red"},{"label":"Gray","value":"gray"},{"label":"Default","value":"default"}],"namespace":["eventsIndex","preface","Agenda","textColor"],"searchable":true,"uid":false},{"type":"object","label":"Agenda Items","name":"agendaItemList","ui":{},"list":true,"fields":[{"type":"string","label":"Placeholder Text","name":"placeholder","namespace":["eventsIndex","sidebarBody","Agenda","agendaItemList","placeholder"]},{"type":"rich-text","label":"Body","name":"body","templates":[{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["events","_body","Agenda","agendaItemList","body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["events","_body","Agenda","agendaItemList","body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["events","_body","Agenda","agendaItemList","body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["events","_body","Agenda","agendaItemList","body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["events","_body","Agenda","agendaItemList","body","VerticalListItem","afterBody"]}],"namespace":["eventsIndex","afterEvents","Agenda","agendaItemList","body","VerticalListItem"]}],"namespace":["eventsIndex","sidebarBody","Agenda","agendaItemList","body"]}],"namespace":["eventsIndex","preface","Agenda","agendaItemList"],"searchable":true,"uid":false}],"namespace":["eventsIndex","preface","Agenda"]},{"label":"Agreement Form","name":"AgreementForm","ui":{"previewSrc":"/images/thumbs/tina/agreement-form.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["eventsIndex","preface","AgreementForm","backgroundColor"],"searchable":true,"uid":false},{"type":"object","label":"Form fields","name":"fields","list":true,"fields":[{"type":"string","label":"ID","name":"id","required":true,"namespace":["eventsIndex","sidebarBody","AgreementForm","fields","id"]},{"type":"string","label":"Label","name":"label","required":true,"namespace":["eventsIndex","sidebarBody","AgreementForm","fields","label"]},{"type":"string","label":"Placeholder","name":"placeholder","namespace":["eventsIndex","sidebarBody","AgreementForm","fields","placeholder"]},{"type":"boolean","label":"Resizeable","name":"resizeable","required":true,"namespace":["eventsIndex","sidebarBody","AgreementForm","fields","resizeable"]}],"namespace":["eventsIndex","preface","AgreementForm","fields"],"searchable":true,"uid":false}],"namespace":["eventsIndex","preface","AgreementForm"]},{"label":"Interest Form","name":"InterestForm","ui":{"previewSrc":"/images/thumbs/tina/interest-form.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["eventsIndex","preface","InterestForm","buttonText"],"searchable":true,"uid":false}],"namespace":["eventsIndex","preface","InterestForm"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["eventsIndex","preface","BookingButton","buttonText"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","namespace":["eventsIndex","preface","BookingButton","animated"],"searchable":true,"uid":false},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["eventsIndex","preface","BookingButton","buttonSubtitle"],"searchable":true,"uid":false}],"namespace":["eventsIndex","preface","BookingButton"]},{"name":"BuiltOnAzure","label":"Built on Azure","ui":{"previewSrc":"/images/thumbs/tina/built-on-azure.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["eventsIndex","preface","BuiltOnAzure","backgroundColor"],"searchable":true,"uid":false}],"namespace":["eventsIndex","preface","BuiltOnAzure"]},{"name":"Carousel","label":"Carousel","ui":{"previewSrc":"/images/thumbs/tina/carousel.jpg"},"fields":[{"label":"Items","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Item description","link":"/","openIn":"sameWindow"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["eventsIndex","sidebarBody","Carousel","items","label"]},{"type":"string","label":"URL","name":"link","description":"If link contains ssw.com.au, you can skip the full URL and just use the path. e.g. /services","namespace":["eventsIndex","sidebarBody","Carousel","items","link"]},{"type":"string","label":"Open in","name":"openIn","description":"If it is external link, please select 'New window' option.","options":[{"label":"Same window","value":"sameWindow"},{"label":"Modal","value":"modal"},{"label":"New window","value":"newWindow"}],"namespace":["eventsIndex","sidebarBody","Carousel","items","openIn"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","Carousel","items","imgSrc","uploadDir"]},"namespace":["eventsIndex","sidebarBody","Carousel","items","imgSrc"]}],"namespace":["eventsIndex","preface","Carousel","items"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["eventsIndex","preface","Carousel","backgroundColor"],"searchable":true,"uid":false},{"type":"number","label":"Delay (Seconds)","name":"delay","required":true,"namespace":["eventsIndex","preface","Carousel","delay"],"searchable":true,"uid":false},{"type":"boolean","label":"Show on mobile devices","name":"showOnMobileDevices","namespace":["eventsIndex","preface","Carousel","showOnMobileDevices"],"searchable":true,"uid":false}],"namespace":["eventsIndex","preface","Carousel"]},{"name":"Citation","label":"Citation","fields":[{"type":"string","label":"author","name":"author","namespace":["eventsIndex","preface","Citation","author"],"searchable":true,"uid":false},{"type":"string","label":"article","name":"article","required":true,"namespace":["eventsIndex","preface","Citation","article"],"searchable":true,"uid":false}],"namespace":["eventsIndex","preface","Citation"]},{"label":"Client List","name":"ClientList","ui":{"previewSrc":"/images/thumbs/tina/clients-list.jpg"},"fields":[{"type":"object","name":"categories","label":"Categories","list":true,"fields":[{"type":"reference","name":"category","label":"Category","collections":["clientCategories"],"namespace":["eventsIndex","sidebarBody","ClientList","categories","category"]}],"ui":{},"namespace":["eventsIndex","preface","ClientList","categories"],"searchable":true,"uid":false},{"type":"object","name":"clients","label":"Clients list","list":true,"ui":{"previewSrc":"/images/thumbs/tina/clients-list.jpg"},"fields":[{"type":"string","name":"name","label":"Name","namespace":["eventsIndex","sidebarBody","ClientList","clients","name"]},{"type":"image","name":"logo","label":"Logo","namespace":["eventsIndex","sidebarBody","ClientList","clients","logo"]},{"type":"string","name":"logoUrl","label":"Logo URL","namespace":["eventsIndex","sidebarBody","ClientList","clients","logoUrl"]},{"type":"rich-text","name":"content","label":"Content","templates":[{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["events","_body","ClientList","clients","content","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["events","_body","ClientList","clients","content","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["events","_body","ClientList","clients","content","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["events","_body","ClientList","clients","content","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["events","_body","ClientList","clients","content","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["events","_body","ClientList","clients","content","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["events","_body","ClientList","clients","content","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["events","_body","ClientList","clients","content","UtilityButton","openInNewTab"]}],"namespace":["eventsIndex","afterEvents","ClientList","clients","content","UtilityButton"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["events","_body","ClientList","clients","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["events","_body","ClientList","clients","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["events","_body","ClientList","clients","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["events","_body","ClientList","clients","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["events","_body","ClientList","clients","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["events","_body","ClientList","clients","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["events","_body","ClientList","clients","content","VideoEmbed","duration"]}],"namespace":["eventsIndex","afterEvents","ClientList","clients","content","VideoEmbed"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["events","_body","ClientList","clients","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["events","_body","ClientList","clients","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["events","_body","ClientList","clients","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["events","_body","ClientList","clients","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["events","_body","ClientList","clients","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["events","_body","ClientList","clients","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["events","_body","ClientList","clients","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["events","_body","ClientList","clients","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["events","_body","ClientList","clients","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["events","_body","ClientList","clients","content","CustomImage","sizes"]}],"namespace":["eventsIndex","afterEvents","ClientList","clients","content","CustomImage"]},{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["events","_body","ClientList","clients","content","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["events","_body","ClientList","clients","content","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["logos","_body","ClientList","clients","content","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["logos","_body","ClientList","clients","content","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["logos","_body","ClientList","clients","content","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["logos","_body","ClientList","clients","content","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["logos","_body","ClientList","clients","content","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["logos","_body","ClientList","clients","content","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["logos","_body","ClientList","clients","content","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["logos","_body","ClientList","clients","content","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["logos","_body","ClientList","clients","content","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["logos","_body","ClientList","clients","content","ContentCard","content","CustomImage","sizes"]}],"namespace":["events","footer","ClientList","clients","content","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["logos","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["logos","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["logos","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["logos","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["logos","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["events","footer","ClientList","clients","content","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["logos","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["logos","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["logos","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["logos","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["logos","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["logos","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["logos","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","duration"]}],"namespace":["events","footer","ClientList","clients","content","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["logos","_body","ClientList","clients","content","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["logos","_body","ClientList","clients","content","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["industry","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["industry","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["industry","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["industry","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["industry","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["logos","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["events","footer","ClientList","clients","content","ContentCard","content","ColorBlock"]}],"namespace":["events","_body","ClientList","clients","content","ContentCard","content"]}],"namespace":["eventsIndex","afterEvents","ClientList","clients","content","ContentCard"]}],"namespace":["eventsIndex","sidebarBody","ClientList","clients","content"]},{"type":"string","name":"caseStudyUrl","label":"Case study URL","namespace":["eventsIndex","sidebarBody","ClientList","clients","caseStudyUrl"]},{"type":"object","name":"categories","label":"Categories","list":true,"ui":{},"fields":[{"type":"reference","name":"category","label":"Category","collections":["clientCategories"],"namespace":["eventsIndex","afterEvents","ClientList","clients","categories","category"]}],"namespace":["eventsIndex","sidebarBody","ClientList","clients","categories"]}],"namespace":["eventsIndex","preface","ClientList","clients"],"searchable":true,"uid":false}],"namespace":["eventsIndex","preface","ClientList"]},{"name":"ClientLogos","label":"Client Logos","ui":{"previewSrc":"/images/thumbs/tina/client-logos.jpg"},"fields":[{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["eventsIndex","preface","ClientLogos","altText"],"searchable":true,"uid":false}],"namespace":["eventsIndex","preface","ClientLogos"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["eventsIndex","preface","ColorBlock","title"],"searchable":true,"uid":false},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["eventsIndex","preface","ColorBlock","subTitle"],"searchable":true,"uid":false},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["eventsIndex","sidebarBody","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["eventsIndex","sidebarBody","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["eventsIndex","sidebarBody","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["eventsIndex","sidebarBody","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["eventsIndex","sidebarBody","ColorBlock","colorRow","caption"]}],"namespace":["eventsIndex","preface","ColorBlock","colorRow"],"searchable":true,"uid":false}],"namespace":["eventsIndex","preface","ColorBlock"]},{"name":"ColorPalette","label":"Color Palette","ui":{"previewSrc":"/images/thumbs/tina/color-palette.jpg"},"fields":[{"type":"string","label":"Name","name":"name","namespace":["eventsIndex","preface","ColorPalette","name"],"searchable":true,"uid":false}],"namespace":["eventsIndex","preface","ColorPalette"]},{"name":"Content","label":"Content","ui":{"previewSrc":"/images/thumbs/tina/content.jpg","defaultItem":{"body":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["eventsIndex","preface","Content","title"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["eventsIndex","afterEvents","Content","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["eventsIndex","afterEvents","Content","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["eventsIndex","afterEvents","Content","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["eventsIndex","afterEvents","Content","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["eventsIndex","afterEvents","Content","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["eventsIndex","afterEvents","Content","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["eventsIndex","afterEvents","Content","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["eventsIndex","afterEvents","Content","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["eventsIndex","afterEvents","Content","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["eventsIndex","afterEvents","Content","content","CustomImage","sizes"]}],"namespace":["eventsIndex","sidebarBody","Content","content","CustomImage"]},{"name":"ClientLogos","label":"Client Logos","ui":{"previewSrc":"/images/thumbs/tina/client-logos.jpg"},"fields":[{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["eventsIndex","afterEvents","Content","content","ClientLogos","altText"]}],"namespace":["eventsIndex","sidebarBody","Content","content","ClientLogos"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["eventsIndex","afterEvents","Content","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["eventsIndex","afterEvents","Content","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["eventsIndex","afterEvents","Content","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["eventsIndex","afterEvents","Content","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["eventsIndex","afterEvents","Content","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["eventsIndex","afterEvents","Content","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["eventsIndex","afterEvents","Content","content","VideoEmbed","duration"]}],"namespace":["eventsIndex","sidebarBody","Content","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["eventsIndex","afterEvents","Content","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["eventsIndex","afterEvents","Content","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["events","_body","Content","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["events","_body","Content","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["events","_body","Content","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["events","_body","Content","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["events","_body","Content","content","ColorBlock","colorRow","caption"]}],"namespace":["eventsIndex","afterEvents","Content","content","ColorBlock","colorRow"]}],"namespace":["eventsIndex","sidebarBody","Content","content","ColorBlock"]}],"namespace":["eventsIndex","preface","Content","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Container Padding","name":"paddingClass","options":["Mobile: No Padding","Mobile: No Top and Horizontal Padding"],"namespace":["eventsIndex","preface","Content","paddingClass"],"searchable":true,"uid":false},{"type":"string","label":"Text size","name":"size","options":[{"label":"small","value":"sm"},{"label":"normal","value":"base"},{"label":"large","value":"lg"},{"label":"extra large","value":"xl"},{"label":"2x large","value":"2xl"}],"namespace":["eventsIndex","preface","Content","size"],"searchable":true,"uid":false},{"type":"string","label":"Align","name":"align","options":[{"label":"Left","value":"left"},{"label":"Center","value":"center"},{"label":"Right","value":"right"}],"namespace":["eventsIndex","preface","Content","align"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["eventsIndex","preface","Content","backgroundColor"],"searchable":true,"uid":false}],"namespace":["eventsIndex","preface","Content"]},{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["eventsIndex","preface","ContentCard","prose"],"searchable":true,"uid":false},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["eventsIndex","preface","ContentCard","centerAlignedText"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["eventsIndex","afterEvents","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["eventsIndex","afterEvents","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["eventsIndex","afterEvents","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["eventsIndex","afterEvents","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["eventsIndex","afterEvents","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["eventsIndex","afterEvents","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["eventsIndex","afterEvents","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["eventsIndex","afterEvents","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["eventsIndex","afterEvents","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["eventsIndex","afterEvents","ContentCard","content","CustomImage","sizes"]}],"namespace":["eventsIndex","sidebarBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["eventsIndex","afterEvents","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["eventsIndex","afterEvents","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["eventsIndex","afterEvents","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["eventsIndex","afterEvents","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["eventsIndex","afterEvents","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["eventsIndex","sidebarBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["eventsIndex","afterEvents","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["eventsIndex","afterEvents","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["eventsIndex","afterEvents","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["eventsIndex","afterEvents","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["eventsIndex","afterEvents","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["eventsIndex","afterEvents","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["eventsIndex","afterEvents","ContentCard","content","VideoEmbed","duration"]}],"namespace":["eventsIndex","sidebarBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["eventsIndex","afterEvents","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["eventsIndex","afterEvents","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["events","_body","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["events","_body","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["events","_body","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["events","_body","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["events","_body","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["eventsIndex","afterEvents","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["eventsIndex","sidebarBody","ContentCard","content","ColorBlock"]}],"namespace":["eventsIndex","preface","ContentCard","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["eventsIndex","preface","ContentCard"]},{"name":"CustomDownloadButton","label":"Custom Download Button","ui":{"previewSrc":"/images/thumbs/tina/custom-download-button.jpg"},"fields":[{"type":"string","label":"Text","name":"btnText","namespace":["eventsIndex","preface","CustomDownloadButton","btnText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"btnLink","namespace":["eventsIndex","preface","CustomDownloadButton","btnLink"],"searchable":true,"uid":false}],"namespace":["eventsIndex","preface","CustomDownloadButton"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["eventsIndex","preface","CustomImage","src"],"searchable":false,"uid":false},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["eventsIndex","preface","CustomImage","altText"],"searchable":true,"uid":false},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["eventsIndex","preface","CustomImage","alignment"],"searchable":true,"uid":false},{"type":"number","label":"Height","name":"height","required":true,"namespace":["eventsIndex","preface","CustomImage","height"],"searchable":true,"uid":false},{"type":"number","label":"Width","name":"width","required":true,"namespace":["eventsIndex","preface","CustomImage","width"],"searchable":true,"uid":false},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["eventsIndex","preface","CustomImage","link"],"searchable":true,"uid":false},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["eventsIndex","preface","CustomImage","customClass"],"searchable":true,"uid":false},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["eventsIndex","preface","CustomImage","caption"],"searchable":true,"uid":false},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["eventsIndex","preface","CustomImage","captionColor"],"searchable":true,"uid":false},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["eventsIndex","preface","CustomImage","sizes"],"searchable":true,"uid":false}],"namespace":["eventsIndex","preface","CustomImage"]},{"name":"DomainFromQuery","label":"Domain from query","ui":{"previewSrc":"/images/thumbs/tina/domain-from-query.jpg"},"fields":[{"name":"title","label":"Title","type":"string","description":"This is a H1 heading","namespace":["eventsIndex","preface","DomainFromQuery","title"],"searchable":true,"uid":false},{"name":"showDomain","label":"Show domain name","type":"boolean","description":"Query param in URL must have key of 'domain'","namespace":["eventsIndex","preface","DomainFromQuery","showDomain"],"searchable":true,"uid":false}],"namespace":["eventsIndex","preface","DomainFromQuery"]},{"name":"DownloadBlock","label":"Download Block","ui":{"previewSrc":"/images/thumbs/tina/download-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["eventsIndex","preface","DownloadBlock","title"],"searchable":true,"uid":false},{"type":"object","label":"Downloads","name":"downloads","ui":{},"list":true,"fields":[{"type":"string","label":"Header","name":"header","namespace":["eventsIndex","sidebarBody","DownloadBlock","downloads","header"]},{"type":"image","label":"Image","name":"img","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","img","uploadDir"]},"namespace":["eventsIndex","sidebarBody","DownloadBlock","downloads","img"]},{"type":"string","label":"Image Background","name":"imgBackground","options":["black","grey","white","darkgrey","darkgreen"],"namespace":["eventsIndex","sidebarBody","DownloadBlock","downloads","imgBackground"]},{"type":"string","label":"First Link Text","name":"firstLinkText","description":"Defaults to PNG","namespace":["eventsIndex","sidebarBody","DownloadBlock","downloads","firstLinkText"]},{"type":"image","label":"First Link","name":"firstLink","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","firstLink","uploadDir"]},"namespace":["eventsIndex","sidebarBody","DownloadBlock","downloads","firstLink"]},{"type":"string","label":"Second Link Text","name":"secondLinkText","description":"Defaults to PDF","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","secondLinkText","uploadDir"]},"namespace":["eventsIndex","sidebarBody","DownloadBlock","downloads","secondLinkText"]},{"type":"image","label":"Second Link","name":"secondLink","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","secondLink","uploadDir"]},"namespace":["eventsIndex","sidebarBody","DownloadBlock","downloads","secondLink"]}],"namespace":["eventsIndex","preface","DownloadBlock","downloads"],"searchable":true,"uid":false},{"type":"boolean","label":"Bottom border","name":"bottomBorder","namespace":["eventsIndex","preface","DownloadBlock","bottomBorder"],"searchable":true,"uid":false}],"namespace":["eventsIndex","preface","DownloadBlock"]},{"name":"DynamicColumns","label":"Dynamic Column Layout","fields":[{"type":"rich-text","label":"Column text body","name":"colBody","required":true,"namespace":["eventsIndex","preface","DynamicColumns","colBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"number","label":"Number of columns","name":"colCount","required":true,"ui":{},"namespace":["eventsIndex","preface","DynamicColumns","colCount"],"searchable":true,"uid":false}],"namespace":["eventsIndex","preface","DynamicColumns"]},{"name":"EventBooking","label":"Events Booking","ui":{"previewSrc":"/images/thumbs/tina/events-booking.jpg"},"fields":[{"type":"number","label":"Duration (In Days)","name":"eventDurationInDays","required":true,"namespace":["eventsIndex","preface","EventBooking","eventDurationInDays"],"searchable":true,"uid":false},{"type":"number","label":"Price","name":"price","required":true,"namespace":["eventsIndex","preface","EventBooking","price"],"searchable":true,"uid":false},{"type":"number","label":"Discount Price","name":"discountPrice","namespace":["eventsIndex","preface","EventBooking","discountPrice"],"searchable":true,"uid":false},{"type":"string","name":"gstText","label":"Select GST Option","options":["inc GST","+ GST"],"required":true,"namespace":["eventsIndex","preface","EventBooking","gstText"],"searchable":true,"uid":false},{"type":"string","label":"Discount Note","name":"discountNote","namespace":["eventsIndex","preface","EventBooking","discountNote"],"searchable":true,"uid":false},{"type":"object","label":"Event","name":"eventList","ui":{},"list":true,"fields":[{"type":"string","label":"City","name":"city","namespace":["eventsIndex","sidebarBody","EventBooking","eventList","city"]},{"type":"datetime","label":"Start Date","name":"date","ui":{},"namespace":["eventsIndex","sidebarBody","EventBooking","eventList","date"]},{"type":"string","label":"Booking URL","name":"bookingURL","namespace":["eventsIndex","sidebarBody","EventBooking","eventList","bookingURL"]},{"type":"reference","label":"Location","name":"location","collections":["locations"],"namespace":["eventsIndex","sidebarBody","EventBooking","eventList","location"]}],"namespace":["eventsIndex","preface","EventBooking","eventList"],"searchable":true,"uid":false}],"namespace":["eventsIndex","preface","EventBooking"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["eventsIndex","afterEvents","EventLink","content","Flag","country"]}],"namespace":["eventsIndex","sidebarBody","EventLink","content","Flag"]}],"namespace":["eventsIndex","preface","EventLink","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Link","name":"link","namespace":["eventsIndex","preface","EventLink","link"],"searchable":true,"uid":false},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["eventsIndex","preface","EventLink","eventThumbnail"],"searchable":false,"uid":false},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["eventsIndex","preface","EventLink","thumbnailAlt"],"searchable":true,"uid":false}],"namespace":["eventsIndex","preface","EventLink"]},{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["eventsIndex","preface","Flag","country"],"searchable":true,"uid":false}],"namespace":["eventsIndex","preface","Flag"]},{"name":"FixedColumns","label":"Fixed Column Layout (2 columns)","ui":{"previewSrc":"/images/thumbs/tina/fixed-columns.jpg"},"fields":[{"type":"rich-text","label":"Header Section (Optional)","name":"headerSection","namespace":["eventsIndex","preface","FixedColumns","headerSection"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"First column text","name":"firstColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["eventsIndex","afterEvents","FixedColumns","firstColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["eventsIndex","afterEvents","FixedColumns","firstColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["events","footer","FixedColumns","firstColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["events","footer","FixedColumns","firstColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["events","footer","FixedColumns","firstColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["events","footer","FixedColumns","firstColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["events","footer","FixedColumns","firstColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["events","footer","FixedColumns","firstColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["events","footer","FixedColumns","firstColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["events","footer","FixedColumns","firstColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["events","footer","FixedColumns","firstColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["events","footer","FixedColumns","firstColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["events","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["events","footer","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["events","footer","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["events","footer","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["events","footer","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["events","footer","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["events","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["events","footer","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["events","footer","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["events","footer","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["events","footer","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["events","footer","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["events","footer","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["events","footer","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["events","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["events","footer","FixedColumns","firstColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["events","footer","FixedColumns","firstColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["logos","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["logos","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["logos","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["logos","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["logos","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["events","footer","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["events","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock"]}],"namespace":["eventsIndex","afterEvents","FixedColumns","firstColBody","ContentCard","content"]}],"namespace":["eventsIndex","sidebarBody","FixedColumns","firstColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["eventsIndex","afterEvents","FixedColumns","firstColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["eventsIndex","afterEvents","FixedColumns","firstColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["eventsIndex","afterEvents","FixedColumns","firstColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["eventsIndex","afterEvents","FixedColumns","firstColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["eventsIndex","afterEvents","FixedColumns","firstColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["eventsIndex","afterEvents","FixedColumns","firstColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["eventsIndex","afterEvents","FixedColumns","firstColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["eventsIndex","afterEvents","FixedColumns","firstColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["eventsIndex","afterEvents","FixedColumns","firstColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["eventsIndex","afterEvents","FixedColumns","firstColBody","CustomImage","sizes"]}],"namespace":["eventsIndex","sidebarBody","FixedColumns","firstColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["events","footer","FixedColumns","firstColBody","EventLink","content","Flag","country"]}],"namespace":["events","_body","FixedColumns","firstColBody","EventLink","content","Flag"]}],"namespace":["eventsIndex","afterEvents","FixedColumns","firstColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["eventsIndex","afterEvents","FixedColumns","firstColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["eventsIndex","afterEvents","FixedColumns","firstColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["eventsIndex","afterEvents","FixedColumns","firstColBody","EventLink","thumbnailAlt"]}],"namespace":["eventsIndex","sidebarBody","FixedColumns","firstColBody","EventLink"]}],"namespace":["eventsIndex","preface","FixedColumns","firstColBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"Second column text","name":"secondColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["eventsIndex","afterEvents","FixedColumns","secondColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["eventsIndex","afterEvents","FixedColumns","secondColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["events","footer","FixedColumns","secondColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["events","footer","FixedColumns","secondColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["events","footer","FixedColumns","secondColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["events","footer","FixedColumns","secondColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["events","footer","FixedColumns","secondColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["events","footer","FixedColumns","secondColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["events","footer","FixedColumns","secondColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["events","footer","FixedColumns","secondColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["events","footer","FixedColumns","secondColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["events","footer","FixedColumns","secondColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["events","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["events","footer","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["events","footer","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["events","footer","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["events","footer","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["events","footer","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["events","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["events","footer","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["events","footer","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["events","footer","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["events","footer","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["events","footer","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["events","footer","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["events","footer","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["events","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["events","footer","FixedColumns","secondColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["events","footer","FixedColumns","secondColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["logos","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["logos","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["logos","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["logos","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["logos","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["events","footer","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["events","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock"]}],"namespace":["eventsIndex","afterEvents","FixedColumns","secondColBody","ContentCard","content"]}],"namespace":["eventsIndex","sidebarBody","FixedColumns","secondColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["eventsIndex","afterEvents","FixedColumns","secondColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["eventsIndex","afterEvents","FixedColumns","secondColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["eventsIndex","afterEvents","FixedColumns","secondColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["eventsIndex","afterEvents","FixedColumns","secondColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["eventsIndex","afterEvents","FixedColumns","secondColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["eventsIndex","afterEvents","FixedColumns","secondColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["eventsIndex","afterEvents","FixedColumns","secondColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["eventsIndex","afterEvents","FixedColumns","secondColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["eventsIndex","afterEvents","FixedColumns","secondColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["eventsIndex","afterEvents","FixedColumns","secondColBody","CustomImage","sizes"]}],"namespace":["eventsIndex","sidebarBody","FixedColumns","secondColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["events","footer","FixedColumns","secondColBody","EventLink","content","Flag","country"]}],"namespace":["events","_body","FixedColumns","secondColBody","EventLink","content","Flag"]}],"namespace":["eventsIndex","afterEvents","FixedColumns","secondColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["eventsIndex","afterEvents","FixedColumns","secondColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["eventsIndex","afterEvents","FixedColumns","secondColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["eventsIndex","afterEvents","FixedColumns","secondColBody","EventLink","thumbnailAlt"]}],"namespace":["eventsIndex","sidebarBody","FixedColumns","secondColBody","EventLink"]}],"namespace":["eventsIndex","preface","FixedColumns","secondColBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["eventsIndex","preface","FixedColumns"]},{"name":"FixedTabsLayout","label":"Fixed Tabs Layout","ui":{"previewSrc":"/images/thumbs/tina/fixed-tabs-layout.jpg"},"fields":[{"type":"string","name":"firstTab","label":"First Tab","namespace":["eventsIndex","preface","FixedTabsLayout","firstTab"],"searchable":true,"uid":false},{"type":"rich-text","name":"firstHeading","label":"First Heading","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstHeading","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstHeading","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstHeading","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstHeading","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstHeading","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstHeading","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstHeading","VideoEmbed","duration"]}],"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstHeading","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstHeading","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstHeading","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstHeading","BookingButton","buttonSubtitle"]}],"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstHeading","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstHeading","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["events","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["events","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["events","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["events","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList","skills"]}],"namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstHeading","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["events","_body","FixedTabsLayout","firstHeading","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["events","_body","FixedTabsLayout","firstHeading","ExpertBlock","link","url"]}],"namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstHeading","ExpertBlock","link"]}],"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstHeading","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["events","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["events","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["events","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["events","footer","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["events","footer","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["events","footer","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["events","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstHeading","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstHeading","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstHeading","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstHeading","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstHeading","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstHeading","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstHeading","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstHeading","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstHeading","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstHeading","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstHeading","CustomImage","sizes"]}],"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstHeading","CustomImage"]}],"namespace":["eventsIndex","preface","FixedTabsLayout","firstHeading"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","name":"firstBody","label":"First Body","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstBody","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstBody","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstBody","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstBody","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstBody","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstBody","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstBody","VideoEmbed","duration"]}],"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstBody","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstBody","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstBody","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstBody","BookingButton","buttonSubtitle"]}],"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstBody","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstBody","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["events","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["events","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["events","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["events","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList","skills"]}],"namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstBody","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["events","_body","FixedTabsLayout","firstBody","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["events","_body","FixedTabsLayout","firstBody","ExpertBlock","link","url"]}],"namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstBody","ExpertBlock","link"]}],"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstBody","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["events","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["events","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["events","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["events","footer","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["events","footer","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["events","footer","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["events","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstBody","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstBody","CustomImage","sizes"]}],"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstBody","CustomImage"]}],"namespace":["eventsIndex","preface","FixedTabsLayout","firstBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","name":"secondTab","label":"Second Tab","namespace":["eventsIndex","preface","FixedTabsLayout","secondTab"],"searchable":true,"uid":false},{"type":"rich-text","name":"secondHeading","label":"Second Heading","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondHeading","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondHeading","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondHeading","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondHeading","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondHeading","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondHeading","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondHeading","VideoEmbed","duration"]}],"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondHeading","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondHeading","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondHeading","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondHeading","BookingButton","buttonSubtitle"]}],"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondHeading","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondHeading","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["events","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["events","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["events","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["events","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList","skills"]}],"namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondHeading","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["events","_body","FixedTabsLayout","secondHeading","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["events","_body","FixedTabsLayout","secondHeading","ExpertBlock","link","url"]}],"namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondHeading","ExpertBlock","link"]}],"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondHeading","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["events","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["events","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["events","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["events","footer","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["events","footer","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["events","footer","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["events","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondHeading","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondHeading","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondHeading","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondHeading","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondHeading","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondHeading","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondHeading","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondHeading","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondHeading","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondHeading","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondHeading","CustomImage","sizes"]}],"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondHeading","CustomImage"]}],"namespace":["eventsIndex","preface","FixedTabsLayout","secondHeading"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","name":"secondBody","label":"Second Body","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondBody","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondBody","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondBody","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondBody","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondBody","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondBody","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondBody","VideoEmbed","duration"]}],"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondBody","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondBody","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondBody","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondBody","BookingButton","buttonSubtitle"]}],"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondBody","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondBody","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["events","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["events","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["events","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["events","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList","skills"]}],"namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondBody","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["events","_body","FixedTabsLayout","secondBody","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["events","_body","FixedTabsLayout","secondBody","ExpertBlock","link","url"]}],"namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondBody","ExpertBlock","link"]}],"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondBody","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["events","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["events","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["events","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["events","footer","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["events","footer","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["events","footer","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["events","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondBody","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondBody","CustomImage","sizes"]}],"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondBody","CustomImage"]}],"namespace":["eventsIndex","preface","FixedTabsLayout","secondBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["eventsIndex","preface","FixedTabsLayout"]},{"label":"Google Maps","name":"GoogleMaps","ui":{"previewSrc":"/images/thumbs/tina/google-maps.jpg"},"fields":[{"type":"string","label":"URL","name":"embedUrl","required":true,"namespace":["eventsIndex","preface","GoogleMaps","embedUrl"],"searchable":true,"uid":false},{"type":"string","label":"Width","name":"embedWidth","namespace":["eventsIndex","preface","GoogleMaps","embedWidth"],"searchable":true,"uid":false},{"type":"string","label":"Height","name":"embedHeight","namespace":["eventsIndex","preface","GoogleMaps","embedHeight"],"searchable":true,"uid":false}],"namespace":["eventsIndex","preface","GoogleMaps"]},{"label":"Grid Layout","name":"GridLayout","ui":{"previewSrc":"/images/thumbs/tina/grid-layout.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["eventsIndex","preface","GridLayout","title"],"searchable":true,"uid":false},{"type":"object","list":true,"label":"Grid Items","name":"grids","ui":{},"fields":[{"type":"string","label":"Grid Title","name":"gridTitle","namespace":["eventsIndex","sidebarBody","GridLayout","grids","gridTitle"]},{"type":"boolean","label":"Show Grid Title","name":"showGridTitle","namespace":["eventsIndex","sidebarBody","GridLayout","grids","showGridTitle"]},{"type":"boolean","label":"Centered Grid Title","name":"centeredGridTitle","namespace":["eventsIndex","sidebarBody","GridLayout","grids","centeredGridTitle"]},{"type":"boolean","label":"Show Header Divider","name":"showHeaderDivider","namespace":["eventsIndex","sidebarBody","GridLayout","grids","showHeaderDivider"]},{"type":"boolean","label":"Offset Grid Start","name":"offsetGridStart","namespace":["eventsIndex","sidebarBody","GridLayout","grids","offsetGridStart"]},{"type":"object","label":"Blocks","name":"blocks","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["eventsIndex","afterEvents","GridLayout","grids","blocks","title"]},{"type":"boolean","label":"Show Title","name":"showTitle","namespace":["eventsIndex","afterEvents","GridLayout","grids","blocks","showTitle"]},{"type":"image","label":"Image","name":"image","uploadDir":{"namespace":["page","beforeBody","GridLayout","grids","blocks","image","uploadDir"]},"namespace":["eventsIndex","afterEvents","GridLayout","grids","blocks","image"]},{"type":"image","label":"Related Image","name":"relatedImage","uploadDir":{"namespace":["page","beforeBody","GridLayout","grids","blocks","relatedImage","uploadDir"]},"namespace":["eventsIndex","afterEvents","GridLayout","grids","blocks","relatedImage"]},{"type":"rich-text","name":"linkContent","label":"Link Content","templates":[{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["events","footer","GridLayout","grids","blocks","linkContent","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["events","footer","GridLayout","grids","blocks","linkContent","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["events","footer","GridLayout","grids","blocks","linkContent","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["events","footer","GridLayout","grids","blocks","linkContent","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["events","footer","GridLayout","grids","blocks","linkContent","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["events","footer","GridLayout","grids","blocks","linkContent","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["events","footer","GridLayout","grids","blocks","linkContent","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["events","footer","GridLayout","grids","blocks","linkContent","UtilityButton","openInNewTab"]}],"namespace":["events","_body","GridLayout","grids","blocks","linkContent","UtilityButton"]}],"namespace":["eventsIndex","afterEvents","GridLayout","grids","blocks","linkContent"]}],"namespace":["eventsIndex","sidebarBody","GridLayout","grids","blocks"]}],"namespace":["eventsIndex","preface","GridLayout","grids"],"searchable":true,"uid":false}],"namespace":["eventsIndex","preface","GridLayout"]},{"name":"Hero","label":"Hero","ui":{"previewSrc":"/blocks/hero.png","defaultItem":{"tagline":"Here's some text above the other text","headline":"This Big Text is Totally Awesome","text":"Phasellus scelerisque, libero eu finibus rutrum, risus risus accumsan libero, nec molestie urna dui a leo."}},"fields":[{"type":"string","label":"Tagline","name":"tagline","namespace":["eventsIndex","preface","Hero","tagline"],"searchable":true,"uid":false},{"type":"string","label":"Headline","name":"headline","namespace":["eventsIndex","preface","Hero","headline"],"searchable":true,"uid":false},{"label":"Text","name":"text","type":"rich-text","namespace":["eventsIndex","preface","Hero","text"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"label":"Actions","name":"actions","type":"object","list":true,"ui":{"defaultItem":{"label":"Action Label","type":"button","icon":true,"link":"/"}},"fields":[{"label":"Label","name":"label","type":"string","namespace":["eventsIndex","sidebarBody","Hero","actions","label"]},{"label":"Type","name":"type","type":"string","options":[{"label":"Button","value":"button"},{"label":"Link","value":"link"}],"namespace":["eventsIndex","sidebarBody","Hero","actions","type"]},{"label":"Icon","name":"icon","type":"boolean","namespace":["eventsIndex","sidebarBody","Hero","actions","icon"]},{"label":"Link","name":"link","type":"string","namespace":["eventsIndex","sidebarBody","Hero","actions","link"]}],"namespace":["eventsIndex","preface","Hero","actions"],"searchable":true,"uid":false},{"type":"object","label":"Image","name":"image","fields":[{"name":"src","label":"Image Source","type":"image","namespace":["eventsIndex","sidebarBody","Hero","image","src"]},{"name":"alt","label":"Alt Text","type":"string","namespace":["eventsIndex","sidebarBody","Hero","image","alt"]}],"namespace":["eventsIndex","preface","Hero","image"],"searchable":true,"uid":false},{"type":"string","label":"Color","name":"color","options":[{"label":"Default","value":"default"},{"label":"Tint","value":"tint"},{"label":"Primary","value":"primary"}],"namespace":["eventsIndex","preface","Hero","color"],"searchable":true,"uid":false}],"namespace":["eventsIndex","preface","Hero"]},{"name":"HorizontalCard","label":"Horizontal Card","ui":{"previewSrc":"/images/thumbs/tina/horizontal-card.jpg"},"fields":[{"type":"object","label":"Cards","name":"cardList","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["eventsIndex","sidebarBody","HorizontalCard","cardList","title"]},{"type":"rich-text","label":"Content","name":"content","namespace":["eventsIndex","sidebarBody","HorizontalCard","cardList","content"]},{"type":"image","label":"Thumbnail","name":"thumbnail","uploadDir":{"namespace":["page","beforeBody","HorizontalCard","cardList","thumbnail","uploadDir"]},"namespace":["eventsIndex","sidebarBody","HorizontalCard","cardList","thumbnail"]},{"type":"string","label":"Link","name":"link","namespace":["eventsIndex","sidebarBody","HorizontalCard","cardList","link"]}],"namespace":["eventsIndex","preface","HorizontalCard","cardList"],"searchable":true,"uid":false},{"type":"object","label":"Button","name":"button","fields":[{"type":"string","label":"Text","name":"text","namespace":["eventsIndex","sidebarBody","HorizontalCard","button","text"]},{"type":"string","label":"Link","name":"link","namespace":["eventsIndex","sidebarBody","HorizontalCard","button","link"]}],"namespace":["eventsIndex","preface","HorizontalCard","button"],"searchable":true,"uid":false}],"namespace":["eventsIndex","preface","HorizontalCard"]},{"name":"InternalCarousel","label":"Internal Carousel","ui":{"previewSrc":"/images/thumbs/tina/internal-carousel.jpg"},"fields":[{"label":"Images","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Image description"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["eventsIndex","sidebarBody","InternalCarousel","items","label"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","InternalCarousel","items","imgSrc","uploadDir"]},"namespace":["eventsIndex","sidebarBody","InternalCarousel","items","imgSrc"]}],"namespace":["eventsIndex","preface","InternalCarousel","items"],"searchable":true,"uid":false},{"type":"string","label":"Header","name":"header","namespace":["eventsIndex","preface","InternalCarousel","header"],"searchable":true,"uid":false},{"type":"rich-text","label":"Text","name":"paragraph","isBody":false,"namespace":["eventsIndex","preface","InternalCarousel","paragraph"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Website","name":"website","namespace":["eventsIndex","preface","InternalCarousel","website"],"searchable":true,"uid":false},{"type":"object","label":"Technologies","name":"technologies","list":true,"ui":{},"fields":[{"type":"string","label":"Name","name":"name","namespace":["eventsIndex","sidebarBody","InternalCarousel","technologies","name"]}],"namespace":["eventsIndex","preface","InternalCarousel","technologies"],"searchable":true,"uid":false},{"type":"string","label":"Case Study","name":"caseStudyUrl","namespace":["eventsIndex","preface","InternalCarousel","caseStudyUrl"],"searchable":true,"uid":false},{"type":"string","label":"Video URL","name":"videoUrl","namespace":["eventsIndex","preface","InternalCarousel","videoUrl"],"searchable":true,"uid":false}],"namespace":["eventsIndex","preface","InternalCarousel"]},{"label":"Join As Presenter","name":"joinAsPresenter","fields":[{"label":"Learn More Link","name":"link","type":"string","namespace":["eventsIndex","preface","joinAsPresenter","link"],"searchable":true,"uid":false},{"label":"Image","name":"img","type":"image","namespace":["eventsIndex","preface","joinAsPresenter","img"],"searchable":false,"uid":false}],"namespace":["eventsIndex","preface","joinAsPresenter"]},{"label":"Join Github","name":"joinGithub","ui":{"previewSrc":"/images/thumbs/tina/join-github.jpg"},"fields":[{"label":"Title","name":"title","type":"string","namespace":["eventsIndex","preface","joinGithub","title"],"searchable":true,"uid":false},{"label":"Join Github Link","name":"link","type":"string","namespace":["eventsIndex","preface","joinGithub","link"],"searchable":true,"uid":false}],"namespace":["eventsIndex","preface","joinGithub"]},{"name":"JotFormEmbed","label":"JotForm Embed","ui":{"previewSrc":"/images/thumbs/tina/jotform-embed.jpg"},"fields":[{"type":"string","name":"jotFormId","label":"JotForm Id","required":true,"namespace":["eventsIndex","preface","JotFormEmbed","jotFormId"],"searchable":true,"uid":false},{"type":"string","label":"Button Text","name":"buttonText","namespace":["eventsIndex","preface","JotFormEmbed","buttonText"],"searchable":true,"uid":false},{"type":"string","name":"containerClass","label":"Container Class","namespace":["eventsIndex","preface","JotFormEmbed","containerClass"],"searchable":true,"uid":false},{"type":"string","label":"Button Class","name":"buttonClass","namespace":["eventsIndex","preface","JotFormEmbed","buttonClass"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","namespace":["eventsIndex","preface","JotFormEmbed","animated"],"searchable":true,"uid":false}],"namespace":["eventsIndex","preface","JotFormEmbed"]},{"name":"LatestTech","label":"Latest Tech","ui":{"previewSrc":"/images/thumbs/tina/latest-tech.jpg"},"fields":[{"type":"reference","description":"Select a config file including a set of badges","collections":["userGroupGlobal"],"label":"Badges","name":"badges","namespace":["eventsIndex","preface","LatestTech","badges"],"searchable":true,"uid":false}],"namespace":["eventsIndex","preface","LatestTech"]},{"name":"LocationBlock","label":"Locations","ui":{"previewSrc":"/images/thumbs/tina/locations.jpg"},"fields":[{"type":"string","name":"title","label":"Title","namespace":["eventsIndex","preface","LocationBlock","title"],"searchable":true,"uid":false},{"type":"object","label":"Location List","name":"locationList","list":true,"ui":{},"fields":[{"type":"reference","collections":["locations"],"label":"Location","name":"location","namespace":["eventsIndex","sidebarBody","LocationBlock","locationList","location"]}],"namespace":["eventsIndex","preface","LocationBlock","locationList"],"searchable":true,"uid":false},{"type":"object","name":"chapelWebsite","label":"Chapel Website","fields":[{"type":"string","name":"title","label":"Text","namespace":["eventsIndex","sidebarBody","LocationBlock","chapelWebsite","title"]},{"type":"string","name":"URL","label":"URL","namespace":["eventsIndex","sidebarBody","LocationBlock","chapelWebsite","URL"]}],"namespace":["eventsIndex","preface","LocationBlock","chapelWebsite"],"searchable":true,"uid":false}],"namespace":["eventsIndex","preface","LocationBlock"]},{"name":"NewslettersTable","label":"Newsletters Table","ui":{"previewSrc":"/images/thumbs/tina/newsletters-table.jpg"},"fields":[{"type":"string","label":"Header text","name":"headerText","namespace":["eventsIndex","preface","NewslettersTable","headerText"],"searchable":true,"uid":false}],"namespace":["eventsIndex","preface","NewslettersTable"]},{"label":"Organizer","name":"organizer","fields":[{"type":"image","label":"Profile Image","name":"profileImg","namespace":["eventsIndex","preface","organizer","profileImg"],"searchable":false,"uid":false},{"type":"string","label":"Profile Link","name":"profileLink","namespace":["eventsIndex","preface","organizer","profileLink"],"searchable":true,"uid":false},{"type":"string","label":"Name","name":"name","namespace":["eventsIndex","preface","organizer","name"],"searchable":true,"uid":false},{"type":"string","label":"Position","name":"position","namespace":["eventsIndex","preface","organizer","position"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","namespace":["eventsIndex","preface","organizer","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["eventsIndex","preface","organizer"]},{"label":"Payment Block","name":"paymentBlock","ui":{"previewSrc":"/images/thumbs/tina/payment-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["eventsIndex","preface","paymentBlock","title"],"searchable":true,"uid":false},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["eventsIndex","preface","paymentBlock","subTitle"],"searchable":true,"uid":false},{"type":"reference","label":"Payment Links","name":"payments","collections":["paymentDetails"],"namespace":["eventsIndex","preface","paymentBlock","payments"],"searchable":true,"uid":false},{"type":"rich-text","label":"Footer","name":"footer","namespace":["eventsIndex","preface","paymentBlock","footer"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"image","label":"Credit Cards Image","name":"creditImgSrc","namespace":["eventsIndex","preface","paymentBlock","creditImgSrc"],"searchable":false,"uid":false},{"type":"string","label":"Alt Text","name":"altTxt","namespace":["eventsIndex","preface","paymentBlock","altTxt"],"searchable":true,"uid":false}],"namespace":["eventsIndex","preface","paymentBlock"]},{"name":"PresenterBlock","label":"Presenters","ui":{"previewSrc":"/images/thumbs/tina/presenters.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["eventsIndex","preface","PresenterBlock","header"],"searchable":true,"uid":false},{"type":"object","name":"presenterList","label":"Presenters","list":true,"ui":{},"fields":[{"type":"reference","name":"presenter","label":"Presenters","collections":["presenter"],"namespace":["eventsIndex","sidebarBody","PresenterBlock","presenterList","presenter"]}],"namespace":["eventsIndex","preface","PresenterBlock","presenterList"],"searchable":true,"uid":false},{"type":"object","label":"Other Events","name":"otherEvent","fields":[{"type":"string","label":"Title","name":"title","namespace":["eventsIndex","sidebarBody","PresenterBlock","otherEvent","title"]},{"type":"string","label":"URL","name":"eventURL","namespace":["eventsIndex","sidebarBody","PresenterBlock","otherEvent","eventURL"]}],"namespace":["eventsIndex","preface","PresenterBlock","otherEvent"],"searchable":true,"uid":false}],"namespace":["eventsIndex","preface","PresenterBlock"]},{"label":"Recurring Event","name":"RecurringEvent","ui":{"previewSrc":"/images/thumbs/tina/recurring-event.jpg"},"fields":[{"type":"string","label":"Apply Link Redirect","name":"applyLinkRedirect","namespace":["eventsIndex","preface","RecurringEvent","applyLinkRedirect"],"searchable":true,"uid":false},{"type":"string","label":"Day","name":"day","options":[{"label":"Monday","value":"monday"},{"label":"Tuesday","value":"tuesday"},{"label":"Wednesday","value":"wednesday"},{"label":"Thursday","value":"thursday"},{"label":"Friday","value":"friday"},{"label":"Saturday","value":"saturday"},{"label":"Sunday","value":"sunday"}],"required":true,"namespace":["eventsIndex","preface","RecurringEvent","day"],"searchable":true,"uid":false}],"namespace":["eventsIndex","preface","RecurringEvent"]},{"name":"SectionHeader","label":"Section Header","ui":{"previewSrc":"/images/thumbs/tina/section-header.jpg"},"fields":[{"type":"string","label":"Header Text","name":"headerText","namespace":["eventsIndex","preface","SectionHeader","headerText"],"searchable":true,"uid":false}],"namespace":["eventsIndex","preface","SectionHeader"]},{"name":"ServiceCards","label":"Service Cards","ui":{"previewSrc":"/images/thumbs/tina/services-cards.jpg"},"fields":[{"type":"string","label":"Big Cards Label","name":"bigCardsLabel","namespace":["eventsIndex","preface","ServiceCards","bigCardsLabel"],"searchable":true,"uid":false},{"label":"Big Cards","name":"bigCards","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["eventsIndex","sidebarBody","ServiceCards","bigCards","title"]},{"type":"string","label":"Description","component":"textarea","name":"description","namespace":["eventsIndex","sidebarBody","ServiceCards","bigCards","description"]},{"type":"string","label":"URL","name":"link","namespace":["eventsIndex","sidebarBody","ServiceCards","bigCards","link"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Red","value":"red"},{"label":"Light Gray","value":"lightgray"},{"label":"Medium Gray","value":"mediumgray"},{"label":"Dark Gray","value":"darkgray"}],"namespace":["eventsIndex","sidebarBody","ServiceCards","bigCards","color"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","ServiceCards","bigCards","imgSrc","uploadDir"]},"namespace":["eventsIndex","sidebarBody","ServiceCards","bigCards","imgSrc"]}],"namespace":["eventsIndex","preface","ServiceCards","bigCards"],"searchable":true,"uid":false},{"type":"string","label":"Small Cards Label","name":"smallCardsLabel","namespace":["eventsIndex","preface","ServiceCards","smallCardsLabel"],"searchable":true,"uid":false},{"label":"Small Cards","name":"smallCards","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["eventsIndex","sidebarBody","ServiceCards","smallCards","title"]},{"type":"string","label":"URL","name":"link","namespace":["eventsIndex","sidebarBody","ServiceCards","smallCards","link"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Red","value":"red"},{"label":"Light Gray","value":"lightgray"},{"label":"Medium Gray","value":"mediumgray"},{"label":"Dark Gray","value":"darkgray"}],"namespace":["eventsIndex","sidebarBody","ServiceCards","smallCards","color"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","ServiceCards","smallCards","imgSrc","uploadDir"]},"namespace":["eventsIndex","sidebarBody","ServiceCards","smallCards","imgSrc"]},{"type":"boolean","label":"External Page","description":"Select this if the link is not part of the website. This includes SSW.Rules, and SSW.People links","name":"isExternal","namespace":["eventsIndex","sidebarBody","ServiceCards","smallCards","isExternal"]}],"namespace":["eventsIndex","preface","ServiceCards","smallCards"],"searchable":true,"uid":false},{"label":"Links","name":"links","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["eventsIndex","sidebarBody","ServiceCards","links","label"]},{"type":"string","label":"URL","name":"link","namespace":["eventsIndex","sidebarBody","ServiceCards","links","link"]}],"namespace":["eventsIndex","preface","ServiceCards","links"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["eventsIndex","preface","ServiceCards","backgroundColor"],"searchable":true,"uid":false}],"namespace":["eventsIndex","preface","ServiceCards"]},{"label":"Table Layout","name":"TableLayout","ui":{"previewSrc":"/images/thumbs/tina/table-layout.jpg"},"fields":[{"label":"Table Style","name":"tableStyle","type":"string","options":["none","basicBorder","styled","benefits"],"namespace":["eventsIndex","preface","TableLayout","tableStyle"],"searchable":true,"uid":false},{"label":"First column bolded + left aligned","name":"firstColBold","type":"boolean","required":false,"namespace":["eventsIndex","preface","TableLayout","firstColBold"],"searchable":true,"uid":false},{"type":"string","label":"Table Headers","name":"headers","list":true,"namespace":["eventsIndex","preface","TableLayout","headers"],"searchable":true,"uid":false},{"type":"object","label":"Rows","name":"rows","list":true,"fields":[{"type":"object","label":"Cells","name":"cells","list":true,"fields":[{"type":"string","label":"Value","name":"cellValue","required":true,"component":{"namespace":["page","beforeBody","TableLayout","rows","cells","cellValue",""]},"namespace":["eventsIndex","afterEvents","TableLayout","rows","cells","cellValue"]}],"ui":{},"namespace":["eventsIndex","sidebarBody","TableLayout","rows","cells"]},{"type":"boolean","label":"Is Heading","name":"isHeader","required":false,"namespace":["eventsIndex","sidebarBody","TableLayout","rows","isHeader"]}],"ui":{},"namespace":["eventsIndex","preface","TableLayout","rows"],"searchable":true,"uid":false}],"namespace":["eventsIndex","preface","TableLayout"]},{"name":"TestimonialsList","label":"Testimonials List","ui":{"previewSrc":"/images/thumbs/tina/testimonials.jpg"},"fields":[{"type":"object","label":"Exclude Categories","name":"excludedCategories","ui":{},"list":true,"fields":[{"type":"reference","label":"Category Name","name":"categoryName","collections":["testimonialCategories"],"namespace":["eventsIndex","sidebarBody","TestimonialsList","excludedCategories","categoryName"]}],"namespace":["eventsIndex","preface","TestimonialsList","excludedCategories"],"searchable":true,"uid":false}],"namespace":["eventsIndex","preface","TestimonialsList"]},{"label":"Training Information","name":"TrainingInformation","ui":{"previewSrc":"/images/thumbs/tina/training-information.jpg"},"fields":[{"type":"object","label":"Training Information Items","name":"trainingInformationItems","list":true,"fields":[{"type":"string","label":"Header","name":"header","namespace":["eventsIndex","sidebarBody","TrainingInformation","trainingInformationItems","header"]},{"type":"rich-text","label":"Body","name":"body","templates":[{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["events","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["events","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["events","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["events","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["events","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","afterBody"]}],"namespace":["eventsIndex","afterEvents","TrainingInformation","trainingInformationItems","body","VerticalListItem"]},{"label":"Recurring Event","name":"RecurringEvent","ui":{"previewSrc":"/images/thumbs/tina/recurring-event.jpg"},"fields":[{"type":"string","label":"Apply Link Redirect","name":"applyLinkRedirect","namespace":["events","_body","TrainingInformation","trainingInformationItems","body","RecurringEvent","applyLinkRedirect"]},{"type":"string","label":"Day","name":"day","options":[{"label":"Monday","value":"monday"},{"label":"Tuesday","value":"tuesday"},{"label":"Wednesday","value":"wednesday"},{"label":"Thursday","value":"thursday"},{"label":"Friday","value":"friday"},{"label":"Saturday","value":"saturday"},{"label":"Sunday","value":"sunday"}],"required":true,"namespace":["events","_body","TrainingInformation","trainingInformationItems","body","RecurringEvent","day"]}],"namespace":["eventsIndex","afterEvents","TrainingInformation","trainingInformationItems","body","RecurringEvent"]}],"namespace":["eventsIndex","sidebarBody","TrainingInformation","trainingInformationItems","body"]}],"namespace":["eventsIndex","preface","TrainingInformation","trainingInformationItems"],"searchable":true,"uid":false}],"namespace":["eventsIndex","preface","TrainingInformation"]},{"label":"Training Learning Outcomes","name":"TrainingLearningOutcome","ui":{"previewSrc":"/images/thumbs/tina/training-learning-outcomes.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["eventsIndex","preface","TrainingLearningOutcome","header"],"searchable":true,"uid":false},{"type":"object","label":"List Items","name":"listItems","list":true,"fields":[{"type":"string","label":"Title","name":"title","namespace":["eventsIndex","sidebarBody","TrainingLearningOutcome","listItems","title"]},{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["eventsIndex","sidebarBody","TrainingLearningOutcome","listItems","content"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","TrainingLearningOutcome","listItems","icon","uploadDir"]},"namespace":["eventsIndex","sidebarBody","TrainingLearningOutcome","listItems","icon"]}],"namespace":["eventsIndex","preface","TrainingLearningOutcome","listItems"],"searchable":true,"uid":false}],"namespace":["eventsIndex","preface","TrainingLearningOutcome"]},{"label":"Tweet Embed","name":"TweetEmbed","ui":{"previewSrc":"/images/thumbs/tina/tweet-embed.jpg"},"fields":[{"type":"string","name":"url","label":"Tweet URL","required":true,"namespace":["eventsIndex","preface","TweetEmbed","url"],"searchable":true,"uid":false}],"namespace":["eventsIndex","preface","TweetEmbed"]},{"name":"UpcomingEvents","label":"Upcoming Events","ui":{"previewSrc":"/images/thumbs/tina/upcoming-events.jpg","defaultItem":{"title":"Upcoming Events","numberOfEvents":30}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["eventsIndex","preface","UpcomingEvents","title"],"searchable":true,"uid":false},{"type":"number","label":"Number of Events","name":"numberOfEvents","namespace":["eventsIndex","preface","UpcomingEvents","numberOfEvents"],"searchable":true,"uid":false}],"namespace":["eventsIndex","preface","UpcomingEvents"]},{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["eventsIndex","preface","UtilityButton","buttonText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"link","required":false,"namespace":["eventsIndex","preface","UtilityButton","link"],"searchable":true,"uid":false},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["eventsIndex","preface","UtilityButton","size"],"searchable":true,"uid":false},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["eventsIndex","preface","UtilityButton","btnIcon"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["eventsIndex","preface","UtilityButton","animated"],"searchable":true,"uid":false},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["eventsIndex","preface","UtilityButton","uncentered"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["eventsIndex","preface","UtilityButton","removeTopMargin"],"searchable":true,"uid":false},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["eventsIndex","preface","UtilityButton","openInNewTab"],"searchable":true,"uid":false}],"namespace":["eventsIndex","preface","UtilityButton"]},{"name":"VerticalImageLayout","label":"Vertical Image Layout","fields":[{"type":"image","label":"Image","name":"imageSrc","uploadDir":{"namespace":["page","beforeBody","VerticalImageLayout","imageSrc","uploadDir"]},"namespace":["eventsIndex","preface","VerticalImageLayout","imageSrc"],"searchable":false,"uid":false},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["eventsIndex","preface","VerticalImageLayout","altText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"imageLink","namespace":["eventsIndex","preface","VerticalImageLayout","imageLink"],"searchable":true,"uid":false},{"type":"number","label":"Height","name":"height","required":true,"namespace":["eventsIndex","preface","VerticalImageLayout","height"],"searchable":true,"uid":false},{"type":"number","label":"Width","name":"width","required":true,"namespace":["eventsIndex","preface","VerticalImageLayout","width"],"searchable":true,"uid":false},{"type":"rich-text","label":"Message","name":"message","required":true,"namespace":["eventsIndex","preface","VerticalImageLayout","message"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["eventsIndex","preface","VerticalImageLayout","sizes"],"searchable":true,"uid":false}],"namespace":["eventsIndex","preface","VerticalImageLayout"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["eventsIndex","preface","VerticalListItem","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"number","label":"Index number","name":"index","namespace":["eventsIndex","preface","VerticalListItem","index"],"searchable":true,"uid":false},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["eventsIndex","preface","VerticalListItem","icon"],"searchable":false,"uid":false},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["eventsIndex","preface","VerticalListItem","iconScale"],"searchable":true,"uid":false},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["eventsIndex","preface","VerticalListItem","afterBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["eventsIndex","preface","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["eventsIndex","preface","VideoEmbed","url"],"searchable":true,"uid":false},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["eventsIndex","preface","VideoEmbed","videoWidth"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["eventsIndex","preface","VideoEmbed","removeMargin"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["eventsIndex","preface","VideoEmbed","uncentre"],"searchable":true,"uid":false},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["eventsIndex","preface","VideoEmbed","overflow"],"searchable":true,"uid":false},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["eventsIndex","preface","VideoEmbed","caption"],"searchable":true,"uid":false},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["eventsIndex","preface","VideoEmbed","duration"],"searchable":true,"uid":false}],"namespace":["eventsIndex","preface","VideoEmbed"]},{"name":"InlineJotForm","label":"In-line JotForm","ui":{"previewSrc":"/images/thumbs/tina/inline-jot-form.jpg"},"fields":[{"type":"string","name":"title","label":"Title","description":"Optional title for JotForm","namespace":["eventsIndex","preface","InlineJotForm","title"],"searchable":true,"uid":false},{"type":"string","name":"jotFormId","label":"JotForm ID","required":true,"namespace":["eventsIndex","preface","InlineJotForm","jotFormId"],"searchable":true,"uid":false},{"type":"string","name":"additionalClasses","label":"Additional classnames","description":"Optional styling for iframe element only","namespace":["eventsIndex","preface","InlineJotForm","additionalClasses"],"searchable":true,"uid":false}],"namespace":["eventsIndex","preface","InlineJotForm"]}],"isBody":true,"namespace":["eventsIndex","preface"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","name":"sidebarBody","label":"Sidebar Body","templates":[{"name":"AboutUs","label":"About Us","ui":{"previewSrc":"/images/thumbs/tina/about-us.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["eventsIndex","sidebarBody","AboutUs","backgroundColor"],"searchable":true,"uid":false},{"type":"boolean","label":"Show Map","name":"showMap","required":false,"namespace":["eventsIndex","sidebarBody","AboutUs","showMap"],"searchable":true,"uid":false}],"namespace":["eventsIndex","sidebarBody","AboutUs"]},{"label":"Agenda","name":"Agenda","ui":{"previewSrc":"/images/thumbs/tina/agenda.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["eventsIndex","sidebarBody","Agenda","header"],"searchable":true,"uid":false},{"type":"string","label":"Header Color","name":"textColor","options":[{"label":"Red","value":"red"},{"label":"Gray","value":"gray"},{"label":"Default","value":"default"}],"namespace":["eventsIndex","sidebarBody","Agenda","textColor"],"searchable":true,"uid":false},{"type":"object","label":"Agenda Items","name":"agendaItemList","ui":{},"list":true,"fields":[{"type":"string","label":"Placeholder Text","name":"placeholder","namespace":["eventsIndex","afterEvents","Agenda","agendaItemList","placeholder"]},{"type":"rich-text","label":"Body","name":"body","templates":[{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["events","footer","Agenda","agendaItemList","body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["events","footer","Agenda","agendaItemList","body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["events","footer","Agenda","agendaItemList","body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["events","footer","Agenda","agendaItemList","body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["events","footer","Agenda","agendaItemList","body","VerticalListItem","afterBody"]}],"namespace":["events","_body","Agenda","agendaItemList","body","VerticalListItem"]}],"namespace":["eventsIndex","afterEvents","Agenda","agendaItemList","body"]}],"namespace":["eventsIndex","sidebarBody","Agenda","agendaItemList"],"searchable":true,"uid":false}],"namespace":["eventsIndex","sidebarBody","Agenda"]},{"label":"Agreement Form","name":"AgreementForm","ui":{"previewSrc":"/images/thumbs/tina/agreement-form.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["eventsIndex","sidebarBody","AgreementForm","backgroundColor"],"searchable":true,"uid":false},{"type":"object","label":"Form fields","name":"fields","list":true,"fields":[{"type":"string","label":"ID","name":"id","required":true,"namespace":["eventsIndex","afterEvents","AgreementForm","fields","id"]},{"type":"string","label":"Label","name":"label","required":true,"namespace":["eventsIndex","afterEvents","AgreementForm","fields","label"]},{"type":"string","label":"Placeholder","name":"placeholder","namespace":["eventsIndex","afterEvents","AgreementForm","fields","placeholder"]},{"type":"boolean","label":"Resizeable","name":"resizeable","required":true,"namespace":["eventsIndex","afterEvents","AgreementForm","fields","resizeable"]}],"namespace":["eventsIndex","sidebarBody","AgreementForm","fields"],"searchable":true,"uid":false}],"namespace":["eventsIndex","sidebarBody","AgreementForm"]},{"label":"Interest Form","name":"InterestForm","ui":{"previewSrc":"/images/thumbs/tina/interest-form.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["eventsIndex","sidebarBody","InterestForm","buttonText"],"searchable":true,"uid":false}],"namespace":["eventsIndex","sidebarBody","InterestForm"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["eventsIndex","sidebarBody","BookingButton","buttonText"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","namespace":["eventsIndex","sidebarBody","BookingButton","animated"],"searchable":true,"uid":false},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["eventsIndex","sidebarBody","BookingButton","buttonSubtitle"],"searchable":true,"uid":false}],"namespace":["eventsIndex","sidebarBody","BookingButton"]},{"name":"BuiltOnAzure","label":"Built on Azure","ui":{"previewSrc":"/images/thumbs/tina/built-on-azure.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["eventsIndex","sidebarBody","BuiltOnAzure","backgroundColor"],"searchable":true,"uid":false}],"namespace":["eventsIndex","sidebarBody","BuiltOnAzure"]},{"name":"Carousel","label":"Carousel","ui":{"previewSrc":"/images/thumbs/tina/carousel.jpg"},"fields":[{"label":"Items","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Item description","link":"/","openIn":"sameWindow"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["eventsIndex","afterEvents","Carousel","items","label"]},{"type":"string","label":"URL","name":"link","description":"If link contains ssw.com.au, you can skip the full URL and just use the path. e.g. /services","namespace":["eventsIndex","afterEvents","Carousel","items","link"]},{"type":"string","label":"Open in","name":"openIn","description":"If it is external link, please select 'New window' option.","options":[{"label":"Same window","value":"sameWindow"},{"label":"Modal","value":"modal"},{"label":"New window","value":"newWindow"}],"namespace":["eventsIndex","afterEvents","Carousel","items","openIn"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","Carousel","items","imgSrc","uploadDir"]},"namespace":["eventsIndex","afterEvents","Carousel","items","imgSrc"]}],"namespace":["eventsIndex","sidebarBody","Carousel","items"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["eventsIndex","sidebarBody","Carousel","backgroundColor"],"searchable":true,"uid":false},{"type":"number","label":"Delay (Seconds)","name":"delay","required":true,"namespace":["eventsIndex","sidebarBody","Carousel","delay"],"searchable":true,"uid":false},{"type":"boolean","label":"Show on mobile devices","name":"showOnMobileDevices","namespace":["eventsIndex","sidebarBody","Carousel","showOnMobileDevices"],"searchable":true,"uid":false}],"namespace":["eventsIndex","sidebarBody","Carousel"]},{"name":"Citation","label":"Citation","fields":[{"type":"string","label":"author","name":"author","namespace":["eventsIndex","sidebarBody","Citation","author"],"searchable":true,"uid":false},{"type":"string","label":"article","name":"article","required":true,"namespace":["eventsIndex","sidebarBody","Citation","article"],"searchable":true,"uid":false}],"namespace":["eventsIndex","sidebarBody","Citation"]},{"label":"Client List","name":"ClientList","ui":{"previewSrc":"/images/thumbs/tina/clients-list.jpg"},"fields":[{"type":"object","name":"categories","label":"Categories","list":true,"fields":[{"type":"reference","name":"category","label":"Category","collections":["clientCategories"],"namespace":["eventsIndex","afterEvents","ClientList","categories","category"]}],"ui":{},"namespace":["eventsIndex","sidebarBody","ClientList","categories"],"searchable":true,"uid":false},{"type":"object","name":"clients","label":"Clients list","list":true,"ui":{"previewSrc":"/images/thumbs/tina/clients-list.jpg"},"fields":[{"type":"string","name":"name","label":"Name","namespace":["eventsIndex","afterEvents","ClientList","clients","name"]},{"type":"image","name":"logo","label":"Logo","namespace":["eventsIndex","afterEvents","ClientList","clients","logo"]},{"type":"string","name":"logoUrl","label":"Logo URL","namespace":["eventsIndex","afterEvents","ClientList","clients","logoUrl"]},{"type":"rich-text","name":"content","label":"Content","templates":[{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["events","footer","ClientList","clients","content","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["events","footer","ClientList","clients","content","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["events","footer","ClientList","clients","content","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["events","footer","ClientList","clients","content","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["events","footer","ClientList","clients","content","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["events","footer","ClientList","clients","content","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["events","footer","ClientList","clients","content","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["events","footer","ClientList","clients","content","UtilityButton","openInNewTab"]}],"namespace":["events","_body","ClientList","clients","content","UtilityButton"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["events","footer","ClientList","clients","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["events","footer","ClientList","clients","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["events","footer","ClientList","clients","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["events","footer","ClientList","clients","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["events","footer","ClientList","clients","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["events","footer","ClientList","clients","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["events","footer","ClientList","clients","content","VideoEmbed","duration"]}],"namespace":["events","_body","ClientList","clients","content","VideoEmbed"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["events","footer","ClientList","clients","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["events","footer","ClientList","clients","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["events","footer","ClientList","clients","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["events","footer","ClientList","clients","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["events","footer","ClientList","clients","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["events","footer","ClientList","clients","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["events","footer","ClientList","clients","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["events","footer","ClientList","clients","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["events","footer","ClientList","clients","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["events","footer","ClientList","clients","content","CustomImage","sizes"]}],"namespace":["events","_body","ClientList","clients","content","CustomImage"]},{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["events","footer","ClientList","clients","content","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["events","footer","ClientList","clients","content","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["industry","_body","ClientList","clients","content","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["industry","_body","ClientList","clients","content","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["industry","_body","ClientList","clients","content","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["industry","_body","ClientList","clients","content","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["industry","_body","ClientList","clients","content","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["industry","_body","ClientList","clients","content","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["industry","_body","ClientList","clients","content","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["industry","_body","ClientList","clients","content","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["industry","_body","ClientList","clients","content","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["industry","_body","ClientList","clients","content","ContentCard","content","CustomImage","sizes"]}],"namespace":["logos","_body","ClientList","clients","content","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["industry","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["industry","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["industry","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["industry","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["industry","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["logos","_body","ClientList","clients","content","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["industry","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["industry","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["industry","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["industry","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["industry","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["industry","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["industry","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","duration"]}],"namespace":["logos","_body","ClientList","clients","content","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["industry","_body","ClientList","clients","content","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["industry","_body","ClientList","clients","content","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["live","subtitle","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["live","subtitle","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["live","subtitle","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["live","subtitle","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["live","subtitle","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["industry","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["logos","_body","ClientList","clients","content","ContentCard","content","ColorBlock"]}],"namespace":["events","footer","ClientList","clients","content","ContentCard","content"]}],"namespace":["events","_body","ClientList","clients","content","ContentCard"]}],"namespace":["eventsIndex","afterEvents","ClientList","clients","content"]},{"type":"string","name":"caseStudyUrl","label":"Case study URL","namespace":["eventsIndex","afterEvents","ClientList","clients","caseStudyUrl"]},{"type":"object","name":"categories","label":"Categories","list":true,"ui":{},"fields":[{"type":"reference","name":"category","label":"Category","collections":["clientCategories"],"namespace":["events","_body","ClientList","clients","categories","category"]}],"namespace":["eventsIndex","afterEvents","ClientList","clients","categories"]}],"namespace":["eventsIndex","sidebarBody","ClientList","clients"],"searchable":true,"uid":false}],"namespace":["eventsIndex","sidebarBody","ClientList"]},{"name":"ClientLogos","label":"Client Logos","ui":{"previewSrc":"/images/thumbs/tina/client-logos.jpg"},"fields":[{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["eventsIndex","sidebarBody","ClientLogos","altText"],"searchable":true,"uid":false}],"namespace":["eventsIndex","sidebarBody","ClientLogos"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["eventsIndex","sidebarBody","ColorBlock","title"],"searchable":true,"uid":false},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["eventsIndex","sidebarBody","ColorBlock","subTitle"],"searchable":true,"uid":false},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["eventsIndex","afterEvents","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["eventsIndex","afterEvents","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["eventsIndex","afterEvents","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["eventsIndex","afterEvents","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["eventsIndex","afterEvents","ColorBlock","colorRow","caption"]}],"namespace":["eventsIndex","sidebarBody","ColorBlock","colorRow"],"searchable":true,"uid":false}],"namespace":["eventsIndex","sidebarBody","ColorBlock"]},{"name":"ColorPalette","label":"Color Palette","ui":{"previewSrc":"/images/thumbs/tina/color-palette.jpg"},"fields":[{"type":"string","label":"Name","name":"name","namespace":["eventsIndex","sidebarBody","ColorPalette","name"],"searchable":true,"uid":false}],"namespace":["eventsIndex","sidebarBody","ColorPalette"]},{"name":"Content","label":"Content","ui":{"previewSrc":"/images/thumbs/tina/content.jpg","defaultItem":{"body":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["eventsIndex","sidebarBody","Content","title"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["events","_body","Content","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["events","_body","Content","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["events","_body","Content","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["events","_body","Content","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["events","_body","Content","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["events","_body","Content","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["events","_body","Content","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["events","_body","Content","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["events","_body","Content","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["events","_body","Content","content","CustomImage","sizes"]}],"namespace":["eventsIndex","afterEvents","Content","content","CustomImage"]},{"name":"ClientLogos","label":"Client Logos","ui":{"previewSrc":"/images/thumbs/tina/client-logos.jpg"},"fields":[{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["events","_body","Content","content","ClientLogos","altText"]}],"namespace":["eventsIndex","afterEvents","Content","content","ClientLogos"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["events","_body","Content","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["events","_body","Content","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["events","_body","Content","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["events","_body","Content","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["events","_body","Content","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["events","_body","Content","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["events","_body","Content","content","VideoEmbed","duration"]}],"namespace":["eventsIndex","afterEvents","Content","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["events","_body","Content","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["events","_body","Content","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["events","footer","Content","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["events","footer","Content","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["events","footer","Content","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["events","footer","Content","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["events","footer","Content","content","ColorBlock","colorRow","caption"]}],"namespace":["events","_body","Content","content","ColorBlock","colorRow"]}],"namespace":["eventsIndex","afterEvents","Content","content","ColorBlock"]}],"namespace":["eventsIndex","sidebarBody","Content","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Container Padding","name":"paddingClass","options":["Mobile: No Padding","Mobile: No Top and Horizontal Padding"],"namespace":["eventsIndex","sidebarBody","Content","paddingClass"],"searchable":true,"uid":false},{"type":"string","label":"Text size","name":"size","options":[{"label":"small","value":"sm"},{"label":"normal","value":"base"},{"label":"large","value":"lg"},{"label":"extra large","value":"xl"},{"label":"2x large","value":"2xl"}],"namespace":["eventsIndex","sidebarBody","Content","size"],"searchable":true,"uid":false},{"type":"string","label":"Align","name":"align","options":[{"label":"Left","value":"left"},{"label":"Center","value":"center"},{"label":"Right","value":"right"}],"namespace":["eventsIndex","sidebarBody","Content","align"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["eventsIndex","sidebarBody","Content","backgroundColor"],"searchable":true,"uid":false}],"namespace":["eventsIndex","sidebarBody","Content"]},{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["eventsIndex","sidebarBody","ContentCard","prose"],"searchable":true,"uid":false},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["eventsIndex","sidebarBody","ContentCard","centerAlignedText"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["events","_body","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["events","_body","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["events","_body","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["events","_body","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["events","_body","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["events","_body","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["events","_body","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["events","_body","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["events","_body","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["events","_body","ContentCard","content","CustomImage","sizes"]}],"namespace":["eventsIndex","afterEvents","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["events","_body","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["events","_body","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["events","_body","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["events","_body","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["events","_body","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["eventsIndex","afterEvents","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["events","_body","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["events","_body","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["events","_body","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["events","_body","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["events","_body","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["events","_body","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["events","_body","ContentCard","content","VideoEmbed","duration"]}],"namespace":["eventsIndex","afterEvents","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["events","_body","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["events","_body","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["events","footer","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["events","footer","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["events","footer","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["events","footer","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["events","footer","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["events","_body","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["eventsIndex","afterEvents","ContentCard","content","ColorBlock"]}],"namespace":["eventsIndex","sidebarBody","ContentCard","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["eventsIndex","sidebarBody","ContentCard"]},{"name":"CustomDownloadButton","label":"Custom Download Button","ui":{"previewSrc":"/images/thumbs/tina/custom-download-button.jpg"},"fields":[{"type":"string","label":"Text","name":"btnText","namespace":["eventsIndex","sidebarBody","CustomDownloadButton","btnText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"btnLink","namespace":["eventsIndex","sidebarBody","CustomDownloadButton","btnLink"],"searchable":true,"uid":false}],"namespace":["eventsIndex","sidebarBody","CustomDownloadButton"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["eventsIndex","sidebarBody","CustomImage","src"],"searchable":false,"uid":false},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["eventsIndex","sidebarBody","CustomImage","altText"],"searchable":true,"uid":false},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["eventsIndex","sidebarBody","CustomImage","alignment"],"searchable":true,"uid":false},{"type":"number","label":"Height","name":"height","required":true,"namespace":["eventsIndex","sidebarBody","CustomImage","height"],"searchable":true,"uid":false},{"type":"number","label":"Width","name":"width","required":true,"namespace":["eventsIndex","sidebarBody","CustomImage","width"],"searchable":true,"uid":false},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["eventsIndex","sidebarBody","CustomImage","link"],"searchable":true,"uid":false},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["eventsIndex","sidebarBody","CustomImage","customClass"],"searchable":true,"uid":false},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["eventsIndex","sidebarBody","CustomImage","caption"],"searchable":true,"uid":false},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["eventsIndex","sidebarBody","CustomImage","captionColor"],"searchable":true,"uid":false},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["eventsIndex","sidebarBody","CustomImage","sizes"],"searchable":true,"uid":false}],"namespace":["eventsIndex","sidebarBody","CustomImage"]},{"name":"DomainFromQuery","label":"Domain from query","ui":{"previewSrc":"/images/thumbs/tina/domain-from-query.jpg"},"fields":[{"name":"title","label":"Title","type":"string","description":"This is a H1 heading","namespace":["eventsIndex","sidebarBody","DomainFromQuery","title"],"searchable":true,"uid":false},{"name":"showDomain","label":"Show domain name","type":"boolean","description":"Query param in URL must have key of 'domain'","namespace":["eventsIndex","sidebarBody","DomainFromQuery","showDomain"],"searchable":true,"uid":false}],"namespace":["eventsIndex","sidebarBody","DomainFromQuery"]},{"name":"DownloadBlock","label":"Download Block","ui":{"previewSrc":"/images/thumbs/tina/download-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["eventsIndex","sidebarBody","DownloadBlock","title"],"searchable":true,"uid":false},{"type":"object","label":"Downloads","name":"downloads","ui":{},"list":true,"fields":[{"type":"string","label":"Header","name":"header","namespace":["eventsIndex","afterEvents","DownloadBlock","downloads","header"]},{"type":"image","label":"Image","name":"img","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","img","uploadDir"]},"namespace":["eventsIndex","afterEvents","DownloadBlock","downloads","img"]},{"type":"string","label":"Image Background","name":"imgBackground","options":["black","grey","white","darkgrey","darkgreen"],"namespace":["eventsIndex","afterEvents","DownloadBlock","downloads","imgBackground"]},{"type":"string","label":"First Link Text","name":"firstLinkText","description":"Defaults to PNG","namespace":["eventsIndex","afterEvents","DownloadBlock","downloads","firstLinkText"]},{"type":"image","label":"First Link","name":"firstLink","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","firstLink","uploadDir"]},"namespace":["eventsIndex","afterEvents","DownloadBlock","downloads","firstLink"]},{"type":"string","label":"Second Link Text","name":"secondLinkText","description":"Defaults to PDF","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","secondLinkText","uploadDir"]},"namespace":["eventsIndex","afterEvents","DownloadBlock","downloads","secondLinkText"]},{"type":"image","label":"Second Link","name":"secondLink","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","secondLink","uploadDir"]},"namespace":["eventsIndex","afterEvents","DownloadBlock","downloads","secondLink"]}],"namespace":["eventsIndex","sidebarBody","DownloadBlock","downloads"],"searchable":true,"uid":false},{"type":"boolean","label":"Bottom border","name":"bottomBorder","namespace":["eventsIndex","sidebarBody","DownloadBlock","bottomBorder"],"searchable":true,"uid":false}],"namespace":["eventsIndex","sidebarBody","DownloadBlock"]},{"name":"DynamicColumns","label":"Dynamic Column Layout","fields":[{"type":"rich-text","label":"Column text body","name":"colBody","required":true,"namespace":["eventsIndex","sidebarBody","DynamicColumns","colBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"number","label":"Number of columns","name":"colCount","required":true,"ui":{},"namespace":["eventsIndex","sidebarBody","DynamicColumns","colCount"],"searchable":true,"uid":false}],"namespace":["eventsIndex","sidebarBody","DynamicColumns"]},{"name":"EventBooking","label":"Events Booking","ui":{"previewSrc":"/images/thumbs/tina/events-booking.jpg"},"fields":[{"type":"number","label":"Duration (In Days)","name":"eventDurationInDays","required":true,"namespace":["eventsIndex","sidebarBody","EventBooking","eventDurationInDays"],"searchable":true,"uid":false},{"type":"number","label":"Price","name":"price","required":true,"namespace":["eventsIndex","sidebarBody","EventBooking","price"],"searchable":true,"uid":false},{"type":"number","label":"Discount Price","name":"discountPrice","namespace":["eventsIndex","sidebarBody","EventBooking","discountPrice"],"searchable":true,"uid":false},{"type":"string","name":"gstText","label":"Select GST Option","options":["inc GST","+ GST"],"required":true,"namespace":["eventsIndex","sidebarBody","EventBooking","gstText"],"searchable":true,"uid":false},{"type":"string","label":"Discount Note","name":"discountNote","namespace":["eventsIndex","sidebarBody","EventBooking","discountNote"],"searchable":true,"uid":false},{"type":"object","label":"Event","name":"eventList","ui":{},"list":true,"fields":[{"type":"string","label":"City","name":"city","namespace":["eventsIndex","afterEvents","EventBooking","eventList","city"]},{"type":"datetime","label":"Start Date","name":"date","ui":{},"namespace":["eventsIndex","afterEvents","EventBooking","eventList","date"]},{"type":"string","label":"Booking URL","name":"bookingURL","namespace":["eventsIndex","afterEvents","EventBooking","eventList","bookingURL"]},{"type":"reference","label":"Location","name":"location","collections":["locations"],"namespace":["eventsIndex","afterEvents","EventBooking","eventList","location"]}],"namespace":["eventsIndex","sidebarBody","EventBooking","eventList"],"searchable":true,"uid":false}],"namespace":["eventsIndex","sidebarBody","EventBooking"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["events","_body","EventLink","content","Flag","country"]}],"namespace":["eventsIndex","afterEvents","EventLink","content","Flag"]}],"namespace":["eventsIndex","sidebarBody","EventLink","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Link","name":"link","namespace":["eventsIndex","sidebarBody","EventLink","link"],"searchable":true,"uid":false},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["eventsIndex","sidebarBody","EventLink","eventThumbnail"],"searchable":false,"uid":false},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["eventsIndex","sidebarBody","EventLink","thumbnailAlt"],"searchable":true,"uid":false}],"namespace":["eventsIndex","sidebarBody","EventLink"]},{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["eventsIndex","sidebarBody","Flag","country"],"searchable":true,"uid":false}],"namespace":["eventsIndex","sidebarBody","Flag"]},{"name":"FixedColumns","label":"Fixed Column Layout (2 columns)","ui":{"previewSrc":"/images/thumbs/tina/fixed-columns.jpg"},"fields":[{"type":"rich-text","label":"Header Section (Optional)","name":"headerSection","namespace":["eventsIndex","sidebarBody","FixedColumns","headerSection"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"First column text","name":"firstColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["events","_body","FixedColumns","firstColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["events","_body","FixedColumns","firstColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["logos","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["logos","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["logos","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["logos","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["logos","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["logos","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["logos","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["logos","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["logos","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["logos","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["events","footer","FixedColumns","firstColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["logos","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["logos","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["logos","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["logos","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["logos","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["events","footer","FixedColumns","firstColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["logos","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["logos","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["logos","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["logos","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["logos","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["logos","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["logos","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["events","footer","FixedColumns","firstColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["logos","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["logos","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["industry","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["industry","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["industry","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["industry","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["industry","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["logos","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["events","footer","FixedColumns","firstColBody","ContentCard","content","ColorBlock"]}],"namespace":["events","_body","FixedColumns","firstColBody","ContentCard","content"]}],"namespace":["eventsIndex","afterEvents","FixedColumns","firstColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["events","_body","FixedColumns","firstColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["events","_body","FixedColumns","firstColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["events","_body","FixedColumns","firstColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["events","_body","FixedColumns","firstColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["events","_body","FixedColumns","firstColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["events","_body","FixedColumns","firstColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["events","_body","FixedColumns","firstColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["events","_body","FixedColumns","firstColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["events","_body","FixedColumns","firstColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["events","_body","FixedColumns","firstColBody","CustomImage","sizes"]}],"namespace":["eventsIndex","afterEvents","FixedColumns","firstColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["logos","_body","FixedColumns","firstColBody","EventLink","content","Flag","country"]}],"namespace":["events","footer","FixedColumns","firstColBody","EventLink","content","Flag"]}],"namespace":["events","_body","FixedColumns","firstColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["events","_body","FixedColumns","firstColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["events","_body","FixedColumns","firstColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["events","_body","FixedColumns","firstColBody","EventLink","thumbnailAlt"]}],"namespace":["eventsIndex","afterEvents","FixedColumns","firstColBody","EventLink"]}],"namespace":["eventsIndex","sidebarBody","FixedColumns","firstColBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"Second column text","name":"secondColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["events","_body","FixedColumns","secondColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["events","_body","FixedColumns","secondColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["logos","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["logos","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["logos","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["logos","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["logos","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["logos","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["logos","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["logos","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["logos","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["logos","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["events","footer","FixedColumns","secondColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["logos","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["logos","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["logos","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["logos","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["logos","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["events","footer","FixedColumns","secondColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["logos","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["logos","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["logos","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["logos","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["logos","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["logos","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["logos","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["events","footer","FixedColumns","secondColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["logos","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["logos","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["industry","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["industry","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["industry","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["industry","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["industry","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["logos","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["events","footer","FixedColumns","secondColBody","ContentCard","content","ColorBlock"]}],"namespace":["events","_body","FixedColumns","secondColBody","ContentCard","content"]}],"namespace":["eventsIndex","afterEvents","FixedColumns","secondColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["events","_body","FixedColumns","secondColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["events","_body","FixedColumns","secondColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["events","_body","FixedColumns","secondColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["events","_body","FixedColumns","secondColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["events","_body","FixedColumns","secondColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["events","_body","FixedColumns","secondColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["events","_body","FixedColumns","secondColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["events","_body","FixedColumns","secondColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["events","_body","FixedColumns","secondColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["events","_body","FixedColumns","secondColBody","CustomImage","sizes"]}],"namespace":["eventsIndex","afterEvents","FixedColumns","secondColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["logos","_body","FixedColumns","secondColBody","EventLink","content","Flag","country"]}],"namespace":["events","footer","FixedColumns","secondColBody","EventLink","content","Flag"]}],"namespace":["events","_body","FixedColumns","secondColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["events","_body","FixedColumns","secondColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["events","_body","FixedColumns","secondColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["events","_body","FixedColumns","secondColBody","EventLink","thumbnailAlt"]}],"namespace":["eventsIndex","afterEvents","FixedColumns","secondColBody","EventLink"]}],"namespace":["eventsIndex","sidebarBody","FixedColumns","secondColBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["eventsIndex","sidebarBody","FixedColumns"]},{"name":"FixedTabsLayout","label":"Fixed Tabs Layout","ui":{"previewSrc":"/images/thumbs/tina/fixed-tabs-layout.jpg"},"fields":[{"type":"string","name":"firstTab","label":"First Tab","namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstTab"],"searchable":true,"uid":false},{"type":"rich-text","name":"firstHeading","label":"First Heading","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["events","_body","FixedTabsLayout","firstHeading","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["events","_body","FixedTabsLayout","firstHeading","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["events","_body","FixedTabsLayout","firstHeading","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["events","_body","FixedTabsLayout","firstHeading","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["events","_body","FixedTabsLayout","firstHeading","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["events","_body","FixedTabsLayout","firstHeading","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["events","_body","FixedTabsLayout","firstHeading","VideoEmbed","duration"]}],"namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstHeading","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["events","_body","FixedTabsLayout","firstHeading","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["events","_body","FixedTabsLayout","firstHeading","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["events","_body","FixedTabsLayout","firstHeading","BookingButton","buttonSubtitle"]}],"namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstHeading","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["events","_body","FixedTabsLayout","firstHeading","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["events","footer","FixedTabsLayout","firstHeading","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["events","footer","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["events","footer","FixedTabsLayout","firstHeading","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["events","footer","FixedTabsLayout","firstHeading","ExpertBlock","expertList","skills"]}],"namespace":["events","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["events","footer","FixedTabsLayout","firstHeading","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["events","footer","FixedTabsLayout","firstHeading","ExpertBlock","link","url"]}],"namespace":["events","_body","FixedTabsLayout","firstHeading","ExpertBlock","link"]}],"namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstHeading","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["events","footer","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["events","footer","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["events","footer","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["logos","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["logos","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["logos","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["events","footer","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["events","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstHeading","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["events","_body","FixedTabsLayout","firstHeading","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["events","_body","FixedTabsLayout","firstHeading","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["events","_body","FixedTabsLayout","firstHeading","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["events","_body","FixedTabsLayout","firstHeading","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["events","_body","FixedTabsLayout","firstHeading","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["events","_body","FixedTabsLayout","firstHeading","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["events","_body","FixedTabsLayout","firstHeading","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["events","_body","FixedTabsLayout","firstHeading","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["events","_body","FixedTabsLayout","firstHeading","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["events","_body","FixedTabsLayout","firstHeading","CustomImage","sizes"]}],"namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstHeading","CustomImage"]}],"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstHeading"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","name":"firstBody","label":"First Body","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["events","_body","FixedTabsLayout","firstBody","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["events","_body","FixedTabsLayout","firstBody","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["events","_body","FixedTabsLayout","firstBody","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["events","_body","FixedTabsLayout","firstBody","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["events","_body","FixedTabsLayout","firstBody","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["events","_body","FixedTabsLayout","firstBody","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["events","_body","FixedTabsLayout","firstBody","VideoEmbed","duration"]}],"namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstBody","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["events","_body","FixedTabsLayout","firstBody","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["events","_body","FixedTabsLayout","firstBody","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["events","_body","FixedTabsLayout","firstBody","BookingButton","buttonSubtitle"]}],"namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstBody","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["events","_body","FixedTabsLayout","firstBody","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["events","footer","FixedTabsLayout","firstBody","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["events","footer","FixedTabsLayout","firstBody","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["events","footer","FixedTabsLayout","firstBody","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["events","footer","FixedTabsLayout","firstBody","ExpertBlock","expertList","skills"]}],"namespace":["events","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["events","footer","FixedTabsLayout","firstBody","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["events","footer","FixedTabsLayout","firstBody","ExpertBlock","link","url"]}],"namespace":["events","_body","FixedTabsLayout","firstBody","ExpertBlock","link"]}],"namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstBody","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["events","footer","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["events","footer","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["events","footer","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["logos","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["logos","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["logos","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["events","footer","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["events","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstBody","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["events","_body","FixedTabsLayout","firstBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["events","_body","FixedTabsLayout","firstBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["events","_body","FixedTabsLayout","firstBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["events","_body","FixedTabsLayout","firstBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["events","_body","FixedTabsLayout","firstBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["events","_body","FixedTabsLayout","firstBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["events","_body","FixedTabsLayout","firstBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["events","_body","FixedTabsLayout","firstBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["events","_body","FixedTabsLayout","firstBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["events","_body","FixedTabsLayout","firstBody","CustomImage","sizes"]}],"namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstBody","CustomImage"]}],"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","firstBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","name":"secondTab","label":"Second Tab","namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondTab"],"searchable":true,"uid":false},{"type":"rich-text","name":"secondHeading","label":"Second Heading","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["events","_body","FixedTabsLayout","secondHeading","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["events","_body","FixedTabsLayout","secondHeading","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["events","_body","FixedTabsLayout","secondHeading","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["events","_body","FixedTabsLayout","secondHeading","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["events","_body","FixedTabsLayout","secondHeading","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["events","_body","FixedTabsLayout","secondHeading","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["events","_body","FixedTabsLayout","secondHeading","VideoEmbed","duration"]}],"namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondHeading","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["events","_body","FixedTabsLayout","secondHeading","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["events","_body","FixedTabsLayout","secondHeading","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["events","_body","FixedTabsLayout","secondHeading","BookingButton","buttonSubtitle"]}],"namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondHeading","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["events","_body","FixedTabsLayout","secondHeading","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["events","footer","FixedTabsLayout","secondHeading","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["events","footer","FixedTabsLayout","secondHeading","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["events","footer","FixedTabsLayout","secondHeading","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["events","footer","FixedTabsLayout","secondHeading","ExpertBlock","expertList","skills"]}],"namespace":["events","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["events","footer","FixedTabsLayout","secondHeading","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["events","footer","FixedTabsLayout","secondHeading","ExpertBlock","link","url"]}],"namespace":["events","_body","FixedTabsLayout","secondHeading","ExpertBlock","link"]}],"namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondHeading","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["events","footer","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["events","footer","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["events","footer","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["logos","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["logos","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["logos","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["events","footer","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["events","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondHeading","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["events","_body","FixedTabsLayout","secondHeading","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["events","_body","FixedTabsLayout","secondHeading","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["events","_body","FixedTabsLayout","secondHeading","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["events","_body","FixedTabsLayout","secondHeading","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["events","_body","FixedTabsLayout","secondHeading","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["events","_body","FixedTabsLayout","secondHeading","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["events","_body","FixedTabsLayout","secondHeading","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["events","_body","FixedTabsLayout","secondHeading","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["events","_body","FixedTabsLayout","secondHeading","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["events","_body","FixedTabsLayout","secondHeading","CustomImage","sizes"]}],"namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondHeading","CustomImage"]}],"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondHeading"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","name":"secondBody","label":"Second Body","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["events","_body","FixedTabsLayout","secondBody","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["events","_body","FixedTabsLayout","secondBody","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["events","_body","FixedTabsLayout","secondBody","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["events","_body","FixedTabsLayout","secondBody","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["events","_body","FixedTabsLayout","secondBody","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["events","_body","FixedTabsLayout","secondBody","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["events","_body","FixedTabsLayout","secondBody","VideoEmbed","duration"]}],"namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondBody","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["events","_body","FixedTabsLayout","secondBody","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["events","_body","FixedTabsLayout","secondBody","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["events","_body","FixedTabsLayout","secondBody","BookingButton","buttonSubtitle"]}],"namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondBody","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["events","_body","FixedTabsLayout","secondBody","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["events","footer","FixedTabsLayout","secondBody","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["events","footer","FixedTabsLayout","secondBody","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["events","footer","FixedTabsLayout","secondBody","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["events","footer","FixedTabsLayout","secondBody","ExpertBlock","expertList","skills"]}],"namespace":["events","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["events","footer","FixedTabsLayout","secondBody","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["events","footer","FixedTabsLayout","secondBody","ExpertBlock","link","url"]}],"namespace":["events","_body","FixedTabsLayout","secondBody","ExpertBlock","link"]}],"namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondBody","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["events","footer","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["events","footer","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["events","footer","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["logos","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["logos","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["logos","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["events","footer","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["events","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondBody","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["events","_body","FixedTabsLayout","secondBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["events","_body","FixedTabsLayout","secondBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["events","_body","FixedTabsLayout","secondBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["events","_body","FixedTabsLayout","secondBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["events","_body","FixedTabsLayout","secondBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["events","_body","FixedTabsLayout","secondBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["events","_body","FixedTabsLayout","secondBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["events","_body","FixedTabsLayout","secondBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["events","_body","FixedTabsLayout","secondBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["events","_body","FixedTabsLayout","secondBody","CustomImage","sizes"]}],"namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondBody","CustomImage"]}],"namespace":["eventsIndex","sidebarBody","FixedTabsLayout","secondBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["eventsIndex","sidebarBody","FixedTabsLayout"]},{"label":"Google Maps","name":"GoogleMaps","ui":{"previewSrc":"/images/thumbs/tina/google-maps.jpg"},"fields":[{"type":"string","label":"URL","name":"embedUrl","required":true,"namespace":["eventsIndex","sidebarBody","GoogleMaps","embedUrl"],"searchable":true,"uid":false},{"type":"string","label":"Width","name":"embedWidth","namespace":["eventsIndex","sidebarBody","GoogleMaps","embedWidth"],"searchable":true,"uid":false},{"type":"string","label":"Height","name":"embedHeight","namespace":["eventsIndex","sidebarBody","GoogleMaps","embedHeight"],"searchable":true,"uid":false}],"namespace":["eventsIndex","sidebarBody","GoogleMaps"]},{"label":"Grid Layout","name":"GridLayout","ui":{"previewSrc":"/images/thumbs/tina/grid-layout.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["eventsIndex","sidebarBody","GridLayout","title"],"searchable":true,"uid":false},{"type":"object","list":true,"label":"Grid Items","name":"grids","ui":{},"fields":[{"type":"string","label":"Grid Title","name":"gridTitle","namespace":["eventsIndex","afterEvents","GridLayout","grids","gridTitle"]},{"type":"boolean","label":"Show Grid Title","name":"showGridTitle","namespace":["eventsIndex","afterEvents","GridLayout","grids","showGridTitle"]},{"type":"boolean","label":"Centered Grid Title","name":"centeredGridTitle","namespace":["eventsIndex","afterEvents","GridLayout","grids","centeredGridTitle"]},{"type":"boolean","label":"Show Header Divider","name":"showHeaderDivider","namespace":["eventsIndex","afterEvents","GridLayout","grids","showHeaderDivider"]},{"type":"boolean","label":"Offset Grid Start","name":"offsetGridStart","namespace":["eventsIndex","afterEvents","GridLayout","grids","offsetGridStart"]},{"type":"object","label":"Blocks","name":"blocks","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["events","_body","GridLayout","grids","blocks","title"]},{"type":"boolean","label":"Show Title","name":"showTitle","namespace":["events","_body","GridLayout","grids","blocks","showTitle"]},{"type":"image","label":"Image","name":"image","uploadDir":{"namespace":["page","beforeBody","GridLayout","grids","blocks","image","uploadDir"]},"namespace":["events","_body","GridLayout","grids","blocks","image"]},{"type":"image","label":"Related Image","name":"relatedImage","uploadDir":{"namespace":["page","beforeBody","GridLayout","grids","blocks","relatedImage","uploadDir"]},"namespace":["events","_body","GridLayout","grids","blocks","relatedImage"]},{"type":"rich-text","name":"linkContent","label":"Link Content","templates":[{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["logos","_body","GridLayout","grids","blocks","linkContent","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["logos","_body","GridLayout","grids","blocks","linkContent","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["logos","_body","GridLayout","grids","blocks","linkContent","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["logos","_body","GridLayout","grids","blocks","linkContent","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["logos","_body","GridLayout","grids","blocks","linkContent","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["logos","_body","GridLayout","grids","blocks","linkContent","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["logos","_body","GridLayout","grids","blocks","linkContent","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["logos","_body","GridLayout","grids","blocks","linkContent","UtilityButton","openInNewTab"]}],"namespace":["events","footer","GridLayout","grids","blocks","linkContent","UtilityButton"]}],"namespace":["events","_body","GridLayout","grids","blocks","linkContent"]}],"namespace":["eventsIndex","afterEvents","GridLayout","grids","blocks"]}],"namespace":["eventsIndex","sidebarBody","GridLayout","grids"],"searchable":true,"uid":false}],"namespace":["eventsIndex","sidebarBody","GridLayout"]},{"name":"Hero","label":"Hero","ui":{"previewSrc":"/blocks/hero.png","defaultItem":{"tagline":"Here's some text above the other text","headline":"This Big Text is Totally Awesome","text":"Phasellus scelerisque, libero eu finibus rutrum, risus risus accumsan libero, nec molestie urna dui a leo."}},"fields":[{"type":"string","label":"Tagline","name":"tagline","namespace":["eventsIndex","sidebarBody","Hero","tagline"],"searchable":true,"uid":false},{"type":"string","label":"Headline","name":"headline","namespace":["eventsIndex","sidebarBody","Hero","headline"],"searchable":true,"uid":false},{"label":"Text","name":"text","type":"rich-text","namespace":["eventsIndex","sidebarBody","Hero","text"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"label":"Actions","name":"actions","type":"object","list":true,"ui":{"defaultItem":{"label":"Action Label","type":"button","icon":true,"link":"/"}},"fields":[{"label":"Label","name":"label","type":"string","namespace":["eventsIndex","afterEvents","Hero","actions","label"]},{"label":"Type","name":"type","type":"string","options":[{"label":"Button","value":"button"},{"label":"Link","value":"link"}],"namespace":["eventsIndex","afterEvents","Hero","actions","type"]},{"label":"Icon","name":"icon","type":"boolean","namespace":["eventsIndex","afterEvents","Hero","actions","icon"]},{"label":"Link","name":"link","type":"string","namespace":["eventsIndex","afterEvents","Hero","actions","link"]}],"namespace":["eventsIndex","sidebarBody","Hero","actions"],"searchable":true,"uid":false},{"type":"object","label":"Image","name":"image","fields":[{"name":"src","label":"Image Source","type":"image","namespace":["eventsIndex","afterEvents","Hero","image","src"]},{"name":"alt","label":"Alt Text","type":"string","namespace":["eventsIndex","afterEvents","Hero","image","alt"]}],"namespace":["eventsIndex","sidebarBody","Hero","image"],"searchable":true,"uid":false},{"type":"string","label":"Color","name":"color","options":[{"label":"Default","value":"default"},{"label":"Tint","value":"tint"},{"label":"Primary","value":"primary"}],"namespace":["eventsIndex","sidebarBody","Hero","color"],"searchable":true,"uid":false}],"namespace":["eventsIndex","sidebarBody","Hero"]},{"name":"HorizontalCard","label":"Horizontal Card","ui":{"previewSrc":"/images/thumbs/tina/horizontal-card.jpg"},"fields":[{"type":"object","label":"Cards","name":"cardList","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["eventsIndex","afterEvents","HorizontalCard","cardList","title"]},{"type":"rich-text","label":"Content","name":"content","namespace":["eventsIndex","afterEvents","HorizontalCard","cardList","content"]},{"type":"image","label":"Thumbnail","name":"thumbnail","uploadDir":{"namespace":["page","beforeBody","HorizontalCard","cardList","thumbnail","uploadDir"]},"namespace":["eventsIndex","afterEvents","HorizontalCard","cardList","thumbnail"]},{"type":"string","label":"Link","name":"link","namespace":["eventsIndex","afterEvents","HorizontalCard","cardList","link"]}],"namespace":["eventsIndex","sidebarBody","HorizontalCard","cardList"],"searchable":true,"uid":false},{"type":"object","label":"Button","name":"button","fields":[{"type":"string","label":"Text","name":"text","namespace":["eventsIndex","afterEvents","HorizontalCard","button","text"]},{"type":"string","label":"Link","name":"link","namespace":["eventsIndex","afterEvents","HorizontalCard","button","link"]}],"namespace":["eventsIndex","sidebarBody","HorizontalCard","button"],"searchable":true,"uid":false}],"namespace":["eventsIndex","sidebarBody","HorizontalCard"]},{"name":"InternalCarousel","label":"Internal Carousel","ui":{"previewSrc":"/images/thumbs/tina/internal-carousel.jpg"},"fields":[{"label":"Images","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Image description"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["eventsIndex","afterEvents","InternalCarousel","items","label"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","InternalCarousel","items","imgSrc","uploadDir"]},"namespace":["eventsIndex","afterEvents","InternalCarousel","items","imgSrc"]}],"namespace":["eventsIndex","sidebarBody","InternalCarousel","items"],"searchable":true,"uid":false},{"type":"string","label":"Header","name":"header","namespace":["eventsIndex","sidebarBody","InternalCarousel","header"],"searchable":true,"uid":false},{"type":"rich-text","label":"Text","name":"paragraph","isBody":false,"namespace":["eventsIndex","sidebarBody","InternalCarousel","paragraph"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Website","name":"website","namespace":["eventsIndex","sidebarBody","InternalCarousel","website"],"searchable":true,"uid":false},{"type":"object","label":"Technologies","name":"technologies","list":true,"ui":{},"fields":[{"type":"string","label":"Name","name":"name","namespace":["eventsIndex","afterEvents","InternalCarousel","technologies","name"]}],"namespace":["eventsIndex","sidebarBody","InternalCarousel","technologies"],"searchable":true,"uid":false},{"type":"string","label":"Case Study","name":"caseStudyUrl","namespace":["eventsIndex","sidebarBody","InternalCarousel","caseStudyUrl"],"searchable":true,"uid":false},{"type":"string","label":"Video URL","name":"videoUrl","namespace":["eventsIndex","sidebarBody","InternalCarousel","videoUrl"],"searchable":true,"uid":false}],"namespace":["eventsIndex","sidebarBody","InternalCarousel"]},{"label":"Join As Presenter","name":"joinAsPresenter","fields":[{"label":"Learn More Link","name":"link","type":"string","namespace":["eventsIndex","sidebarBody","joinAsPresenter","link"],"searchable":true,"uid":false},{"label":"Image","name":"img","type":"image","namespace":["eventsIndex","sidebarBody","joinAsPresenter","img"],"searchable":false,"uid":false}],"namespace":["eventsIndex","sidebarBody","joinAsPresenter"]},{"label":"Join Github","name":"joinGithub","ui":{"previewSrc":"/images/thumbs/tina/join-github.jpg"},"fields":[{"label":"Title","name":"title","type":"string","namespace":["eventsIndex","sidebarBody","joinGithub","title"],"searchable":true,"uid":false},{"label":"Join Github Link","name":"link","type":"string","namespace":["eventsIndex","sidebarBody","joinGithub","link"],"searchable":true,"uid":false}],"namespace":["eventsIndex","sidebarBody","joinGithub"]},{"name":"JotFormEmbed","label":"JotForm Embed","ui":{"previewSrc":"/images/thumbs/tina/jotform-embed.jpg"},"fields":[{"type":"string","name":"jotFormId","label":"JotForm Id","required":true,"namespace":["eventsIndex","sidebarBody","JotFormEmbed","jotFormId"],"searchable":true,"uid":false},{"type":"string","label":"Button Text","name":"buttonText","namespace":["eventsIndex","sidebarBody","JotFormEmbed","buttonText"],"searchable":true,"uid":false},{"type":"string","name":"containerClass","label":"Container Class","namespace":["eventsIndex","sidebarBody","JotFormEmbed","containerClass"],"searchable":true,"uid":false},{"type":"string","label":"Button Class","name":"buttonClass","namespace":["eventsIndex","sidebarBody","JotFormEmbed","buttonClass"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","namespace":["eventsIndex","sidebarBody","JotFormEmbed","animated"],"searchable":true,"uid":false}],"namespace":["eventsIndex","sidebarBody","JotFormEmbed"]},{"name":"LatestTech","label":"Latest Tech","ui":{"previewSrc":"/images/thumbs/tina/latest-tech.jpg"},"fields":[{"type":"reference","description":"Select a config file including a set of badges","collections":["userGroupGlobal"],"label":"Badges","name":"badges","namespace":["eventsIndex","sidebarBody","LatestTech","badges"],"searchable":true,"uid":false}],"namespace":["eventsIndex","sidebarBody","LatestTech"]},{"name":"LocationBlock","label":"Locations","ui":{"previewSrc":"/images/thumbs/tina/locations.jpg"},"fields":[{"type":"string","name":"title","label":"Title","namespace":["eventsIndex","sidebarBody","LocationBlock","title"],"searchable":true,"uid":false},{"type":"object","label":"Location List","name":"locationList","list":true,"ui":{},"fields":[{"type":"reference","collections":["locations"],"label":"Location","name":"location","namespace":["eventsIndex","afterEvents","LocationBlock","locationList","location"]}],"namespace":["eventsIndex","sidebarBody","LocationBlock","locationList"],"searchable":true,"uid":false},{"type":"object","name":"chapelWebsite","label":"Chapel Website","fields":[{"type":"string","name":"title","label":"Text","namespace":["eventsIndex","afterEvents","LocationBlock","chapelWebsite","title"]},{"type":"string","name":"URL","label":"URL","namespace":["eventsIndex","afterEvents","LocationBlock","chapelWebsite","URL"]}],"namespace":["eventsIndex","sidebarBody","LocationBlock","chapelWebsite"],"searchable":true,"uid":false}],"namespace":["eventsIndex","sidebarBody","LocationBlock"]},{"name":"NewslettersTable","label":"Newsletters Table","ui":{"previewSrc":"/images/thumbs/tina/newsletters-table.jpg"},"fields":[{"type":"string","label":"Header text","name":"headerText","namespace":["eventsIndex","sidebarBody","NewslettersTable","headerText"],"searchable":true,"uid":false}],"namespace":["eventsIndex","sidebarBody","NewslettersTable"]},{"label":"Organizer","name":"organizer","fields":[{"type":"image","label":"Profile Image","name":"profileImg","namespace":["eventsIndex","sidebarBody","organizer","profileImg"],"searchable":false,"uid":false},{"type":"string","label":"Profile Link","name":"profileLink","namespace":["eventsIndex","sidebarBody","organizer","profileLink"],"searchable":true,"uid":false},{"type":"string","label":"Name","name":"name","namespace":["eventsIndex","sidebarBody","organizer","name"],"searchable":true,"uid":false},{"type":"string","label":"Position","name":"position","namespace":["eventsIndex","sidebarBody","organizer","position"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","namespace":["eventsIndex","sidebarBody","organizer","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["eventsIndex","sidebarBody","organizer"]},{"label":"Payment Block","name":"paymentBlock","ui":{"previewSrc":"/images/thumbs/tina/payment-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["eventsIndex","sidebarBody","paymentBlock","title"],"searchable":true,"uid":false},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["eventsIndex","sidebarBody","paymentBlock","subTitle"],"searchable":true,"uid":false},{"type":"reference","label":"Payment Links","name":"payments","collections":["paymentDetails"],"namespace":["eventsIndex","sidebarBody","paymentBlock","payments"],"searchable":true,"uid":false},{"type":"rich-text","label":"Footer","name":"footer","namespace":["eventsIndex","sidebarBody","paymentBlock","footer"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"image","label":"Credit Cards Image","name":"creditImgSrc","namespace":["eventsIndex","sidebarBody","paymentBlock","creditImgSrc"],"searchable":false,"uid":false},{"type":"string","label":"Alt Text","name":"altTxt","namespace":["eventsIndex","sidebarBody","paymentBlock","altTxt"],"searchable":true,"uid":false}],"namespace":["eventsIndex","sidebarBody","paymentBlock"]},{"name":"PresenterBlock","label":"Presenters","ui":{"previewSrc":"/images/thumbs/tina/presenters.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["eventsIndex","sidebarBody","PresenterBlock","header"],"searchable":true,"uid":false},{"type":"object","name":"presenterList","label":"Presenters","list":true,"ui":{},"fields":[{"type":"reference","name":"presenter","label":"Presenters","collections":["presenter"],"namespace":["eventsIndex","afterEvents","PresenterBlock","presenterList","presenter"]}],"namespace":["eventsIndex","sidebarBody","PresenterBlock","presenterList"],"searchable":true,"uid":false},{"type":"object","label":"Other Events","name":"otherEvent","fields":[{"type":"string","label":"Title","name":"title","namespace":["eventsIndex","afterEvents","PresenterBlock","otherEvent","title"]},{"type":"string","label":"URL","name":"eventURL","namespace":["eventsIndex","afterEvents","PresenterBlock","otherEvent","eventURL"]}],"namespace":["eventsIndex","sidebarBody","PresenterBlock","otherEvent"],"searchable":true,"uid":false}],"namespace":["eventsIndex","sidebarBody","PresenterBlock"]},{"label":"Recurring Event","name":"RecurringEvent","ui":{"previewSrc":"/images/thumbs/tina/recurring-event.jpg"},"fields":[{"type":"string","label":"Apply Link Redirect","name":"applyLinkRedirect","namespace":["eventsIndex","sidebarBody","RecurringEvent","applyLinkRedirect"],"searchable":true,"uid":false},{"type":"string","label":"Day","name":"day","options":[{"label":"Monday","value":"monday"},{"label":"Tuesday","value":"tuesday"},{"label":"Wednesday","value":"wednesday"},{"label":"Thursday","value":"thursday"},{"label":"Friday","value":"friday"},{"label":"Saturday","value":"saturday"},{"label":"Sunday","value":"sunday"}],"required":true,"namespace":["eventsIndex","sidebarBody","RecurringEvent","day"],"searchable":true,"uid":false}],"namespace":["eventsIndex","sidebarBody","RecurringEvent"]},{"name":"SectionHeader","label":"Section Header","ui":{"previewSrc":"/images/thumbs/tina/section-header.jpg"},"fields":[{"type":"string","label":"Header Text","name":"headerText","namespace":["eventsIndex","sidebarBody","SectionHeader","headerText"],"searchable":true,"uid":false}],"namespace":["eventsIndex","sidebarBody","SectionHeader"]},{"name":"ServiceCards","label":"Service Cards","ui":{"previewSrc":"/images/thumbs/tina/services-cards.jpg"},"fields":[{"type":"string","label":"Big Cards Label","name":"bigCardsLabel","namespace":["eventsIndex","sidebarBody","ServiceCards","bigCardsLabel"],"searchable":true,"uid":false},{"label":"Big Cards","name":"bigCards","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["eventsIndex","afterEvents","ServiceCards","bigCards","title"]},{"type":"string","label":"Description","component":"textarea","name":"description","namespace":["eventsIndex","afterEvents","ServiceCards","bigCards","description"]},{"type":"string","label":"URL","name":"link","namespace":["eventsIndex","afterEvents","ServiceCards","bigCards","link"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Red","value":"red"},{"label":"Light Gray","value":"lightgray"},{"label":"Medium Gray","value":"mediumgray"},{"label":"Dark Gray","value":"darkgray"}],"namespace":["eventsIndex","afterEvents","ServiceCards","bigCards","color"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","ServiceCards","bigCards","imgSrc","uploadDir"]},"namespace":["eventsIndex","afterEvents","ServiceCards","bigCards","imgSrc"]}],"namespace":["eventsIndex","sidebarBody","ServiceCards","bigCards"],"searchable":true,"uid":false},{"type":"string","label":"Small Cards Label","name":"smallCardsLabel","namespace":["eventsIndex","sidebarBody","ServiceCards","smallCardsLabel"],"searchable":true,"uid":false},{"label":"Small Cards","name":"smallCards","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["eventsIndex","afterEvents","ServiceCards","smallCards","title"]},{"type":"string","label":"URL","name":"link","namespace":["eventsIndex","afterEvents","ServiceCards","smallCards","link"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Red","value":"red"},{"label":"Light Gray","value":"lightgray"},{"label":"Medium Gray","value":"mediumgray"},{"label":"Dark Gray","value":"darkgray"}],"namespace":["eventsIndex","afterEvents","ServiceCards","smallCards","color"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","ServiceCards","smallCards","imgSrc","uploadDir"]},"namespace":["eventsIndex","afterEvents","ServiceCards","smallCards","imgSrc"]},{"type":"boolean","label":"External Page","description":"Select this if the link is not part of the website. This includes SSW.Rules, and SSW.People links","name":"isExternal","namespace":["eventsIndex","afterEvents","ServiceCards","smallCards","isExternal"]}],"namespace":["eventsIndex","sidebarBody","ServiceCards","smallCards"],"searchable":true,"uid":false},{"label":"Links","name":"links","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["eventsIndex","afterEvents","ServiceCards","links","label"]},{"type":"string","label":"URL","name":"link","namespace":["eventsIndex","afterEvents","ServiceCards","links","link"]}],"namespace":["eventsIndex","sidebarBody","ServiceCards","links"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["eventsIndex","sidebarBody","ServiceCards","backgroundColor"],"searchable":true,"uid":false}],"namespace":["eventsIndex","sidebarBody","ServiceCards"]},{"label":"Table Layout","name":"TableLayout","ui":{"previewSrc":"/images/thumbs/tina/table-layout.jpg"},"fields":[{"label":"Table Style","name":"tableStyle","type":"string","options":["none","basicBorder","styled","benefits"],"namespace":["eventsIndex","sidebarBody","TableLayout","tableStyle"],"searchable":true,"uid":false},{"label":"First column bolded + left aligned","name":"firstColBold","type":"boolean","required":false,"namespace":["eventsIndex","sidebarBody","TableLayout","firstColBold"],"searchable":true,"uid":false},{"type":"string","label":"Table Headers","name":"headers","list":true,"namespace":["eventsIndex","sidebarBody","TableLayout","headers"],"searchable":true,"uid":false},{"type":"object","label":"Rows","name":"rows","list":true,"fields":[{"type":"object","label":"Cells","name":"cells","list":true,"fields":[{"type":"string","label":"Value","name":"cellValue","required":true,"component":{"namespace":["page","beforeBody","TableLayout","rows","cells","cellValue",""]},"namespace":["events","_body","TableLayout","rows","cells","cellValue"]}],"ui":{},"namespace":["eventsIndex","afterEvents","TableLayout","rows","cells"]},{"type":"boolean","label":"Is Heading","name":"isHeader","required":false,"namespace":["eventsIndex","afterEvents","TableLayout","rows","isHeader"]}],"ui":{},"namespace":["eventsIndex","sidebarBody","TableLayout","rows"],"searchable":true,"uid":false}],"namespace":["eventsIndex","sidebarBody","TableLayout"]},{"name":"TestimonialsList","label":"Testimonials List","ui":{"previewSrc":"/images/thumbs/tina/testimonials.jpg"},"fields":[{"type":"object","label":"Exclude Categories","name":"excludedCategories","ui":{},"list":true,"fields":[{"type":"reference","label":"Category Name","name":"categoryName","collections":["testimonialCategories"],"namespace":["eventsIndex","afterEvents","TestimonialsList","excludedCategories","categoryName"]}],"namespace":["eventsIndex","sidebarBody","TestimonialsList","excludedCategories"],"searchable":true,"uid":false}],"namespace":["eventsIndex","sidebarBody","TestimonialsList"]},{"label":"Training Information","name":"TrainingInformation","ui":{"previewSrc":"/images/thumbs/tina/training-information.jpg"},"fields":[{"type":"object","label":"Training Information Items","name":"trainingInformationItems","list":true,"fields":[{"type":"string","label":"Header","name":"header","namespace":["eventsIndex","afterEvents","TrainingInformation","trainingInformationItems","header"]},{"type":"rich-text","label":"Body","name":"body","templates":[{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["events","footer","TrainingInformation","trainingInformationItems","body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["events","footer","TrainingInformation","trainingInformationItems","body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["events","footer","TrainingInformation","trainingInformationItems","body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["events","footer","TrainingInformation","trainingInformationItems","body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["events","footer","TrainingInformation","trainingInformationItems","body","VerticalListItem","afterBody"]}],"namespace":["events","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem"]},{"label":"Recurring Event","name":"RecurringEvent","ui":{"previewSrc":"/images/thumbs/tina/recurring-event.jpg"},"fields":[{"type":"string","label":"Apply Link Redirect","name":"applyLinkRedirect","namespace":["events","footer","TrainingInformation","trainingInformationItems","body","RecurringEvent","applyLinkRedirect"]},{"type":"string","label":"Day","name":"day","options":[{"label":"Monday","value":"monday"},{"label":"Tuesday","value":"tuesday"},{"label":"Wednesday","value":"wednesday"},{"label":"Thursday","value":"thursday"},{"label":"Friday","value":"friday"},{"label":"Saturday","value":"saturday"},{"label":"Sunday","value":"sunday"}],"required":true,"namespace":["events","footer","TrainingInformation","trainingInformationItems","body","RecurringEvent","day"]}],"namespace":["events","_body","TrainingInformation","trainingInformationItems","body","RecurringEvent"]}],"namespace":["eventsIndex","afterEvents","TrainingInformation","trainingInformationItems","body"]}],"namespace":["eventsIndex","sidebarBody","TrainingInformation","trainingInformationItems"],"searchable":true,"uid":false}],"namespace":["eventsIndex","sidebarBody","TrainingInformation"]},{"label":"Training Learning Outcomes","name":"TrainingLearningOutcome","ui":{"previewSrc":"/images/thumbs/tina/training-learning-outcomes.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["eventsIndex","sidebarBody","TrainingLearningOutcome","header"],"searchable":true,"uid":false},{"type":"object","label":"List Items","name":"listItems","list":true,"fields":[{"type":"string","label":"Title","name":"title","namespace":["eventsIndex","afterEvents","TrainingLearningOutcome","listItems","title"]},{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["eventsIndex","afterEvents","TrainingLearningOutcome","listItems","content"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","TrainingLearningOutcome","listItems","icon","uploadDir"]},"namespace":["eventsIndex","afterEvents","TrainingLearningOutcome","listItems","icon"]}],"namespace":["eventsIndex","sidebarBody","TrainingLearningOutcome","listItems"],"searchable":true,"uid":false}],"namespace":["eventsIndex","sidebarBody","TrainingLearningOutcome"]},{"label":"Tweet Embed","name":"TweetEmbed","ui":{"previewSrc":"/images/thumbs/tina/tweet-embed.jpg"},"fields":[{"type":"string","name":"url","label":"Tweet URL","required":true,"namespace":["eventsIndex","sidebarBody","TweetEmbed","url"],"searchable":true,"uid":false}],"namespace":["eventsIndex","sidebarBody","TweetEmbed"]},{"name":"UpcomingEvents","label":"Upcoming Events","ui":{"previewSrc":"/images/thumbs/tina/upcoming-events.jpg","defaultItem":{"title":"Upcoming Events","numberOfEvents":30}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["eventsIndex","sidebarBody","UpcomingEvents","title"],"searchable":true,"uid":false},{"type":"number","label":"Number of Events","name":"numberOfEvents","namespace":["eventsIndex","sidebarBody","UpcomingEvents","numberOfEvents"],"searchable":true,"uid":false}],"namespace":["eventsIndex","sidebarBody","UpcomingEvents"]},{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["eventsIndex","sidebarBody","UtilityButton","buttonText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"link","required":false,"namespace":["eventsIndex","sidebarBody","UtilityButton","link"],"searchable":true,"uid":false},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["eventsIndex","sidebarBody","UtilityButton","size"],"searchable":true,"uid":false},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["eventsIndex","sidebarBody","UtilityButton","btnIcon"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["eventsIndex","sidebarBody","UtilityButton","animated"],"searchable":true,"uid":false},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["eventsIndex","sidebarBody","UtilityButton","uncentered"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["eventsIndex","sidebarBody","UtilityButton","removeTopMargin"],"searchable":true,"uid":false},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["eventsIndex","sidebarBody","UtilityButton","openInNewTab"],"searchable":true,"uid":false}],"namespace":["eventsIndex","sidebarBody","UtilityButton"]},{"name":"VerticalImageLayout","label":"Vertical Image Layout","fields":[{"type":"image","label":"Image","name":"imageSrc","uploadDir":{"namespace":["page","beforeBody","VerticalImageLayout","imageSrc","uploadDir"]},"namespace":["eventsIndex","sidebarBody","VerticalImageLayout","imageSrc"],"searchable":false,"uid":false},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["eventsIndex","sidebarBody","VerticalImageLayout","altText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"imageLink","namespace":["eventsIndex","sidebarBody","VerticalImageLayout","imageLink"],"searchable":true,"uid":false},{"type":"number","label":"Height","name":"height","required":true,"namespace":["eventsIndex","sidebarBody","VerticalImageLayout","height"],"searchable":true,"uid":false},{"type":"number","label":"Width","name":"width","required":true,"namespace":["eventsIndex","sidebarBody","VerticalImageLayout","width"],"searchable":true,"uid":false},{"type":"rich-text","label":"Message","name":"message","required":true,"namespace":["eventsIndex","sidebarBody","VerticalImageLayout","message"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["eventsIndex","sidebarBody","VerticalImageLayout","sizes"],"searchable":true,"uid":false}],"namespace":["eventsIndex","sidebarBody","VerticalImageLayout"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["eventsIndex","sidebarBody","VerticalListItem","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"number","label":"Index number","name":"index","namespace":["eventsIndex","sidebarBody","VerticalListItem","index"],"searchable":true,"uid":false},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["eventsIndex","sidebarBody","VerticalListItem","icon"],"searchable":false,"uid":false},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["eventsIndex","sidebarBody","VerticalListItem","iconScale"],"searchable":true,"uid":false},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["eventsIndex","sidebarBody","VerticalListItem","afterBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["eventsIndex","sidebarBody","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["eventsIndex","sidebarBody","VideoEmbed","url"],"searchable":true,"uid":false},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["eventsIndex","sidebarBody","VideoEmbed","videoWidth"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["eventsIndex","sidebarBody","VideoEmbed","removeMargin"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["eventsIndex","sidebarBody","VideoEmbed","uncentre"],"searchable":true,"uid":false},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["eventsIndex","sidebarBody","VideoEmbed","overflow"],"searchable":true,"uid":false},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["eventsIndex","sidebarBody","VideoEmbed","caption"],"searchable":true,"uid":false},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["eventsIndex","sidebarBody","VideoEmbed","duration"],"searchable":true,"uid":false}],"namespace":["eventsIndex","sidebarBody","VideoEmbed"]},{"name":"InlineJotForm","label":"In-line JotForm","ui":{"previewSrc":"/images/thumbs/tina/inline-jot-form.jpg"},"fields":[{"type":"string","name":"title","label":"Title","description":"Optional title for JotForm","namespace":["eventsIndex","sidebarBody","InlineJotForm","title"],"searchable":true,"uid":false},{"type":"string","name":"jotFormId","label":"JotForm ID","required":true,"namespace":["eventsIndex","sidebarBody","InlineJotForm","jotFormId"],"searchable":true,"uid":false},{"type":"string","name":"additionalClasses","label":"Additional classnames","description":"Optional styling for iframe element only","namespace":["eventsIndex","sidebarBody","InlineJotForm","additionalClasses"],"searchable":true,"uid":false}],"namespace":["eventsIndex","sidebarBody","InlineJotForm"]}],"namespace":["eventsIndex","sidebarBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"object","list":true,"name":"afterEvents","label":"After Events","ui":{"visualSelector":true},"templates":[{"name":"AboutUs","label":"About Us","ui":{"previewSrc":"/images/thumbs/tina/about-us.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["eventsIndex","afterEvents","AboutUs","backgroundColor"],"searchable":true,"uid":false},{"type":"boolean","label":"Show Map","name":"showMap","required":false,"namespace":["eventsIndex","afterEvents","AboutUs","showMap"],"searchable":true,"uid":false}],"namespace":["eventsIndex","afterEvents","AboutUs"]},{"label":"Agenda","name":"Agenda","ui":{"previewSrc":"/images/thumbs/tina/agenda.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["eventsIndex","afterEvents","Agenda","header"],"searchable":true,"uid":false},{"type":"string","label":"Header Color","name":"textColor","options":[{"label":"Red","value":"red"},{"label":"Gray","value":"gray"},{"label":"Default","value":"default"}],"namespace":["eventsIndex","afterEvents","Agenda","textColor"],"searchable":true,"uid":false},{"type":"object","label":"Agenda Items","name":"agendaItemList","ui":{},"list":true,"fields":[{"type":"string","label":"Placeholder Text","name":"placeholder","namespace":["events","_body","Agenda","agendaItemList","placeholder"]},{"type":"rich-text","label":"Body","name":"body","templates":[{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["logos","_body","Agenda","agendaItemList","body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["logos","_body","Agenda","agendaItemList","body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["logos","_body","Agenda","agendaItemList","body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["logos","_body","Agenda","agendaItemList","body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["logos","_body","Agenda","agendaItemList","body","VerticalListItem","afterBody"]}],"namespace":["events","footer","Agenda","agendaItemList","body","VerticalListItem"]}],"namespace":["events","_body","Agenda","agendaItemList","body"]}],"namespace":["eventsIndex","afterEvents","Agenda","agendaItemList"],"searchable":true,"uid":false}],"namespace":["eventsIndex","afterEvents","Agenda"]},{"label":"Agreement Form","name":"AgreementForm","ui":{"previewSrc":"/images/thumbs/tina/agreement-form.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["eventsIndex","afterEvents","AgreementForm","backgroundColor"],"searchable":true,"uid":false},{"type":"object","label":"Form fields","name":"fields","list":true,"fields":[{"type":"string","label":"ID","name":"id","required":true,"namespace":["events","_body","AgreementForm","fields","id"]},{"type":"string","label":"Label","name":"label","required":true,"namespace":["events","_body","AgreementForm","fields","label"]},{"type":"string","label":"Placeholder","name":"placeholder","namespace":["events","_body","AgreementForm","fields","placeholder"]},{"type":"boolean","label":"Resizeable","name":"resizeable","required":true,"namespace":["events","_body","AgreementForm","fields","resizeable"]}],"namespace":["eventsIndex","afterEvents","AgreementForm","fields"],"searchable":true,"uid":false}],"namespace":["eventsIndex","afterEvents","AgreementForm"]},{"label":"Interest Form","name":"InterestForm","ui":{"previewSrc":"/images/thumbs/tina/interest-form.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["eventsIndex","afterEvents","InterestForm","buttonText"],"searchable":true,"uid":false}],"namespace":["eventsIndex","afterEvents","InterestForm"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["eventsIndex","afterEvents","BookingButton","buttonText"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","namespace":["eventsIndex","afterEvents","BookingButton","animated"],"searchable":true,"uid":false},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["eventsIndex","afterEvents","BookingButton","buttonSubtitle"],"searchable":true,"uid":false}],"namespace":["eventsIndex","afterEvents","BookingButton"]},{"name":"BuiltOnAzure","label":"Built on Azure","ui":{"previewSrc":"/images/thumbs/tina/built-on-azure.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["eventsIndex","afterEvents","BuiltOnAzure","backgroundColor"],"searchable":true,"uid":false}],"namespace":["eventsIndex","afterEvents","BuiltOnAzure"]},{"name":"Carousel","label":"Carousel","ui":{"previewSrc":"/images/thumbs/tina/carousel.jpg"},"fields":[{"label":"Items","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Item description","link":"/","openIn":"sameWindow"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["events","_body","Carousel","items","label"]},{"type":"string","label":"URL","name":"link","description":"If link contains ssw.com.au, you can skip the full URL and just use the path. e.g. /services","namespace":["events","_body","Carousel","items","link"]},{"type":"string","label":"Open in","name":"openIn","description":"If it is external link, please select 'New window' option.","options":[{"label":"Same window","value":"sameWindow"},{"label":"Modal","value":"modal"},{"label":"New window","value":"newWindow"}],"namespace":["events","_body","Carousel","items","openIn"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","Carousel","items","imgSrc","uploadDir"]},"namespace":["events","_body","Carousel","items","imgSrc"]}],"namespace":["eventsIndex","afterEvents","Carousel","items"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["eventsIndex","afterEvents","Carousel","backgroundColor"],"searchable":true,"uid":false},{"type":"number","label":"Delay (Seconds)","name":"delay","required":true,"namespace":["eventsIndex","afterEvents","Carousel","delay"],"searchable":true,"uid":false},{"type":"boolean","label":"Show on mobile devices","name":"showOnMobileDevices","namespace":["eventsIndex","afterEvents","Carousel","showOnMobileDevices"],"searchable":true,"uid":false}],"namespace":["eventsIndex","afterEvents","Carousel"]},{"name":"Citation","label":"Citation","fields":[{"type":"string","label":"author","name":"author","namespace":["eventsIndex","afterEvents","Citation","author"],"searchable":true,"uid":false},{"type":"string","label":"article","name":"article","required":true,"namespace":["eventsIndex","afterEvents","Citation","article"],"searchable":true,"uid":false}],"namespace":["eventsIndex","afterEvents","Citation"]},{"label":"Client List","name":"ClientList","ui":{"previewSrc":"/images/thumbs/tina/clients-list.jpg"},"fields":[{"type":"object","name":"categories","label":"Categories","list":true,"fields":[{"type":"reference","name":"category","label":"Category","collections":["clientCategories"],"namespace":["events","_body","ClientList","categories","category"]}],"ui":{},"namespace":["eventsIndex","afterEvents","ClientList","categories"],"searchable":true,"uid":false},{"type":"object","name":"clients","label":"Clients list","list":true,"ui":{"previewSrc":"/images/thumbs/tina/clients-list.jpg"},"fields":[{"type":"string","name":"name","label":"Name","namespace":["events","_body","ClientList","clients","name"]},{"type":"image","name":"logo","label":"Logo","namespace":["events","_body","ClientList","clients","logo"]},{"type":"string","name":"logoUrl","label":"Logo URL","namespace":["events","_body","ClientList","clients","logoUrl"]},{"type":"rich-text","name":"content","label":"Content","templates":[{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["logos","_body","ClientList","clients","content","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["logos","_body","ClientList","clients","content","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["logos","_body","ClientList","clients","content","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["logos","_body","ClientList","clients","content","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["logos","_body","ClientList","clients","content","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["logos","_body","ClientList","clients","content","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["logos","_body","ClientList","clients","content","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["logos","_body","ClientList","clients","content","UtilityButton","openInNewTab"]}],"namespace":["events","footer","ClientList","clients","content","UtilityButton"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["logos","_body","ClientList","clients","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["logos","_body","ClientList","clients","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["logos","_body","ClientList","clients","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["logos","_body","ClientList","clients","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["logos","_body","ClientList","clients","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["logos","_body","ClientList","clients","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["logos","_body","ClientList","clients","content","VideoEmbed","duration"]}],"namespace":["events","footer","ClientList","clients","content","VideoEmbed"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["logos","_body","ClientList","clients","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["logos","_body","ClientList","clients","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["logos","_body","ClientList","clients","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["logos","_body","ClientList","clients","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["logos","_body","ClientList","clients","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["logos","_body","ClientList","clients","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["logos","_body","ClientList","clients","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["logos","_body","ClientList","clients","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["logos","_body","ClientList","clients","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["logos","_body","ClientList","clients","content","CustomImage","sizes"]}],"namespace":["events","footer","ClientList","clients","content","CustomImage"]},{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["logos","_body","ClientList","clients","content","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["logos","_body","ClientList","clients","content","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["live","subtitle","ClientList","clients","content","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["live","subtitle","ClientList","clients","content","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["live","subtitle","ClientList","clients","content","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["live","subtitle","ClientList","clients","content","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["live","subtitle","ClientList","clients","content","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["live","subtitle","ClientList","clients","content","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["live","subtitle","ClientList","clients","content","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["live","subtitle","ClientList","clients","content","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["live","subtitle","ClientList","clients","content","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["live","subtitle","ClientList","clients","content","ContentCard","content","CustomImage","sizes"]}],"namespace":["industry","_body","ClientList","clients","content","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["live","subtitle","ClientList","clients","content","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["live","subtitle","ClientList","clients","content","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["live","subtitle","ClientList","clients","content","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["live","subtitle","ClientList","clients","content","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["live","subtitle","ClientList","clients","content","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["industry","_body","ClientList","clients","content","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["live","subtitle","ClientList","clients","content","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["live","subtitle","ClientList","clients","content","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["live","subtitle","ClientList","clients","content","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["live","subtitle","ClientList","clients","content","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["live","subtitle","ClientList","clients","content","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["live","subtitle","ClientList","clients","content","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["live","subtitle","ClientList","clients","content","ContentCard","content","VideoEmbed","duration"]}],"namespace":["industry","_body","ClientList","clients","content","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["live","subtitle","ClientList","clients","content","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["live","subtitle","ClientList","clients","content","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["marketing","mediaComponent","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["marketing","mediaComponent","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["marketing","mediaComponent","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["marketing","mediaComponent","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["marketing","mediaComponent","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["live","subtitle","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["industry","_body","ClientList","clients","content","ContentCard","content","ColorBlock"]}],"namespace":["logos","_body","ClientList","clients","content","ContentCard","content"]}],"namespace":["events","footer","ClientList","clients","content","ContentCard"]}],"namespace":["events","_body","ClientList","clients","content"]},{"type":"string","name":"caseStudyUrl","label":"Case study URL","namespace":["events","_body","ClientList","clients","caseStudyUrl"]},{"type":"object","name":"categories","label":"Categories","list":true,"ui":{},"fields":[{"type":"reference","name":"category","label":"Category","collections":["clientCategories"],"namespace":["events","footer","ClientList","clients","categories","category"]}],"namespace":["events","_body","ClientList","clients","categories"]}],"namespace":["eventsIndex","afterEvents","ClientList","clients"],"searchable":true,"uid":false}],"namespace":["eventsIndex","afterEvents","ClientList"]},{"name":"ClientLogos","label":"Client Logos","ui":{"previewSrc":"/images/thumbs/tina/client-logos.jpg"},"fields":[{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["eventsIndex","afterEvents","ClientLogos","altText"],"searchable":true,"uid":false}],"namespace":["eventsIndex","afterEvents","ClientLogos"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["eventsIndex","afterEvents","ColorBlock","title"],"searchable":true,"uid":false},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["eventsIndex","afterEvents","ColorBlock","subTitle"],"searchable":true,"uid":false},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["events","_body","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["events","_body","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["events","_body","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["events","_body","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["events","_body","ColorBlock","colorRow","caption"]}],"namespace":["eventsIndex","afterEvents","ColorBlock","colorRow"],"searchable":true,"uid":false}],"namespace":["eventsIndex","afterEvents","ColorBlock"]},{"name":"ColorPalette","label":"Color Palette","ui":{"previewSrc":"/images/thumbs/tina/color-palette.jpg"},"fields":[{"type":"string","label":"Name","name":"name","namespace":["eventsIndex","afterEvents","ColorPalette","name"],"searchable":true,"uid":false}],"namespace":["eventsIndex","afterEvents","ColorPalette"]},{"name":"Content","label":"Content","ui":{"previewSrc":"/images/thumbs/tina/content.jpg","defaultItem":{"body":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["eventsIndex","afterEvents","Content","title"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["events","footer","Content","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["events","footer","Content","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["events","footer","Content","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["events","footer","Content","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["events","footer","Content","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["events","footer","Content","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["events","footer","Content","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["events","footer","Content","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["events","footer","Content","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["events","footer","Content","content","CustomImage","sizes"]}],"namespace":["events","_body","Content","content","CustomImage"]},{"name":"ClientLogos","label":"Client Logos","ui":{"previewSrc":"/images/thumbs/tina/client-logos.jpg"},"fields":[{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["events","footer","Content","content","ClientLogos","altText"]}],"namespace":["events","_body","Content","content","ClientLogos"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["events","footer","Content","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["events","footer","Content","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["events","footer","Content","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["events","footer","Content","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["events","footer","Content","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["events","footer","Content","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["events","footer","Content","content","VideoEmbed","duration"]}],"namespace":["events","_body","Content","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["events","footer","Content","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["events","footer","Content","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["logos","_body","Content","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["logos","_body","Content","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["logos","_body","Content","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["logos","_body","Content","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["logos","_body","Content","content","ColorBlock","colorRow","caption"]}],"namespace":["events","footer","Content","content","ColorBlock","colorRow"]}],"namespace":["events","_body","Content","content","ColorBlock"]}],"namespace":["eventsIndex","afterEvents","Content","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Container Padding","name":"paddingClass","options":["Mobile: No Padding","Mobile: No Top and Horizontal Padding"],"namespace":["eventsIndex","afterEvents","Content","paddingClass"],"searchable":true,"uid":false},{"type":"string","label":"Text size","name":"size","options":[{"label":"small","value":"sm"},{"label":"normal","value":"base"},{"label":"large","value":"lg"},{"label":"extra large","value":"xl"},{"label":"2x large","value":"2xl"}],"namespace":["eventsIndex","afterEvents","Content","size"],"searchable":true,"uid":false},{"type":"string","label":"Align","name":"align","options":[{"label":"Left","value":"left"},{"label":"Center","value":"center"},{"label":"Right","value":"right"}],"namespace":["eventsIndex","afterEvents","Content","align"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["eventsIndex","afterEvents","Content","backgroundColor"],"searchable":true,"uid":false}],"namespace":["eventsIndex","afterEvents","Content"]},{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["eventsIndex","afterEvents","ContentCard","prose"],"searchable":true,"uid":false},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["eventsIndex","afterEvents","ContentCard","centerAlignedText"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["events","footer","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["events","footer","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["events","footer","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["events","footer","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["events","footer","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["events","footer","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["events","footer","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["events","footer","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["events","footer","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["events","footer","ContentCard","content","CustomImage","sizes"]}],"namespace":["events","_body","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["events","footer","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["events","footer","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["events","footer","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["events","footer","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["events","footer","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["events","_body","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["events","footer","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["events","footer","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["events","footer","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["events","footer","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["events","footer","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["events","footer","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["events","footer","ContentCard","content","VideoEmbed","duration"]}],"namespace":["events","_body","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["events","footer","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["events","footer","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["logos","_body","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["logos","_body","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["logos","_body","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["logos","_body","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["logos","_body","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["events","footer","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["events","_body","ContentCard","content","ColorBlock"]}],"namespace":["eventsIndex","afterEvents","ContentCard","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["eventsIndex","afterEvents","ContentCard"]},{"name":"CustomDownloadButton","label":"Custom Download Button","ui":{"previewSrc":"/images/thumbs/tina/custom-download-button.jpg"},"fields":[{"type":"string","label":"Text","name":"btnText","namespace":["eventsIndex","afterEvents","CustomDownloadButton","btnText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"btnLink","namespace":["eventsIndex","afterEvents","CustomDownloadButton","btnLink"],"searchable":true,"uid":false}],"namespace":["eventsIndex","afterEvents","CustomDownloadButton"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["eventsIndex","afterEvents","CustomImage","src"],"searchable":false,"uid":false},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["eventsIndex","afterEvents","CustomImage","altText"],"searchable":true,"uid":false},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["eventsIndex","afterEvents","CustomImage","alignment"],"searchable":true,"uid":false},{"type":"number","label":"Height","name":"height","required":true,"namespace":["eventsIndex","afterEvents","CustomImage","height"],"searchable":true,"uid":false},{"type":"number","label":"Width","name":"width","required":true,"namespace":["eventsIndex","afterEvents","CustomImage","width"],"searchable":true,"uid":false},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["eventsIndex","afterEvents","CustomImage","link"],"searchable":true,"uid":false},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["eventsIndex","afterEvents","CustomImage","customClass"],"searchable":true,"uid":false},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["eventsIndex","afterEvents","CustomImage","caption"],"searchable":true,"uid":false},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["eventsIndex","afterEvents","CustomImage","captionColor"],"searchable":true,"uid":false},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["eventsIndex","afterEvents","CustomImage","sizes"],"searchable":true,"uid":false}],"namespace":["eventsIndex","afterEvents","CustomImage"]},{"name":"DomainFromQuery","label":"Domain from query","ui":{"previewSrc":"/images/thumbs/tina/domain-from-query.jpg"},"fields":[{"name":"title","label":"Title","type":"string","description":"This is a H1 heading","namespace":["eventsIndex","afterEvents","DomainFromQuery","title"],"searchable":true,"uid":false},{"name":"showDomain","label":"Show domain name","type":"boolean","description":"Query param in URL must have key of 'domain'","namespace":["eventsIndex","afterEvents","DomainFromQuery","showDomain"],"searchable":true,"uid":false}],"namespace":["eventsIndex","afterEvents","DomainFromQuery"]},{"name":"DownloadBlock","label":"Download Block","ui":{"previewSrc":"/images/thumbs/tina/download-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["eventsIndex","afterEvents","DownloadBlock","title"],"searchable":true,"uid":false},{"type":"object","label":"Downloads","name":"downloads","ui":{},"list":true,"fields":[{"type":"string","label":"Header","name":"header","namespace":["events","_body","DownloadBlock","downloads","header"]},{"type":"image","label":"Image","name":"img","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","img","uploadDir"]},"namespace":["events","_body","DownloadBlock","downloads","img"]},{"type":"string","label":"Image Background","name":"imgBackground","options":["black","grey","white","darkgrey","darkgreen"],"namespace":["events","_body","DownloadBlock","downloads","imgBackground"]},{"type":"string","label":"First Link Text","name":"firstLinkText","description":"Defaults to PNG","namespace":["events","_body","DownloadBlock","downloads","firstLinkText"]},{"type":"image","label":"First Link","name":"firstLink","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","firstLink","uploadDir"]},"namespace":["events","_body","DownloadBlock","downloads","firstLink"]},{"type":"string","label":"Second Link Text","name":"secondLinkText","description":"Defaults to PDF","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","secondLinkText","uploadDir"]},"namespace":["events","_body","DownloadBlock","downloads","secondLinkText"]},{"type":"image","label":"Second Link","name":"secondLink","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","secondLink","uploadDir"]},"namespace":["events","_body","DownloadBlock","downloads","secondLink"]}],"namespace":["eventsIndex","afterEvents","DownloadBlock","downloads"],"searchable":true,"uid":false},{"type":"boolean","label":"Bottom border","name":"bottomBorder","namespace":["eventsIndex","afterEvents","DownloadBlock","bottomBorder"],"searchable":true,"uid":false}],"namespace":["eventsIndex","afterEvents","DownloadBlock"]},{"name":"DynamicColumns","label":"Dynamic Column Layout","fields":[{"type":"rich-text","label":"Column text body","name":"colBody","required":true,"namespace":["eventsIndex","afterEvents","DynamicColumns","colBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"number","label":"Number of columns","name":"colCount","required":true,"ui":{},"namespace":["eventsIndex","afterEvents","DynamicColumns","colCount"],"searchable":true,"uid":false}],"namespace":["eventsIndex","afterEvents","DynamicColumns"]},{"name":"EventBooking","label":"Events Booking","ui":{"previewSrc":"/images/thumbs/tina/events-booking.jpg"},"fields":[{"type":"number","label":"Duration (In Days)","name":"eventDurationInDays","required":true,"namespace":["eventsIndex","afterEvents","EventBooking","eventDurationInDays"],"searchable":true,"uid":false},{"type":"number","label":"Price","name":"price","required":true,"namespace":["eventsIndex","afterEvents","EventBooking","price"],"searchable":true,"uid":false},{"type":"number","label":"Discount Price","name":"discountPrice","namespace":["eventsIndex","afterEvents","EventBooking","discountPrice"],"searchable":true,"uid":false},{"type":"string","name":"gstText","label":"Select GST Option","options":["inc GST","+ GST"],"required":true,"namespace":["eventsIndex","afterEvents","EventBooking","gstText"],"searchable":true,"uid":false},{"type":"string","label":"Discount Note","name":"discountNote","namespace":["eventsIndex","afterEvents","EventBooking","discountNote"],"searchable":true,"uid":false},{"type":"object","label":"Event","name":"eventList","ui":{},"list":true,"fields":[{"type":"string","label":"City","name":"city","namespace":["events","_body","EventBooking","eventList","city"]},{"type":"datetime","label":"Start Date","name":"date","ui":{},"namespace":["events","_body","EventBooking","eventList","date"]},{"type":"string","label":"Booking URL","name":"bookingURL","namespace":["events","_body","EventBooking","eventList","bookingURL"]},{"type":"reference","label":"Location","name":"location","collections":["locations"],"namespace":["events","_body","EventBooking","eventList","location"]}],"namespace":["eventsIndex","afterEvents","EventBooking","eventList"],"searchable":true,"uid":false}],"namespace":["eventsIndex","afterEvents","EventBooking"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["events","footer","EventLink","content","Flag","country"]}],"namespace":["events","_body","EventLink","content","Flag"]}],"namespace":["eventsIndex","afterEvents","EventLink","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Link","name":"link","namespace":["eventsIndex","afterEvents","EventLink","link"],"searchable":true,"uid":false},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["eventsIndex","afterEvents","EventLink","eventThumbnail"],"searchable":false,"uid":false},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["eventsIndex","afterEvents","EventLink","thumbnailAlt"],"searchable":true,"uid":false}],"namespace":["eventsIndex","afterEvents","EventLink"]},{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["eventsIndex","afterEvents","Flag","country"],"searchable":true,"uid":false}],"namespace":["eventsIndex","afterEvents","Flag"]},{"name":"FixedColumns","label":"Fixed Column Layout (2 columns)","ui":{"previewSrc":"/images/thumbs/tina/fixed-columns.jpg"},"fields":[{"type":"rich-text","label":"Header Section (Optional)","name":"headerSection","namespace":["eventsIndex","afterEvents","FixedColumns","headerSection"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"First column text","name":"firstColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["events","footer","FixedColumns","firstColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["events","footer","FixedColumns","firstColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["industry","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["industry","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["industry","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["industry","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["industry","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["industry","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["industry","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["industry","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["industry","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["industry","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["logos","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["industry","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["industry","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["industry","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["industry","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["industry","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["logos","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["industry","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["industry","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["industry","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["industry","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["industry","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["industry","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["industry","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["logos","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["industry","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["industry","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["live","subtitle","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["live","subtitle","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["live","subtitle","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["live","subtitle","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["live","subtitle","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["industry","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["logos","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock"]}],"namespace":["events","footer","FixedColumns","firstColBody","ContentCard","content"]}],"namespace":["events","_body","FixedColumns","firstColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["events","footer","FixedColumns","firstColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["events","footer","FixedColumns","firstColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["events","footer","FixedColumns","firstColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["events","footer","FixedColumns","firstColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["events","footer","FixedColumns","firstColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["events","footer","FixedColumns","firstColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["events","footer","FixedColumns","firstColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["events","footer","FixedColumns","firstColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["events","footer","FixedColumns","firstColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["events","footer","FixedColumns","firstColBody","CustomImage","sizes"]}],"namespace":["events","_body","FixedColumns","firstColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["industry","_body","FixedColumns","firstColBody","EventLink","content","Flag","country"]}],"namespace":["logos","_body","FixedColumns","firstColBody","EventLink","content","Flag"]}],"namespace":["events","footer","FixedColumns","firstColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["events","footer","FixedColumns","firstColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["events","footer","FixedColumns","firstColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["events","footer","FixedColumns","firstColBody","EventLink","thumbnailAlt"]}],"namespace":["events","_body","FixedColumns","firstColBody","EventLink"]}],"namespace":["eventsIndex","afterEvents","FixedColumns","firstColBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"Second column text","name":"secondColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["events","footer","FixedColumns","secondColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["events","footer","FixedColumns","secondColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["industry","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["industry","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["industry","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["industry","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["industry","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["industry","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["industry","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["industry","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["industry","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["industry","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["logos","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["industry","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["industry","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["industry","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["industry","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["industry","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["logos","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["industry","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["industry","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["industry","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["industry","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["industry","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["industry","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["industry","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["logos","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["industry","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["industry","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["live","subtitle","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["live","subtitle","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["live","subtitle","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["live","subtitle","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["live","subtitle","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["industry","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["logos","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock"]}],"namespace":["events","footer","FixedColumns","secondColBody","ContentCard","content"]}],"namespace":["events","_body","FixedColumns","secondColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["events","footer","FixedColumns","secondColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["events","footer","FixedColumns","secondColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["events","footer","FixedColumns","secondColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["events","footer","FixedColumns","secondColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["events","footer","FixedColumns","secondColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["events","footer","FixedColumns","secondColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["events","footer","FixedColumns","secondColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["events","footer","FixedColumns","secondColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["events","footer","FixedColumns","secondColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["events","footer","FixedColumns","secondColBody","CustomImage","sizes"]}],"namespace":["events","_body","FixedColumns","secondColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["industry","_body","FixedColumns","secondColBody","EventLink","content","Flag","country"]}],"namespace":["logos","_body","FixedColumns","secondColBody","EventLink","content","Flag"]}],"namespace":["events","footer","FixedColumns","secondColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["events","footer","FixedColumns","secondColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["events","footer","FixedColumns","secondColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["events","footer","FixedColumns","secondColBody","EventLink","thumbnailAlt"]}],"namespace":["events","_body","FixedColumns","secondColBody","EventLink"]}],"namespace":["eventsIndex","afterEvents","FixedColumns","secondColBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["eventsIndex","afterEvents","FixedColumns"]},{"name":"FixedTabsLayout","label":"Fixed Tabs Layout","ui":{"previewSrc":"/images/thumbs/tina/fixed-tabs-layout.jpg"},"fields":[{"type":"string","name":"firstTab","label":"First Tab","namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstTab"],"searchable":true,"uid":false},{"type":"rich-text","name":"firstHeading","label":"First Heading","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["events","footer","FixedTabsLayout","firstHeading","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["events","footer","FixedTabsLayout","firstHeading","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["events","footer","FixedTabsLayout","firstHeading","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["events","footer","FixedTabsLayout","firstHeading","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["events","footer","FixedTabsLayout","firstHeading","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["events","footer","FixedTabsLayout","firstHeading","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["events","footer","FixedTabsLayout","firstHeading","VideoEmbed","duration"]}],"namespace":["events","_body","FixedTabsLayout","firstHeading","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["events","footer","FixedTabsLayout","firstHeading","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["events","footer","FixedTabsLayout","firstHeading","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["events","footer","FixedTabsLayout","firstHeading","BookingButton","buttonSubtitle"]}],"namespace":["events","_body","FixedTabsLayout","firstHeading","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["events","footer","FixedTabsLayout","firstHeading","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["logos","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["logos","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["logos","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["logos","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList","skills"]}],"namespace":["events","footer","FixedTabsLayout","firstHeading","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["logos","_body","FixedTabsLayout","firstHeading","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["logos","_body","FixedTabsLayout","firstHeading","ExpertBlock","link","url"]}],"namespace":["events","footer","FixedTabsLayout","firstHeading","ExpertBlock","link"]}],"namespace":["events","_body","FixedTabsLayout","firstHeading","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["logos","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["logos","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["logos","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["industry","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["industry","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["industry","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["logos","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["events","footer","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["events","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["events","footer","FixedTabsLayout","firstHeading","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["events","footer","FixedTabsLayout","firstHeading","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["events","footer","FixedTabsLayout","firstHeading","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["events","footer","FixedTabsLayout","firstHeading","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["events","footer","FixedTabsLayout","firstHeading","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["events","footer","FixedTabsLayout","firstHeading","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["events","footer","FixedTabsLayout","firstHeading","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["events","footer","FixedTabsLayout","firstHeading","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["events","footer","FixedTabsLayout","firstHeading","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["events","footer","FixedTabsLayout","firstHeading","CustomImage","sizes"]}],"namespace":["events","_body","FixedTabsLayout","firstHeading","CustomImage"]}],"namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstHeading"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","name":"firstBody","label":"First Body","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["events","footer","FixedTabsLayout","firstBody","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["events","footer","FixedTabsLayout","firstBody","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["events","footer","FixedTabsLayout","firstBody","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["events","footer","FixedTabsLayout","firstBody","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["events","footer","FixedTabsLayout","firstBody","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["events","footer","FixedTabsLayout","firstBody","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["events","footer","FixedTabsLayout","firstBody","VideoEmbed","duration"]}],"namespace":["events","_body","FixedTabsLayout","firstBody","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["events","footer","FixedTabsLayout","firstBody","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["events","footer","FixedTabsLayout","firstBody","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["events","footer","FixedTabsLayout","firstBody","BookingButton","buttonSubtitle"]}],"namespace":["events","_body","FixedTabsLayout","firstBody","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["events","footer","FixedTabsLayout","firstBody","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["logos","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["logos","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["logos","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["logos","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList","skills"]}],"namespace":["events","footer","FixedTabsLayout","firstBody","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["logos","_body","FixedTabsLayout","firstBody","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["logos","_body","FixedTabsLayout","firstBody","ExpertBlock","link","url"]}],"namespace":["events","footer","FixedTabsLayout","firstBody","ExpertBlock","link"]}],"namespace":["events","_body","FixedTabsLayout","firstBody","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["logos","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["logos","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["logos","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["industry","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["industry","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["industry","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["logos","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["events","footer","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["events","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["events","footer","FixedTabsLayout","firstBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["events","footer","FixedTabsLayout","firstBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["events","footer","FixedTabsLayout","firstBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["events","footer","FixedTabsLayout","firstBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["events","footer","FixedTabsLayout","firstBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["events","footer","FixedTabsLayout","firstBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["events","footer","FixedTabsLayout","firstBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["events","footer","FixedTabsLayout","firstBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["events","footer","FixedTabsLayout","firstBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["events","footer","FixedTabsLayout","firstBody","CustomImage","sizes"]}],"namespace":["events","_body","FixedTabsLayout","firstBody","CustomImage"]}],"namespace":["eventsIndex","afterEvents","FixedTabsLayout","firstBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","name":"secondTab","label":"Second Tab","namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondTab"],"searchable":true,"uid":false},{"type":"rich-text","name":"secondHeading","label":"Second Heading","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["events","footer","FixedTabsLayout","secondHeading","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["events","footer","FixedTabsLayout","secondHeading","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["events","footer","FixedTabsLayout","secondHeading","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["events","footer","FixedTabsLayout","secondHeading","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["events","footer","FixedTabsLayout","secondHeading","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["events","footer","FixedTabsLayout","secondHeading","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["events","footer","FixedTabsLayout","secondHeading","VideoEmbed","duration"]}],"namespace":["events","_body","FixedTabsLayout","secondHeading","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["events","footer","FixedTabsLayout","secondHeading","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["events","footer","FixedTabsLayout","secondHeading","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["events","footer","FixedTabsLayout","secondHeading","BookingButton","buttonSubtitle"]}],"namespace":["events","_body","FixedTabsLayout","secondHeading","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["events","footer","FixedTabsLayout","secondHeading","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["logos","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["logos","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["logos","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["logos","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList","skills"]}],"namespace":["events","footer","FixedTabsLayout","secondHeading","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["logos","_body","FixedTabsLayout","secondHeading","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["logos","_body","FixedTabsLayout","secondHeading","ExpertBlock","link","url"]}],"namespace":["events","footer","FixedTabsLayout","secondHeading","ExpertBlock","link"]}],"namespace":["events","_body","FixedTabsLayout","secondHeading","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["logos","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["logos","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["logos","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["industry","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["industry","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["industry","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["logos","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["events","footer","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["events","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["events","footer","FixedTabsLayout","secondHeading","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["events","footer","FixedTabsLayout","secondHeading","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["events","footer","FixedTabsLayout","secondHeading","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["events","footer","FixedTabsLayout","secondHeading","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["events","footer","FixedTabsLayout","secondHeading","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["events","footer","FixedTabsLayout","secondHeading","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["events","footer","FixedTabsLayout","secondHeading","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["events","footer","FixedTabsLayout","secondHeading","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["events","footer","FixedTabsLayout","secondHeading","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["events","footer","FixedTabsLayout","secondHeading","CustomImage","sizes"]}],"namespace":["events","_body","FixedTabsLayout","secondHeading","CustomImage"]}],"namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondHeading"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","name":"secondBody","label":"Second Body","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["events","footer","FixedTabsLayout","secondBody","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["events","footer","FixedTabsLayout","secondBody","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["events","footer","FixedTabsLayout","secondBody","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["events","footer","FixedTabsLayout","secondBody","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["events","footer","FixedTabsLayout","secondBody","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["events","footer","FixedTabsLayout","secondBody","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["events","footer","FixedTabsLayout","secondBody","VideoEmbed","duration"]}],"namespace":["events","_body","FixedTabsLayout","secondBody","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["events","footer","FixedTabsLayout","secondBody","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["events","footer","FixedTabsLayout","secondBody","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["events","footer","FixedTabsLayout","secondBody","BookingButton","buttonSubtitle"]}],"namespace":["events","_body","FixedTabsLayout","secondBody","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["events","footer","FixedTabsLayout","secondBody","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["logos","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["logos","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["logos","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["logos","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList","skills"]}],"namespace":["events","footer","FixedTabsLayout","secondBody","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["logos","_body","FixedTabsLayout","secondBody","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["logos","_body","FixedTabsLayout","secondBody","ExpertBlock","link","url"]}],"namespace":["events","footer","FixedTabsLayout","secondBody","ExpertBlock","link"]}],"namespace":["events","_body","FixedTabsLayout","secondBody","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["logos","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["logos","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["logos","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["industry","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["industry","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["industry","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["logos","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["events","footer","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["events","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["events","footer","FixedTabsLayout","secondBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["events","footer","FixedTabsLayout","secondBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["events","footer","FixedTabsLayout","secondBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["events","footer","FixedTabsLayout","secondBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["events","footer","FixedTabsLayout","secondBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["events","footer","FixedTabsLayout","secondBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["events","footer","FixedTabsLayout","secondBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["events","footer","FixedTabsLayout","secondBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["events","footer","FixedTabsLayout","secondBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["events","footer","FixedTabsLayout","secondBody","CustomImage","sizes"]}],"namespace":["events","_body","FixedTabsLayout","secondBody","CustomImage"]}],"namespace":["eventsIndex","afterEvents","FixedTabsLayout","secondBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["eventsIndex","afterEvents","FixedTabsLayout"]},{"label":"Google Maps","name":"GoogleMaps","ui":{"previewSrc":"/images/thumbs/tina/google-maps.jpg"},"fields":[{"type":"string","label":"URL","name":"embedUrl","required":true,"namespace":["eventsIndex","afterEvents","GoogleMaps","embedUrl"],"searchable":true,"uid":false},{"type":"string","label":"Width","name":"embedWidth","namespace":["eventsIndex","afterEvents","GoogleMaps","embedWidth"],"searchable":true,"uid":false},{"type":"string","label":"Height","name":"embedHeight","namespace":["eventsIndex","afterEvents","GoogleMaps","embedHeight"],"searchable":true,"uid":false}],"namespace":["eventsIndex","afterEvents","GoogleMaps"]},{"label":"Grid Layout","name":"GridLayout","ui":{"previewSrc":"/images/thumbs/tina/grid-layout.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["eventsIndex","afterEvents","GridLayout","title"],"searchable":true,"uid":false},{"type":"object","list":true,"label":"Grid Items","name":"grids","ui":{},"fields":[{"type":"string","label":"Grid Title","name":"gridTitle","namespace":["events","_body","GridLayout","grids","gridTitle"]},{"type":"boolean","label":"Show Grid Title","name":"showGridTitle","namespace":["events","_body","GridLayout","grids","showGridTitle"]},{"type":"boolean","label":"Centered Grid Title","name":"centeredGridTitle","namespace":["events","_body","GridLayout","grids","centeredGridTitle"]},{"type":"boolean","label":"Show Header Divider","name":"showHeaderDivider","namespace":["events","_body","GridLayout","grids","showHeaderDivider"]},{"type":"boolean","label":"Offset Grid Start","name":"offsetGridStart","namespace":["events","_body","GridLayout","grids","offsetGridStart"]},{"type":"object","label":"Blocks","name":"blocks","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["events","footer","GridLayout","grids","blocks","title"]},{"type":"boolean","label":"Show Title","name":"showTitle","namespace":["events","footer","GridLayout","grids","blocks","showTitle"]},{"type":"image","label":"Image","name":"image","uploadDir":{"namespace":["page","beforeBody","GridLayout","grids","blocks","image","uploadDir"]},"namespace":["events","footer","GridLayout","grids","blocks","image"]},{"type":"image","label":"Related Image","name":"relatedImage","uploadDir":{"namespace":["page","beforeBody","GridLayout","grids","blocks","relatedImage","uploadDir"]},"namespace":["events","footer","GridLayout","grids","blocks","relatedImage"]},{"type":"rich-text","name":"linkContent","label":"Link Content","templates":[{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["industry","_body","GridLayout","grids","blocks","linkContent","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["industry","_body","GridLayout","grids","blocks","linkContent","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["industry","_body","GridLayout","grids","blocks","linkContent","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["industry","_body","GridLayout","grids","blocks","linkContent","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["industry","_body","GridLayout","grids","blocks","linkContent","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["industry","_body","GridLayout","grids","blocks","linkContent","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["industry","_body","GridLayout","grids","blocks","linkContent","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["industry","_body","GridLayout","grids","blocks","linkContent","UtilityButton","openInNewTab"]}],"namespace":["logos","_body","GridLayout","grids","blocks","linkContent","UtilityButton"]}],"namespace":["events","footer","GridLayout","grids","blocks","linkContent"]}],"namespace":["events","_body","GridLayout","grids","blocks"]}],"namespace":["eventsIndex","afterEvents","GridLayout","grids"],"searchable":true,"uid":false}],"namespace":["eventsIndex","afterEvents","GridLayout"]},{"name":"Hero","label":"Hero","ui":{"previewSrc":"/blocks/hero.png","defaultItem":{"tagline":"Here's some text above the other text","headline":"This Big Text is Totally Awesome","text":"Phasellus scelerisque, libero eu finibus rutrum, risus risus accumsan libero, nec molestie urna dui a leo."}},"fields":[{"type":"string","label":"Tagline","name":"tagline","namespace":["eventsIndex","afterEvents","Hero","tagline"],"searchable":true,"uid":false},{"type":"string","label":"Headline","name":"headline","namespace":["eventsIndex","afterEvents","Hero","headline"],"searchable":true,"uid":false},{"label":"Text","name":"text","type":"rich-text","namespace":["eventsIndex","afterEvents","Hero","text"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"label":"Actions","name":"actions","type":"object","list":true,"ui":{"defaultItem":{"label":"Action Label","type":"button","icon":true,"link":"/"}},"fields":[{"label":"Label","name":"label","type":"string","namespace":["events","_body","Hero","actions","label"]},{"label":"Type","name":"type","type":"string","options":[{"label":"Button","value":"button"},{"label":"Link","value":"link"}],"namespace":["events","_body","Hero","actions","type"]},{"label":"Icon","name":"icon","type":"boolean","namespace":["events","_body","Hero","actions","icon"]},{"label":"Link","name":"link","type":"string","namespace":["events","_body","Hero","actions","link"]}],"namespace":["eventsIndex","afterEvents","Hero","actions"],"searchable":true,"uid":false},{"type":"object","label":"Image","name":"image","fields":[{"name":"src","label":"Image Source","type":"image","namespace":["events","_body","Hero","image","src"]},{"name":"alt","label":"Alt Text","type":"string","namespace":["events","_body","Hero","image","alt"]}],"namespace":["eventsIndex","afterEvents","Hero","image"],"searchable":true,"uid":false},{"type":"string","label":"Color","name":"color","options":[{"label":"Default","value":"default"},{"label":"Tint","value":"tint"},{"label":"Primary","value":"primary"}],"namespace":["eventsIndex","afterEvents","Hero","color"],"searchable":true,"uid":false}],"namespace":["eventsIndex","afterEvents","Hero"]},{"name":"HorizontalCard","label":"Horizontal Card","ui":{"previewSrc":"/images/thumbs/tina/horizontal-card.jpg"},"fields":[{"type":"object","label":"Cards","name":"cardList","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["events","_body","HorizontalCard","cardList","title"]},{"type":"rich-text","label":"Content","name":"content","namespace":["events","_body","HorizontalCard","cardList","content"]},{"type":"image","label":"Thumbnail","name":"thumbnail","uploadDir":{"namespace":["page","beforeBody","HorizontalCard","cardList","thumbnail","uploadDir"]},"namespace":["events","_body","HorizontalCard","cardList","thumbnail"]},{"type":"string","label":"Link","name":"link","namespace":["events","_body","HorizontalCard","cardList","link"]}],"namespace":["eventsIndex","afterEvents","HorizontalCard","cardList"],"searchable":true,"uid":false},{"type":"object","label":"Button","name":"button","fields":[{"type":"string","label":"Text","name":"text","namespace":["events","_body","HorizontalCard","button","text"]},{"type":"string","label":"Link","name":"link","namespace":["events","_body","HorizontalCard","button","link"]}],"namespace":["eventsIndex","afterEvents","HorizontalCard","button"],"searchable":true,"uid":false}],"namespace":["eventsIndex","afterEvents","HorizontalCard"]},{"name":"InternalCarousel","label":"Internal Carousel","ui":{"previewSrc":"/images/thumbs/tina/internal-carousel.jpg"},"fields":[{"label":"Images","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Image description"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["events","_body","InternalCarousel","items","label"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","InternalCarousel","items","imgSrc","uploadDir"]},"namespace":["events","_body","InternalCarousel","items","imgSrc"]}],"namespace":["eventsIndex","afterEvents","InternalCarousel","items"],"searchable":true,"uid":false},{"type":"string","label":"Header","name":"header","namespace":["eventsIndex","afterEvents","InternalCarousel","header"],"searchable":true,"uid":false},{"type":"rich-text","label":"Text","name":"paragraph","isBody":false,"namespace":["eventsIndex","afterEvents","InternalCarousel","paragraph"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Website","name":"website","namespace":["eventsIndex","afterEvents","InternalCarousel","website"],"searchable":true,"uid":false},{"type":"object","label":"Technologies","name":"technologies","list":true,"ui":{},"fields":[{"type":"string","label":"Name","name":"name","namespace":["events","_body","InternalCarousel","technologies","name"]}],"namespace":["eventsIndex","afterEvents","InternalCarousel","technologies"],"searchable":true,"uid":false},{"type":"string","label":"Case Study","name":"caseStudyUrl","namespace":["eventsIndex","afterEvents","InternalCarousel","caseStudyUrl"],"searchable":true,"uid":false},{"type":"string","label":"Video URL","name":"videoUrl","namespace":["eventsIndex","afterEvents","InternalCarousel","videoUrl"],"searchable":true,"uid":false}],"namespace":["eventsIndex","afterEvents","InternalCarousel"]},{"label":"Join As Presenter","name":"joinAsPresenter","fields":[{"label":"Learn More Link","name":"link","type":"string","namespace":["eventsIndex","afterEvents","joinAsPresenter","link"],"searchable":true,"uid":false},{"label":"Image","name":"img","type":"image","namespace":["eventsIndex","afterEvents","joinAsPresenter","img"],"searchable":false,"uid":false}],"namespace":["eventsIndex","afterEvents","joinAsPresenter"]},{"label":"Join Github","name":"joinGithub","ui":{"previewSrc":"/images/thumbs/tina/join-github.jpg"},"fields":[{"label":"Title","name":"title","type":"string","namespace":["eventsIndex","afterEvents","joinGithub","title"],"searchable":true,"uid":false},{"label":"Join Github Link","name":"link","type":"string","namespace":["eventsIndex","afterEvents","joinGithub","link"],"searchable":true,"uid":false}],"namespace":["eventsIndex","afterEvents","joinGithub"]},{"name":"JotFormEmbed","label":"JotForm Embed","ui":{"previewSrc":"/images/thumbs/tina/jotform-embed.jpg"},"fields":[{"type":"string","name":"jotFormId","label":"JotForm Id","required":true,"namespace":["eventsIndex","afterEvents","JotFormEmbed","jotFormId"],"searchable":true,"uid":false},{"type":"string","label":"Button Text","name":"buttonText","namespace":["eventsIndex","afterEvents","JotFormEmbed","buttonText"],"searchable":true,"uid":false},{"type":"string","name":"containerClass","label":"Container Class","namespace":["eventsIndex","afterEvents","JotFormEmbed","containerClass"],"searchable":true,"uid":false},{"type":"string","label":"Button Class","name":"buttonClass","namespace":["eventsIndex","afterEvents","JotFormEmbed","buttonClass"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","namespace":["eventsIndex","afterEvents","JotFormEmbed","animated"],"searchable":true,"uid":false}],"namespace":["eventsIndex","afterEvents","JotFormEmbed"]},{"name":"LatestTech","label":"Latest Tech","ui":{"previewSrc":"/images/thumbs/tina/latest-tech.jpg"},"fields":[{"type":"reference","description":"Select a config file including a set of badges","collections":["userGroupGlobal"],"label":"Badges","name":"badges","namespace":["eventsIndex","afterEvents","LatestTech","badges"],"searchable":true,"uid":false}],"namespace":["eventsIndex","afterEvents","LatestTech"]},{"name":"LocationBlock","label":"Locations","ui":{"previewSrc":"/images/thumbs/tina/locations.jpg"},"fields":[{"type":"string","name":"title","label":"Title","namespace":["eventsIndex","afterEvents","LocationBlock","title"],"searchable":true,"uid":false},{"type":"object","label":"Location List","name":"locationList","list":true,"ui":{},"fields":[{"type":"reference","collections":["locations"],"label":"Location","name":"location","namespace":["events","_body","LocationBlock","locationList","location"]}],"namespace":["eventsIndex","afterEvents","LocationBlock","locationList"],"searchable":true,"uid":false},{"type":"object","name":"chapelWebsite","label":"Chapel Website","fields":[{"type":"string","name":"title","label":"Text","namespace":["events","_body","LocationBlock","chapelWebsite","title"]},{"type":"string","name":"URL","label":"URL","namespace":["events","_body","LocationBlock","chapelWebsite","URL"]}],"namespace":["eventsIndex","afterEvents","LocationBlock","chapelWebsite"],"searchable":true,"uid":false}],"namespace":["eventsIndex","afterEvents","LocationBlock"]},{"name":"NewslettersTable","label":"Newsletters Table","ui":{"previewSrc":"/images/thumbs/tina/newsletters-table.jpg"},"fields":[{"type":"string","label":"Header text","name":"headerText","namespace":["eventsIndex","afterEvents","NewslettersTable","headerText"],"searchable":true,"uid":false}],"namespace":["eventsIndex","afterEvents","NewslettersTable"]},{"label":"Organizer","name":"organizer","fields":[{"type":"image","label":"Profile Image","name":"profileImg","namespace":["eventsIndex","afterEvents","organizer","profileImg"],"searchable":false,"uid":false},{"type":"string","label":"Profile Link","name":"profileLink","namespace":["eventsIndex","afterEvents","organizer","profileLink"],"searchable":true,"uid":false},{"type":"string","label":"Name","name":"name","namespace":["eventsIndex","afterEvents","organizer","name"],"searchable":true,"uid":false},{"type":"string","label":"Position","name":"position","namespace":["eventsIndex","afterEvents","organizer","position"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","namespace":["eventsIndex","afterEvents","organizer","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["eventsIndex","afterEvents","organizer"]},{"label":"Payment Block","name":"paymentBlock","ui":{"previewSrc":"/images/thumbs/tina/payment-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["eventsIndex","afterEvents","paymentBlock","title"],"searchable":true,"uid":false},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["eventsIndex","afterEvents","paymentBlock","subTitle"],"searchable":true,"uid":false},{"type":"reference","label":"Payment Links","name":"payments","collections":["paymentDetails"],"namespace":["eventsIndex","afterEvents","paymentBlock","payments"],"searchable":true,"uid":false},{"type":"rich-text","label":"Footer","name":"footer","namespace":["eventsIndex","afterEvents","paymentBlock","footer"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"image","label":"Credit Cards Image","name":"creditImgSrc","namespace":["eventsIndex","afterEvents","paymentBlock","creditImgSrc"],"searchable":false,"uid":false},{"type":"string","label":"Alt Text","name":"altTxt","namespace":["eventsIndex","afterEvents","paymentBlock","altTxt"],"searchable":true,"uid":false}],"namespace":["eventsIndex","afterEvents","paymentBlock"]},{"name":"PresenterBlock","label":"Presenters","ui":{"previewSrc":"/images/thumbs/tina/presenters.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["eventsIndex","afterEvents","PresenterBlock","header"],"searchable":true,"uid":false},{"type":"object","name":"presenterList","label":"Presenters","list":true,"ui":{},"fields":[{"type":"reference","name":"presenter","label":"Presenters","collections":["presenter"],"namespace":["events","_body","PresenterBlock","presenterList","presenter"]}],"namespace":["eventsIndex","afterEvents","PresenterBlock","presenterList"],"searchable":true,"uid":false},{"type":"object","label":"Other Events","name":"otherEvent","fields":[{"type":"string","label":"Title","name":"title","namespace":["events","_body","PresenterBlock","otherEvent","title"]},{"type":"string","label":"URL","name":"eventURL","namespace":["events","_body","PresenterBlock","otherEvent","eventURL"]}],"namespace":["eventsIndex","afterEvents","PresenterBlock","otherEvent"],"searchable":true,"uid":false}],"namespace":["eventsIndex","afterEvents","PresenterBlock"]},{"label":"Recurring Event","name":"RecurringEvent","ui":{"previewSrc":"/images/thumbs/tina/recurring-event.jpg"},"fields":[{"type":"string","label":"Apply Link Redirect","name":"applyLinkRedirect","namespace":["eventsIndex","afterEvents","RecurringEvent","applyLinkRedirect"],"searchable":true,"uid":false},{"type":"string","label":"Day","name":"day","options":[{"label":"Monday","value":"monday"},{"label":"Tuesday","value":"tuesday"},{"label":"Wednesday","value":"wednesday"},{"label":"Thursday","value":"thursday"},{"label":"Friday","value":"friday"},{"label":"Saturday","value":"saturday"},{"label":"Sunday","value":"sunday"}],"required":true,"namespace":["eventsIndex","afterEvents","RecurringEvent","day"],"searchable":true,"uid":false}],"namespace":["eventsIndex","afterEvents","RecurringEvent"]},{"name":"SectionHeader","label":"Section Header","ui":{"previewSrc":"/images/thumbs/tina/section-header.jpg"},"fields":[{"type":"string","label":"Header Text","name":"headerText","namespace":["eventsIndex","afterEvents","SectionHeader","headerText"],"searchable":true,"uid":false}],"namespace":["eventsIndex","afterEvents","SectionHeader"]},{"name":"ServiceCards","label":"Service Cards","ui":{"previewSrc":"/images/thumbs/tina/services-cards.jpg"},"fields":[{"type":"string","label":"Big Cards Label","name":"bigCardsLabel","namespace":["eventsIndex","afterEvents","ServiceCards","bigCardsLabel"],"searchable":true,"uid":false},{"label":"Big Cards","name":"bigCards","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["events","_body","ServiceCards","bigCards","title"]},{"type":"string","label":"Description","component":"textarea","name":"description","namespace":["events","_body","ServiceCards","bigCards","description"]},{"type":"string","label":"URL","name":"link","namespace":["events","_body","ServiceCards","bigCards","link"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Red","value":"red"},{"label":"Light Gray","value":"lightgray"},{"label":"Medium Gray","value":"mediumgray"},{"label":"Dark Gray","value":"darkgray"}],"namespace":["events","_body","ServiceCards","bigCards","color"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","ServiceCards","bigCards","imgSrc","uploadDir"]},"namespace":["events","_body","ServiceCards","bigCards","imgSrc"]}],"namespace":["eventsIndex","afterEvents","ServiceCards","bigCards"],"searchable":true,"uid":false},{"type":"string","label":"Small Cards Label","name":"smallCardsLabel","namespace":["eventsIndex","afterEvents","ServiceCards","smallCardsLabel"],"searchable":true,"uid":false},{"label":"Small Cards","name":"smallCards","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["events","_body","ServiceCards","smallCards","title"]},{"type":"string","label":"URL","name":"link","namespace":["events","_body","ServiceCards","smallCards","link"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Red","value":"red"},{"label":"Light Gray","value":"lightgray"},{"label":"Medium Gray","value":"mediumgray"},{"label":"Dark Gray","value":"darkgray"}],"namespace":["events","_body","ServiceCards","smallCards","color"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","ServiceCards","smallCards","imgSrc","uploadDir"]},"namespace":["events","_body","ServiceCards","smallCards","imgSrc"]},{"type":"boolean","label":"External Page","description":"Select this if the link is not part of the website. This includes SSW.Rules, and SSW.People links","name":"isExternal","namespace":["events","_body","ServiceCards","smallCards","isExternal"]}],"namespace":["eventsIndex","afterEvents","ServiceCards","smallCards"],"searchable":true,"uid":false},{"label":"Links","name":"links","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["events","_body","ServiceCards","links","label"]},{"type":"string","label":"URL","name":"link","namespace":["events","_body","ServiceCards","links","link"]}],"namespace":["eventsIndex","afterEvents","ServiceCards","links"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["eventsIndex","afterEvents","ServiceCards","backgroundColor"],"searchable":true,"uid":false}],"namespace":["eventsIndex","afterEvents","ServiceCards"]},{"label":"Table Layout","name":"TableLayout","ui":{"previewSrc":"/images/thumbs/tina/table-layout.jpg"},"fields":[{"label":"Table Style","name":"tableStyle","type":"string","options":["none","basicBorder","styled","benefits"],"namespace":["eventsIndex","afterEvents","TableLayout","tableStyle"],"searchable":true,"uid":false},{"label":"First column bolded + left aligned","name":"firstColBold","type":"boolean","required":false,"namespace":["eventsIndex","afterEvents","TableLayout","firstColBold"],"searchable":true,"uid":false},{"type":"string","label":"Table Headers","name":"headers","list":true,"namespace":["eventsIndex","afterEvents","TableLayout","headers"],"searchable":true,"uid":false},{"type":"object","label":"Rows","name":"rows","list":true,"fields":[{"type":"object","label":"Cells","name":"cells","list":true,"fields":[{"type":"string","label":"Value","name":"cellValue","required":true,"component":{"namespace":["page","beforeBody","TableLayout","rows","cells","cellValue",""]},"namespace":["events","footer","TableLayout","rows","cells","cellValue"]}],"ui":{},"namespace":["events","_body","TableLayout","rows","cells"]},{"type":"boolean","label":"Is Heading","name":"isHeader","required":false,"namespace":["events","_body","TableLayout","rows","isHeader"]}],"ui":{},"namespace":["eventsIndex","afterEvents","TableLayout","rows"],"searchable":true,"uid":false}],"namespace":["eventsIndex","afterEvents","TableLayout"]},{"name":"TestimonialsList","label":"Testimonials List","ui":{"previewSrc":"/images/thumbs/tina/testimonials.jpg"},"fields":[{"type":"object","label":"Exclude Categories","name":"excludedCategories","ui":{},"list":true,"fields":[{"type":"reference","label":"Category Name","name":"categoryName","collections":["testimonialCategories"],"namespace":["events","_body","TestimonialsList","excludedCategories","categoryName"]}],"namespace":["eventsIndex","afterEvents","TestimonialsList","excludedCategories"],"searchable":true,"uid":false}],"namespace":["eventsIndex","afterEvents","TestimonialsList"]},{"label":"Training Information","name":"TrainingInformation","ui":{"previewSrc":"/images/thumbs/tina/training-information.jpg"},"fields":[{"type":"object","label":"Training Information Items","name":"trainingInformationItems","list":true,"fields":[{"type":"string","label":"Header","name":"header","namespace":["events","_body","TrainingInformation","trainingInformationItems","header"]},{"type":"rich-text","label":"Body","name":"body","templates":[{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["logos","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["logos","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["logos","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["logos","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["logos","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","afterBody"]}],"namespace":["events","footer","TrainingInformation","trainingInformationItems","body","VerticalListItem"]},{"label":"Recurring Event","name":"RecurringEvent","ui":{"previewSrc":"/images/thumbs/tina/recurring-event.jpg"},"fields":[{"type":"string","label":"Apply Link Redirect","name":"applyLinkRedirect","namespace":["logos","_body","TrainingInformation","trainingInformationItems","body","RecurringEvent","applyLinkRedirect"]},{"type":"string","label":"Day","name":"day","options":[{"label":"Monday","value":"monday"},{"label":"Tuesday","value":"tuesday"},{"label":"Wednesday","value":"wednesday"},{"label":"Thursday","value":"thursday"},{"label":"Friday","value":"friday"},{"label":"Saturday","value":"saturday"},{"label":"Sunday","value":"sunday"}],"required":true,"namespace":["logos","_body","TrainingInformation","trainingInformationItems","body","RecurringEvent","day"]}],"namespace":["events","footer","TrainingInformation","trainingInformationItems","body","RecurringEvent"]}],"namespace":["events","_body","TrainingInformation","trainingInformationItems","body"]}],"namespace":["eventsIndex","afterEvents","TrainingInformation","trainingInformationItems"],"searchable":true,"uid":false}],"namespace":["eventsIndex","afterEvents","TrainingInformation"]},{"label":"Training Learning Outcomes","name":"TrainingLearningOutcome","ui":{"previewSrc":"/images/thumbs/tina/training-learning-outcomes.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["eventsIndex","afterEvents","TrainingLearningOutcome","header"],"searchable":true,"uid":false},{"type":"object","label":"List Items","name":"listItems","list":true,"fields":[{"type":"string","label":"Title","name":"title","namespace":["events","_body","TrainingLearningOutcome","listItems","title"]},{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["events","_body","TrainingLearningOutcome","listItems","content"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","TrainingLearningOutcome","listItems","icon","uploadDir"]},"namespace":["events","_body","TrainingLearningOutcome","listItems","icon"]}],"namespace":["eventsIndex","afterEvents","TrainingLearningOutcome","listItems"],"searchable":true,"uid":false}],"namespace":["eventsIndex","afterEvents","TrainingLearningOutcome"]},{"label":"Tweet Embed","name":"TweetEmbed","ui":{"previewSrc":"/images/thumbs/tina/tweet-embed.jpg"},"fields":[{"type":"string","name":"url","label":"Tweet URL","required":true,"namespace":["eventsIndex","afterEvents","TweetEmbed","url"],"searchable":true,"uid":false}],"namespace":["eventsIndex","afterEvents","TweetEmbed"]},{"name":"UpcomingEvents","label":"Upcoming Events","ui":{"previewSrc":"/images/thumbs/tina/upcoming-events.jpg","defaultItem":{"title":"Upcoming Events","numberOfEvents":30}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["eventsIndex","afterEvents","UpcomingEvents","title"],"searchable":true,"uid":false},{"type":"number","label":"Number of Events","name":"numberOfEvents","namespace":["eventsIndex","afterEvents","UpcomingEvents","numberOfEvents"],"searchable":true,"uid":false}],"namespace":["eventsIndex","afterEvents","UpcomingEvents"]},{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["eventsIndex","afterEvents","UtilityButton","buttonText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"link","required":false,"namespace":["eventsIndex","afterEvents","UtilityButton","link"],"searchable":true,"uid":false},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["eventsIndex","afterEvents","UtilityButton","size"],"searchable":true,"uid":false},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["eventsIndex","afterEvents","UtilityButton","btnIcon"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["eventsIndex","afterEvents","UtilityButton","animated"],"searchable":true,"uid":false},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["eventsIndex","afterEvents","UtilityButton","uncentered"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["eventsIndex","afterEvents","UtilityButton","removeTopMargin"],"searchable":true,"uid":false},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["eventsIndex","afterEvents","UtilityButton","openInNewTab"],"searchable":true,"uid":false}],"namespace":["eventsIndex","afterEvents","UtilityButton"]},{"name":"VerticalImageLayout","label":"Vertical Image Layout","fields":[{"type":"image","label":"Image","name":"imageSrc","uploadDir":{"namespace":["page","beforeBody","VerticalImageLayout","imageSrc","uploadDir"]},"namespace":["eventsIndex","afterEvents","VerticalImageLayout","imageSrc"],"searchable":false,"uid":false},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["eventsIndex","afterEvents","VerticalImageLayout","altText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"imageLink","namespace":["eventsIndex","afterEvents","VerticalImageLayout","imageLink"],"searchable":true,"uid":false},{"type":"number","label":"Height","name":"height","required":true,"namespace":["eventsIndex","afterEvents","VerticalImageLayout","height"],"searchable":true,"uid":false},{"type":"number","label":"Width","name":"width","required":true,"namespace":["eventsIndex","afterEvents","VerticalImageLayout","width"],"searchable":true,"uid":false},{"type":"rich-text","label":"Message","name":"message","required":true,"namespace":["eventsIndex","afterEvents","VerticalImageLayout","message"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["eventsIndex","afterEvents","VerticalImageLayout","sizes"],"searchable":true,"uid":false}],"namespace":["eventsIndex","afterEvents","VerticalImageLayout"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["eventsIndex","afterEvents","VerticalListItem","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"number","label":"Index number","name":"index","namespace":["eventsIndex","afterEvents","VerticalListItem","index"],"searchable":true,"uid":false},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["eventsIndex","afterEvents","VerticalListItem","icon"],"searchable":false,"uid":false},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["eventsIndex","afterEvents","VerticalListItem","iconScale"],"searchable":true,"uid":false},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["eventsIndex","afterEvents","VerticalListItem","afterBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["eventsIndex","afterEvents","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["eventsIndex","afterEvents","VideoEmbed","url"],"searchable":true,"uid":false},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["eventsIndex","afterEvents","VideoEmbed","videoWidth"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["eventsIndex","afterEvents","VideoEmbed","removeMargin"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["eventsIndex","afterEvents","VideoEmbed","uncentre"],"searchable":true,"uid":false},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["eventsIndex","afterEvents","VideoEmbed","overflow"],"searchable":true,"uid":false},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["eventsIndex","afterEvents","VideoEmbed","caption"],"searchable":true,"uid":false},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["eventsIndex","afterEvents","VideoEmbed","duration"],"searchable":true,"uid":false}],"namespace":["eventsIndex","afterEvents","VideoEmbed"]},{"name":"InlineJotForm","label":"In-line JotForm","ui":{"previewSrc":"/images/thumbs/tina/inline-jot-form.jpg"},"fields":[{"type":"string","name":"title","label":"Title","description":"Optional title for JotForm","namespace":["eventsIndex","afterEvents","InlineJotForm","title"],"searchable":true,"uid":false},{"type":"string","name":"jotFormId","label":"JotForm ID","required":true,"namespace":["eventsIndex","afterEvents","InlineJotForm","jotFormId"],"searchable":true,"uid":false},{"type":"string","name":"additionalClasses","label":"Additional classnames","description":"Optional styling for iframe element only","namespace":["eventsIndex","afterEvents","InlineJotForm","additionalClasses"],"searchable":true,"uid":false}],"namespace":["eventsIndex","afterEvents","InlineJotForm"]}],"namespace":["eventsIndex","afterEvents"],"searchable":true,"uid":false}],"namespace":["eventsIndex"]},{"label":"Events - Pages","name":"events","format":"mdx","path":"content/events","match":{"exclude":"index/**/**"},"ui":{},"fields":[{"type":"string","name":"tip","label":"Tip","ui":{},"namespace":["events","tip"],"searchable":true,"uid":false},{"type":"object","label":"SEO Values","name":"seo","fields":[{"type":"string","label":"Title (70 characters)","name":"title","ui":{},"namespace":["events","seo","title"],"searchable":true,"uid":false},{"type":"string","label":"Description (150 characters)","name":"description","component":"textarea","ui":{},"namespace":["events","seo","description"],"searchable":true,"uid":false},{"type":"string","label":"Canonical URL","name":"canonical","namespace":["events","seo","canonical"],"searchable":true,"uid":false},{"type":"boolean","name":"showBreadcrumb","label":"Show Breadcrumb","namespace":["events","seo","showBreadcrumb"],"searchable":true,"uid":false},{"label":"Images","name":"images","list":true,"type":"object","ui":{"defaultItem":{"url":"/images/ssw-default-og.jpg","width":1200,"height":630,"alt":"SSW Consulting - Enterprise Software Development"}},"fields":[{"type":"image","label":"Image Url","name":"url","require":true,"namespace":["logos","seo","images","url"],"searchable":false,"uid":false},{"type":"number","label":"Width (px)","name":"width","namespace":["logos","seo","images","width"],"searchable":true,"uid":false},{"type":"number","label":"Height (px)","name":"height","namespace":["logos","seo","images","height"],"searchable":true,"uid":false},{"type":"string","label":"Image Alt Text","name":"alt","namespace":["logos","seo","images","alt"],"searchable":true,"uid":false}],"namespace":["events","seo","images"],"searchable":true,"uid":false}],"namespace":["events","seo"],"searchable":true,"uid":false},{"type":"object","label":"Events Header","name":"eventHeader","fields":[{"type":"image","label":"Hero Background","name":"heroBackground","uploadDir":{"namespace":["events","eventHeader","heroBackground","uploadDir"]},"namespace":["events","eventHeader","heroBackground"],"searchable":false,"uid":false},{"type":"string","label":"Alt Text","name":"altText","namespace":["events","eventHeader","altText"],"searchable":true,"uid":false},{"type":"image","label":"Image Overlay","name":"imgOverlay","uploadDir":{"namespace":["events","eventHeader","imgOverlay","uploadDir"]},"namespace":["events","eventHeader","imgOverlay"],"searchable":false,"uid":false}],"namespace":["events","eventHeader"],"searchable":true,"uid":false},{"type":"object","label":"Testimonials","name":"testimonials","fields":[{"type":"string","label":"Tagline","name":"tagline","namespace":["events","testimonials","tagline"],"searchable":true,"uid":false}],"namespace":["events","testimonials"],"searchable":true,"uid":false},{"type":"string","name":"title","label":"Title","namespace":["events","title"],"searchable":true,"uid":false},{"type":"rich-text","name":"subTitle","label":"Sub Title","namespace":["events","subTitle"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"boolean","name":"showBreadcrumb","label":"Show Breadcrumb","namespace":["events","showBreadcrumb"],"searchable":true,"uid":false},{"type":"boolean","name":"showTestimonials","label":"Show Testimonials","namespace":["events","showTestimonials"],"searchable":true,"uid":false},{"type":"object","label":"Testimonial Categories","name":"testimonialCategories","ui":{},"list":true,"fields":[{"type":"reference","label":"Testimonial Category","name":"testimonialCategory","collections":["testimonialCategories"],"namespace":["events","testimonialCategories","testimonialCategory"],"searchable":true,"uid":false}],"namespace":["events","testimonialCategories"],"searchable":true,"uid":false},{"type":"object","list":true,"name":"_body","label":"Body","ui":{"visualSelector":true},"templates":[{"name":"AboutUs","label":"About Us","ui":{"previewSrc":"/images/thumbs/tina/about-us.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["events","_body","AboutUs","backgroundColor"],"searchable":true,"uid":false},{"type":"boolean","label":"Show Map","name":"showMap","required":false,"namespace":["events","_body","AboutUs","showMap"],"searchable":true,"uid":false}],"namespace":["events","_body","AboutUs"]},{"label":"Agenda","name":"Agenda","ui":{"previewSrc":"/images/thumbs/tina/agenda.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["events","_body","Agenda","header"],"searchable":true,"uid":false},{"type":"string","label":"Header Color","name":"textColor","options":[{"label":"Red","value":"red"},{"label":"Gray","value":"gray"},{"label":"Default","value":"default"}],"namespace":["events","_body","Agenda","textColor"],"searchable":true,"uid":false},{"type":"object","label":"Agenda Items","name":"agendaItemList","ui":{},"list":true,"fields":[{"type":"string","label":"Placeholder Text","name":"placeholder","namespace":["events","footer","Agenda","agendaItemList","placeholder"]},{"type":"rich-text","label":"Body","name":"body","templates":[{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["industry","_body","Agenda","agendaItemList","body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["industry","_body","Agenda","agendaItemList","body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["industry","_body","Agenda","agendaItemList","body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["industry","_body","Agenda","agendaItemList","body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["industry","_body","Agenda","agendaItemList","body","VerticalListItem","afterBody"]}],"namespace":["logos","_body","Agenda","agendaItemList","body","VerticalListItem"]}],"namespace":["events","footer","Agenda","agendaItemList","body"]}],"namespace":["events","_body","Agenda","agendaItemList"],"searchable":true,"uid":false}],"namespace":["events","_body","Agenda"]},{"label":"Agreement Form","name":"AgreementForm","ui":{"previewSrc":"/images/thumbs/tina/agreement-form.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["events","_body","AgreementForm","backgroundColor"],"searchable":true,"uid":false},{"type":"object","label":"Form fields","name":"fields","list":true,"fields":[{"type":"string","label":"ID","name":"id","required":true,"namespace":["events","footer","AgreementForm","fields","id"]},{"type":"string","label":"Label","name":"label","required":true,"namespace":["events","footer","AgreementForm","fields","label"]},{"type":"string","label":"Placeholder","name":"placeholder","namespace":["events","footer","AgreementForm","fields","placeholder"]},{"type":"boolean","label":"Resizeable","name":"resizeable","required":true,"namespace":["events","footer","AgreementForm","fields","resizeable"]}],"namespace":["events","_body","AgreementForm","fields"],"searchable":true,"uid":false}],"namespace":["events","_body","AgreementForm"]},{"label":"Interest Form","name":"InterestForm","ui":{"previewSrc":"/images/thumbs/tina/interest-form.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["events","_body","InterestForm","buttonText"],"searchable":true,"uid":false}],"namespace":["events","_body","InterestForm"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["events","_body","BookingButton","buttonText"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","namespace":["events","_body","BookingButton","animated"],"searchable":true,"uid":false},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["events","_body","BookingButton","buttonSubtitle"],"searchable":true,"uid":false}],"namespace":["events","_body","BookingButton"]},{"name":"BuiltOnAzure","label":"Built on Azure","ui":{"previewSrc":"/images/thumbs/tina/built-on-azure.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["events","_body","BuiltOnAzure","backgroundColor"],"searchable":true,"uid":false}],"namespace":["events","_body","BuiltOnAzure"]},{"name":"Carousel","label":"Carousel","ui":{"previewSrc":"/images/thumbs/tina/carousel.jpg"},"fields":[{"label":"Items","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Item description","link":"/","openIn":"sameWindow"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["events","footer","Carousel","items","label"]},{"type":"string","label":"URL","name":"link","description":"If link contains ssw.com.au, you can skip the full URL and just use the path. e.g. /services","namespace":["events","footer","Carousel","items","link"]},{"type":"string","label":"Open in","name":"openIn","description":"If it is external link, please select 'New window' option.","options":[{"label":"Same window","value":"sameWindow"},{"label":"Modal","value":"modal"},{"label":"New window","value":"newWindow"}],"namespace":["events","footer","Carousel","items","openIn"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","Carousel","items","imgSrc","uploadDir"]},"namespace":["events","footer","Carousel","items","imgSrc"]}],"namespace":["events","_body","Carousel","items"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["events","_body","Carousel","backgroundColor"],"searchable":true,"uid":false},{"type":"number","label":"Delay (Seconds)","name":"delay","required":true,"namespace":["events","_body","Carousel","delay"],"searchable":true,"uid":false},{"type":"boolean","label":"Show on mobile devices","name":"showOnMobileDevices","namespace":["events","_body","Carousel","showOnMobileDevices"],"searchable":true,"uid":false}],"namespace":["events","_body","Carousel"]},{"name":"Citation","label":"Citation","fields":[{"type":"string","label":"author","name":"author","namespace":["events","_body","Citation","author"],"searchable":true,"uid":false},{"type":"string","label":"article","name":"article","required":true,"namespace":["events","_body","Citation","article"],"searchable":true,"uid":false}],"namespace":["events","_body","Citation"]},{"label":"Client List","name":"ClientList","ui":{"previewSrc":"/images/thumbs/tina/clients-list.jpg"},"fields":[{"type":"object","name":"categories","label":"Categories","list":true,"fields":[{"type":"reference","name":"category","label":"Category","collections":["clientCategories"],"namespace":["events","footer","ClientList","categories","category"]}],"ui":{},"namespace":["events","_body","ClientList","categories"],"searchable":true,"uid":false},{"type":"object","name":"clients","label":"Clients list","list":true,"ui":{"previewSrc":"/images/thumbs/tina/clients-list.jpg"},"fields":[{"type":"string","name":"name","label":"Name","namespace":["events","footer","ClientList","clients","name"]},{"type":"image","name":"logo","label":"Logo","namespace":["events","footer","ClientList","clients","logo"]},{"type":"string","name":"logoUrl","label":"Logo URL","namespace":["events","footer","ClientList","clients","logoUrl"]},{"type":"rich-text","name":"content","label":"Content","templates":[{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["industry","_body","ClientList","clients","content","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["industry","_body","ClientList","clients","content","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["industry","_body","ClientList","clients","content","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["industry","_body","ClientList","clients","content","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["industry","_body","ClientList","clients","content","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["industry","_body","ClientList","clients","content","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["industry","_body","ClientList","clients","content","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["industry","_body","ClientList","clients","content","UtilityButton","openInNewTab"]}],"namespace":["logos","_body","ClientList","clients","content","UtilityButton"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["industry","_body","ClientList","clients","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["industry","_body","ClientList","clients","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["industry","_body","ClientList","clients","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["industry","_body","ClientList","clients","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["industry","_body","ClientList","clients","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["industry","_body","ClientList","clients","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["industry","_body","ClientList","clients","content","VideoEmbed","duration"]}],"namespace":["logos","_body","ClientList","clients","content","VideoEmbed"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["industry","_body","ClientList","clients","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["industry","_body","ClientList","clients","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["industry","_body","ClientList","clients","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["industry","_body","ClientList","clients","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["industry","_body","ClientList","clients","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["industry","_body","ClientList","clients","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["industry","_body","ClientList","clients","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["industry","_body","ClientList","clients","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["industry","_body","ClientList","clients","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["industry","_body","ClientList","clients","content","CustomImage","sizes"]}],"namespace":["logos","_body","ClientList","clients","content","CustomImage"]},{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["industry","_body","ClientList","clients","content","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["industry","_body","ClientList","clients","content","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["marketing","mediaComponent","ClientList","clients","content","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["marketing","mediaComponent","ClientList","clients","content","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["marketing","mediaComponent","ClientList","clients","content","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["marketing","mediaComponent","ClientList","clients","content","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["marketing","mediaComponent","ClientList","clients","content","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["marketing","mediaComponent","ClientList","clients","content","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["marketing","mediaComponent","ClientList","clients","content","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["marketing","mediaComponent","ClientList","clients","content","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["marketing","mediaComponent","ClientList","clients","content","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["marketing","mediaComponent","ClientList","clients","content","ContentCard","content","CustomImage","sizes"]}],"namespace":["live","subtitle","ClientList","clients","content","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["marketing","mediaComponent","ClientList","clients","content","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["marketing","mediaComponent","ClientList","clients","content","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["marketing","mediaComponent","ClientList","clients","content","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["marketing","mediaComponent","ClientList","clients","content","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["marketing","mediaComponent","ClientList","clients","content","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["live","subtitle","ClientList","clients","content","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["marketing","mediaComponent","ClientList","clients","content","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["marketing","mediaComponent","ClientList","clients","content","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["marketing","mediaComponent","ClientList","clients","content","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["marketing","mediaComponent","ClientList","clients","content","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["marketing","mediaComponent","ClientList","clients","content","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["marketing","mediaComponent","ClientList","clients","content","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["marketing","mediaComponent","ClientList","clients","content","ContentCard","content","VideoEmbed","duration"]}],"namespace":["live","subtitle","ClientList","clients","content","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["marketing","mediaComponent","ClientList","clients","content","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["marketing","mediaComponent","ClientList","clients","content","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","aboutUs","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["offices","aboutUs","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","aboutUs","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["offices","aboutUs","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["offices","aboutUs","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["marketing","mediaComponent","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["live","subtitle","ClientList","clients","content","ContentCard","content","ColorBlock"]}],"namespace":["industry","_body","ClientList","clients","content","ContentCard","content"]}],"namespace":["logos","_body","ClientList","clients","content","ContentCard"]}],"namespace":["events","footer","ClientList","clients","content"]},{"type":"string","name":"caseStudyUrl","label":"Case study URL","namespace":["events","footer","ClientList","clients","caseStudyUrl"]},{"type":"object","name":"categories","label":"Categories","list":true,"ui":{},"fields":[{"type":"reference","name":"category","label":"Category","collections":["clientCategories"],"namespace":["logos","_body","ClientList","clients","categories","category"]}],"namespace":["events","footer","ClientList","clients","categories"]}],"namespace":["events","_body","ClientList","clients"],"searchable":true,"uid":false}],"namespace":["events","_body","ClientList"]},{"name":"ClientLogos","label":"Client Logos","ui":{"previewSrc":"/images/thumbs/tina/client-logos.jpg"},"fields":[{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["events","_body","ClientLogos","altText"],"searchable":true,"uid":false}],"namespace":["events","_body","ClientLogos"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["events","_body","ColorBlock","title"],"searchable":true,"uid":false},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["events","_body","ColorBlock","subTitle"],"searchable":true,"uid":false},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["events","footer","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["events","footer","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["events","footer","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["events","footer","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["events","footer","ColorBlock","colorRow","caption"]}],"namespace":["events","_body","ColorBlock","colorRow"],"searchable":true,"uid":false}],"namespace":["events","_body","ColorBlock"]},{"name":"ColorPalette","label":"Color Palette","ui":{"previewSrc":"/images/thumbs/tina/color-palette.jpg"},"fields":[{"type":"string","label":"Name","name":"name","namespace":["events","_body","ColorPalette","name"],"searchable":true,"uid":false}],"namespace":["events","_body","ColorPalette"]},{"name":"Content","label":"Content","ui":{"previewSrc":"/images/thumbs/tina/content.jpg","defaultItem":{"body":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["events","_body","Content","title"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["logos","_body","Content","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["logos","_body","Content","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["logos","_body","Content","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["logos","_body","Content","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["logos","_body","Content","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["logos","_body","Content","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["logos","_body","Content","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["logos","_body","Content","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["logos","_body","Content","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["logos","_body","Content","content","CustomImage","sizes"]}],"namespace":["events","footer","Content","content","CustomImage"]},{"name":"ClientLogos","label":"Client Logos","ui":{"previewSrc":"/images/thumbs/tina/client-logos.jpg"},"fields":[{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["logos","_body","Content","content","ClientLogos","altText"]}],"namespace":["events","footer","Content","content","ClientLogos"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["logos","_body","Content","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["logos","_body","Content","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["logos","_body","Content","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["logos","_body","Content","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["logos","_body","Content","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["logos","_body","Content","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["logos","_body","Content","content","VideoEmbed","duration"]}],"namespace":["events","footer","Content","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["logos","_body","Content","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["logos","_body","Content","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["industry","_body","Content","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["industry","_body","Content","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["industry","_body","Content","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["industry","_body","Content","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["industry","_body","Content","content","ColorBlock","colorRow","caption"]}],"namespace":["logos","_body","Content","content","ColorBlock","colorRow"]}],"namespace":["events","footer","Content","content","ColorBlock"]}],"namespace":["events","_body","Content","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Container Padding","name":"paddingClass","options":["Mobile: No Padding","Mobile: No Top and Horizontal Padding"],"namespace":["events","_body","Content","paddingClass"],"searchable":true,"uid":false},{"type":"string","label":"Text size","name":"size","options":[{"label":"small","value":"sm"},{"label":"normal","value":"base"},{"label":"large","value":"lg"},{"label":"extra large","value":"xl"},{"label":"2x large","value":"2xl"}],"namespace":["events","_body","Content","size"],"searchable":true,"uid":false},{"type":"string","label":"Align","name":"align","options":[{"label":"Left","value":"left"},{"label":"Center","value":"center"},{"label":"Right","value":"right"}],"namespace":["events","_body","Content","align"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["events","_body","Content","backgroundColor"],"searchable":true,"uid":false}],"namespace":["events","_body","Content"]},{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["events","_body","ContentCard","prose"],"searchable":true,"uid":false},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["events","_body","ContentCard","centerAlignedText"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["logos","_body","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["logos","_body","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["logos","_body","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["logos","_body","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["logos","_body","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["logos","_body","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["logos","_body","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["logos","_body","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["logos","_body","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["logos","_body","ContentCard","content","CustomImage","sizes"]}],"namespace":["events","footer","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["logos","_body","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["logos","_body","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["logos","_body","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["logos","_body","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["logos","_body","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["events","footer","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["logos","_body","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["logos","_body","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["logos","_body","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["logos","_body","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["logos","_body","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["logos","_body","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["logos","_body","ContentCard","content","VideoEmbed","duration"]}],"namespace":["events","footer","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["logos","_body","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["logos","_body","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["industry","_body","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["industry","_body","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["industry","_body","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["industry","_body","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["industry","_body","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["logos","_body","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["events","footer","ContentCard","content","ColorBlock"]}],"namespace":["events","_body","ContentCard","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["events","_body","ContentCard"]},{"name":"CustomDownloadButton","label":"Custom Download Button","ui":{"previewSrc":"/images/thumbs/tina/custom-download-button.jpg"},"fields":[{"type":"string","label":"Text","name":"btnText","namespace":["events","_body","CustomDownloadButton","btnText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"btnLink","namespace":["events","_body","CustomDownloadButton","btnLink"],"searchable":true,"uid":false}],"namespace":["events","_body","CustomDownloadButton"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["events","_body","CustomImage","src"],"searchable":false,"uid":false},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["events","_body","CustomImage","altText"],"searchable":true,"uid":false},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["events","_body","CustomImage","alignment"],"searchable":true,"uid":false},{"type":"number","label":"Height","name":"height","required":true,"namespace":["events","_body","CustomImage","height"],"searchable":true,"uid":false},{"type":"number","label":"Width","name":"width","required":true,"namespace":["events","_body","CustomImage","width"],"searchable":true,"uid":false},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["events","_body","CustomImage","link"],"searchable":true,"uid":false},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["events","_body","CustomImage","customClass"],"searchable":true,"uid":false},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["events","_body","CustomImage","caption"],"searchable":true,"uid":false},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["events","_body","CustomImage","captionColor"],"searchable":true,"uid":false},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["events","_body","CustomImage","sizes"],"searchable":true,"uid":false}],"namespace":["events","_body","CustomImage"]},{"name":"DomainFromQuery","label":"Domain from query","ui":{"previewSrc":"/images/thumbs/tina/domain-from-query.jpg"},"fields":[{"name":"title","label":"Title","type":"string","description":"This is a H1 heading","namespace":["events","_body","DomainFromQuery","title"],"searchable":true,"uid":false},{"name":"showDomain","label":"Show domain name","type":"boolean","description":"Query param in URL must have key of 'domain'","namespace":["events","_body","DomainFromQuery","showDomain"],"searchable":true,"uid":false}],"namespace":["events","_body","DomainFromQuery"]},{"name":"DownloadBlock","label":"Download Block","ui":{"previewSrc":"/images/thumbs/tina/download-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["events","_body","DownloadBlock","title"],"searchable":true,"uid":false},{"type":"object","label":"Downloads","name":"downloads","ui":{},"list":true,"fields":[{"type":"string","label":"Header","name":"header","namespace":["events","footer","DownloadBlock","downloads","header"]},{"type":"image","label":"Image","name":"img","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","img","uploadDir"]},"namespace":["events","footer","DownloadBlock","downloads","img"]},{"type":"string","label":"Image Background","name":"imgBackground","options":["black","grey","white","darkgrey","darkgreen"],"namespace":["events","footer","DownloadBlock","downloads","imgBackground"]},{"type":"string","label":"First Link Text","name":"firstLinkText","description":"Defaults to PNG","namespace":["events","footer","DownloadBlock","downloads","firstLinkText"]},{"type":"image","label":"First Link","name":"firstLink","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","firstLink","uploadDir"]},"namespace":["events","footer","DownloadBlock","downloads","firstLink"]},{"type":"string","label":"Second Link Text","name":"secondLinkText","description":"Defaults to PDF","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","secondLinkText","uploadDir"]},"namespace":["events","footer","DownloadBlock","downloads","secondLinkText"]},{"type":"image","label":"Second Link","name":"secondLink","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","secondLink","uploadDir"]},"namespace":["events","footer","DownloadBlock","downloads","secondLink"]}],"namespace":["events","_body","DownloadBlock","downloads"],"searchable":true,"uid":false},{"type":"boolean","label":"Bottom border","name":"bottomBorder","namespace":["events","_body","DownloadBlock","bottomBorder"],"searchable":true,"uid":false}],"namespace":["events","_body","DownloadBlock"]},{"name":"DynamicColumns","label":"Dynamic Column Layout","fields":[{"type":"rich-text","label":"Column text body","name":"colBody","required":true,"namespace":["events","_body","DynamicColumns","colBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"number","label":"Number of columns","name":"colCount","required":true,"ui":{},"namespace":["events","_body","DynamicColumns","colCount"],"searchable":true,"uid":false}],"namespace":["events","_body","DynamicColumns"]},{"name":"EventBooking","label":"Events Booking","ui":{"previewSrc":"/images/thumbs/tina/events-booking.jpg"},"fields":[{"type":"number","label":"Duration (In Days)","name":"eventDurationInDays","required":true,"namespace":["events","_body","EventBooking","eventDurationInDays"],"searchable":true,"uid":false},{"type":"number","label":"Price","name":"price","required":true,"namespace":["events","_body","EventBooking","price"],"searchable":true,"uid":false},{"type":"number","label":"Discount Price","name":"discountPrice","namespace":["events","_body","EventBooking","discountPrice"],"searchable":true,"uid":false},{"type":"string","name":"gstText","label":"Select GST Option","options":["inc GST","+ GST"],"required":true,"namespace":["events","_body","EventBooking","gstText"],"searchable":true,"uid":false},{"type":"string","label":"Discount Note","name":"discountNote","namespace":["events","_body","EventBooking","discountNote"],"searchable":true,"uid":false},{"type":"object","label":"Event","name":"eventList","ui":{},"list":true,"fields":[{"type":"string","label":"City","name":"city","namespace":["events","footer","EventBooking","eventList","city"]},{"type":"datetime","label":"Start Date","name":"date","ui":{},"namespace":["events","footer","EventBooking","eventList","date"]},{"type":"string","label":"Booking URL","name":"bookingURL","namespace":["events","footer","EventBooking","eventList","bookingURL"]},{"type":"reference","label":"Location","name":"location","collections":["locations"],"namespace":["events","footer","EventBooking","eventList","location"]}],"namespace":["events","_body","EventBooking","eventList"],"searchable":true,"uid":false}],"namespace":["events","_body","EventBooking"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["logos","_body","EventLink","content","Flag","country"]}],"namespace":["events","footer","EventLink","content","Flag"]}],"namespace":["events","_body","EventLink","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Link","name":"link","namespace":["events","_body","EventLink","link"],"searchable":true,"uid":false},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["events","_body","EventLink","eventThumbnail"],"searchable":false,"uid":false},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["events","_body","EventLink","thumbnailAlt"],"searchable":true,"uid":false}],"namespace":["events","_body","EventLink"]},{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["events","_body","Flag","country"],"searchable":true,"uid":false}],"namespace":["events","_body","Flag"]},{"name":"FixedColumns","label":"Fixed Column Layout (2 columns)","ui":{"previewSrc":"/images/thumbs/tina/fixed-columns.jpg"},"fields":[{"type":"rich-text","label":"Header Section (Optional)","name":"headerSection","namespace":["events","_body","FixedColumns","headerSection"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"First column text","name":"firstColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["logos","_body","FixedColumns","firstColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["logos","_body","FixedColumns","firstColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["live","subtitle","FixedColumns","firstColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["live","subtitle","FixedColumns","firstColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["live","subtitle","FixedColumns","firstColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["live","subtitle","FixedColumns","firstColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["live","subtitle","FixedColumns","firstColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["live","subtitle","FixedColumns","firstColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["live","subtitle","FixedColumns","firstColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["live","subtitle","FixedColumns","firstColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["live","subtitle","FixedColumns","firstColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["live","subtitle","FixedColumns","firstColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["industry","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["live","subtitle","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["live","subtitle","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["live","subtitle","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["live","subtitle","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["live","subtitle","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["industry","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["live","subtitle","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["live","subtitle","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["live","subtitle","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["live","subtitle","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["live","subtitle","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["live","subtitle","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["live","subtitle","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["industry","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["live","subtitle","FixedColumns","firstColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["live","subtitle","FixedColumns","firstColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["marketing","mediaComponent","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["marketing","mediaComponent","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["marketing","mediaComponent","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["marketing","mediaComponent","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["marketing","mediaComponent","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["live","subtitle","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["industry","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock"]}],"namespace":["logos","_body","FixedColumns","firstColBody","ContentCard","content"]}],"namespace":["events","footer","FixedColumns","firstColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["logos","_body","FixedColumns","firstColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["logos","_body","FixedColumns","firstColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["logos","_body","FixedColumns","firstColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["logos","_body","FixedColumns","firstColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["logos","_body","FixedColumns","firstColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["logos","_body","FixedColumns","firstColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["logos","_body","FixedColumns","firstColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["logos","_body","FixedColumns","firstColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["logos","_body","FixedColumns","firstColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["logos","_body","FixedColumns","firstColBody","CustomImage","sizes"]}],"namespace":["events","footer","FixedColumns","firstColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["live","subtitle","FixedColumns","firstColBody","EventLink","content","Flag","country"]}],"namespace":["industry","_body","FixedColumns","firstColBody","EventLink","content","Flag"]}],"namespace":["logos","_body","FixedColumns","firstColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["logos","_body","FixedColumns","firstColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["logos","_body","FixedColumns","firstColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["logos","_body","FixedColumns","firstColBody","EventLink","thumbnailAlt"]}],"namespace":["events","footer","FixedColumns","firstColBody","EventLink"]}],"namespace":["events","_body","FixedColumns","firstColBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"Second column text","name":"secondColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["logos","_body","FixedColumns","secondColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["logos","_body","FixedColumns","secondColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["live","subtitle","FixedColumns","secondColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["live","subtitle","FixedColumns","secondColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["live","subtitle","FixedColumns","secondColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["live","subtitle","FixedColumns","secondColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["live","subtitle","FixedColumns","secondColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["live","subtitle","FixedColumns","secondColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["live","subtitle","FixedColumns","secondColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["live","subtitle","FixedColumns","secondColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["live","subtitle","FixedColumns","secondColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["live","subtitle","FixedColumns","secondColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["industry","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["live","subtitle","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["live","subtitle","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["live","subtitle","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["live","subtitle","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["live","subtitle","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["industry","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["live","subtitle","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["live","subtitle","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["live","subtitle","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["live","subtitle","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["live","subtitle","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["live","subtitle","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["live","subtitle","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["industry","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["live","subtitle","FixedColumns","secondColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["live","subtitle","FixedColumns","secondColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["marketing","mediaComponent","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["marketing","mediaComponent","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["marketing","mediaComponent","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["marketing","mediaComponent","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["marketing","mediaComponent","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["live","subtitle","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["industry","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock"]}],"namespace":["logos","_body","FixedColumns","secondColBody","ContentCard","content"]}],"namespace":["events","footer","FixedColumns","secondColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["logos","_body","FixedColumns","secondColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["logos","_body","FixedColumns","secondColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["logos","_body","FixedColumns","secondColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["logos","_body","FixedColumns","secondColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["logos","_body","FixedColumns","secondColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["logos","_body","FixedColumns","secondColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["logos","_body","FixedColumns","secondColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["logos","_body","FixedColumns","secondColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["logos","_body","FixedColumns","secondColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["logos","_body","FixedColumns","secondColBody","CustomImage","sizes"]}],"namespace":["events","footer","FixedColumns","secondColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["live","subtitle","FixedColumns","secondColBody","EventLink","content","Flag","country"]}],"namespace":["industry","_body","FixedColumns","secondColBody","EventLink","content","Flag"]}],"namespace":["logos","_body","FixedColumns","secondColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["logos","_body","FixedColumns","secondColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["logos","_body","FixedColumns","secondColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["logos","_body","FixedColumns","secondColBody","EventLink","thumbnailAlt"]}],"namespace":["events","footer","FixedColumns","secondColBody","EventLink"]}],"namespace":["events","_body","FixedColumns","secondColBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["events","_body","FixedColumns"]},{"name":"FixedTabsLayout","label":"Fixed Tabs Layout","ui":{"previewSrc":"/images/thumbs/tina/fixed-tabs-layout.jpg"},"fields":[{"type":"string","name":"firstTab","label":"First Tab","namespace":["events","_body","FixedTabsLayout","firstTab"],"searchable":true,"uid":false},{"type":"rich-text","name":"firstHeading","label":"First Heading","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["logos","_body","FixedTabsLayout","firstHeading","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["logos","_body","FixedTabsLayout","firstHeading","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["logos","_body","FixedTabsLayout","firstHeading","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["logos","_body","FixedTabsLayout","firstHeading","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["logos","_body","FixedTabsLayout","firstHeading","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["logos","_body","FixedTabsLayout","firstHeading","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["logos","_body","FixedTabsLayout","firstHeading","VideoEmbed","duration"]}],"namespace":["events","footer","FixedTabsLayout","firstHeading","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["logos","_body","FixedTabsLayout","firstHeading","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["logos","_body","FixedTabsLayout","firstHeading","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["logos","_body","FixedTabsLayout","firstHeading","BookingButton","buttonSubtitle"]}],"namespace":["events","footer","FixedTabsLayout","firstHeading","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["logos","_body","FixedTabsLayout","firstHeading","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["industry","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["industry","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["industry","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["industry","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList","skills"]}],"namespace":["logos","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["industry","_body","FixedTabsLayout","firstHeading","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["industry","_body","FixedTabsLayout","firstHeading","ExpertBlock","link","url"]}],"namespace":["logos","_body","FixedTabsLayout","firstHeading","ExpertBlock","link"]}],"namespace":["events","footer","FixedTabsLayout","firstHeading","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["industry","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["industry","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["industry","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["live","subtitle","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["live","subtitle","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["live","subtitle","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["industry","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["logos","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["events","footer","FixedTabsLayout","firstHeading","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["logos","_body","FixedTabsLayout","firstHeading","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["logos","_body","FixedTabsLayout","firstHeading","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["logos","_body","FixedTabsLayout","firstHeading","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["logos","_body","FixedTabsLayout","firstHeading","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["logos","_body","FixedTabsLayout","firstHeading","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["logos","_body","FixedTabsLayout","firstHeading","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["logos","_body","FixedTabsLayout","firstHeading","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["logos","_body","FixedTabsLayout","firstHeading","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["logos","_body","FixedTabsLayout","firstHeading","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["logos","_body","FixedTabsLayout","firstHeading","CustomImage","sizes"]}],"namespace":["events","footer","FixedTabsLayout","firstHeading","CustomImage"]}],"namespace":["events","_body","FixedTabsLayout","firstHeading"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","name":"firstBody","label":"First Body","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["logos","_body","FixedTabsLayout","firstBody","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["logos","_body","FixedTabsLayout","firstBody","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["logos","_body","FixedTabsLayout","firstBody","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["logos","_body","FixedTabsLayout","firstBody","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["logos","_body","FixedTabsLayout","firstBody","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["logos","_body","FixedTabsLayout","firstBody","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["logos","_body","FixedTabsLayout","firstBody","VideoEmbed","duration"]}],"namespace":["events","footer","FixedTabsLayout","firstBody","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["logos","_body","FixedTabsLayout","firstBody","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["logos","_body","FixedTabsLayout","firstBody","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["logos","_body","FixedTabsLayout","firstBody","BookingButton","buttonSubtitle"]}],"namespace":["events","footer","FixedTabsLayout","firstBody","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["logos","_body","FixedTabsLayout","firstBody","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["industry","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["industry","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["industry","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["industry","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList","skills"]}],"namespace":["logos","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["industry","_body","FixedTabsLayout","firstBody","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["industry","_body","FixedTabsLayout","firstBody","ExpertBlock","link","url"]}],"namespace":["logos","_body","FixedTabsLayout","firstBody","ExpertBlock","link"]}],"namespace":["events","footer","FixedTabsLayout","firstBody","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["industry","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["industry","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["industry","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["live","subtitle","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["live","subtitle","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["live","subtitle","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["industry","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["logos","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["events","footer","FixedTabsLayout","firstBody","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["logos","_body","FixedTabsLayout","firstBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["logos","_body","FixedTabsLayout","firstBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["logos","_body","FixedTabsLayout","firstBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["logos","_body","FixedTabsLayout","firstBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["logos","_body","FixedTabsLayout","firstBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["logos","_body","FixedTabsLayout","firstBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["logos","_body","FixedTabsLayout","firstBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["logos","_body","FixedTabsLayout","firstBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["logos","_body","FixedTabsLayout","firstBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["logos","_body","FixedTabsLayout","firstBody","CustomImage","sizes"]}],"namespace":["events","footer","FixedTabsLayout","firstBody","CustomImage"]}],"namespace":["events","_body","FixedTabsLayout","firstBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","name":"secondTab","label":"Second Tab","namespace":["events","_body","FixedTabsLayout","secondTab"],"searchable":true,"uid":false},{"type":"rich-text","name":"secondHeading","label":"Second Heading","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["logos","_body","FixedTabsLayout","secondHeading","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["logos","_body","FixedTabsLayout","secondHeading","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["logos","_body","FixedTabsLayout","secondHeading","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["logos","_body","FixedTabsLayout","secondHeading","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["logos","_body","FixedTabsLayout","secondHeading","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["logos","_body","FixedTabsLayout","secondHeading","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["logos","_body","FixedTabsLayout","secondHeading","VideoEmbed","duration"]}],"namespace":["events","footer","FixedTabsLayout","secondHeading","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["logos","_body","FixedTabsLayout","secondHeading","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["logos","_body","FixedTabsLayout","secondHeading","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["logos","_body","FixedTabsLayout","secondHeading","BookingButton","buttonSubtitle"]}],"namespace":["events","footer","FixedTabsLayout","secondHeading","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["logos","_body","FixedTabsLayout","secondHeading","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["industry","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["industry","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["industry","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["industry","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList","skills"]}],"namespace":["logos","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["industry","_body","FixedTabsLayout","secondHeading","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["industry","_body","FixedTabsLayout","secondHeading","ExpertBlock","link","url"]}],"namespace":["logos","_body","FixedTabsLayout","secondHeading","ExpertBlock","link"]}],"namespace":["events","footer","FixedTabsLayout","secondHeading","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["industry","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["industry","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["industry","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["live","subtitle","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["live","subtitle","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["live","subtitle","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["industry","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["logos","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["events","footer","FixedTabsLayout","secondHeading","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["logos","_body","FixedTabsLayout","secondHeading","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["logos","_body","FixedTabsLayout","secondHeading","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["logos","_body","FixedTabsLayout","secondHeading","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["logos","_body","FixedTabsLayout","secondHeading","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["logos","_body","FixedTabsLayout","secondHeading","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["logos","_body","FixedTabsLayout","secondHeading","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["logos","_body","FixedTabsLayout","secondHeading","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["logos","_body","FixedTabsLayout","secondHeading","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["logos","_body","FixedTabsLayout","secondHeading","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["logos","_body","FixedTabsLayout","secondHeading","CustomImage","sizes"]}],"namespace":["events","footer","FixedTabsLayout","secondHeading","CustomImage"]}],"namespace":["events","_body","FixedTabsLayout","secondHeading"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","name":"secondBody","label":"Second Body","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["logos","_body","FixedTabsLayout","secondBody","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["logos","_body","FixedTabsLayout","secondBody","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["logos","_body","FixedTabsLayout","secondBody","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["logos","_body","FixedTabsLayout","secondBody","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["logos","_body","FixedTabsLayout","secondBody","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["logos","_body","FixedTabsLayout","secondBody","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["logos","_body","FixedTabsLayout","secondBody","VideoEmbed","duration"]}],"namespace":["events","footer","FixedTabsLayout","secondBody","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["logos","_body","FixedTabsLayout","secondBody","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["logos","_body","FixedTabsLayout","secondBody","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["logos","_body","FixedTabsLayout","secondBody","BookingButton","buttonSubtitle"]}],"namespace":["events","footer","FixedTabsLayout","secondBody","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["logos","_body","FixedTabsLayout","secondBody","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["industry","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["industry","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["industry","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["industry","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList","skills"]}],"namespace":["logos","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["industry","_body","FixedTabsLayout","secondBody","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["industry","_body","FixedTabsLayout","secondBody","ExpertBlock","link","url"]}],"namespace":["logos","_body","FixedTabsLayout","secondBody","ExpertBlock","link"]}],"namespace":["events","footer","FixedTabsLayout","secondBody","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["industry","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["industry","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["industry","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["live","subtitle","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["live","subtitle","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["live","subtitle","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["industry","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["logos","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["events","footer","FixedTabsLayout","secondBody","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["logos","_body","FixedTabsLayout","secondBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["logos","_body","FixedTabsLayout","secondBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["logos","_body","FixedTabsLayout","secondBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["logos","_body","FixedTabsLayout","secondBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["logos","_body","FixedTabsLayout","secondBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["logos","_body","FixedTabsLayout","secondBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["logos","_body","FixedTabsLayout","secondBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["logos","_body","FixedTabsLayout","secondBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["logos","_body","FixedTabsLayout","secondBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["logos","_body","FixedTabsLayout","secondBody","CustomImage","sizes"]}],"namespace":["events","footer","FixedTabsLayout","secondBody","CustomImage"]}],"namespace":["events","_body","FixedTabsLayout","secondBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["events","_body","FixedTabsLayout"]},{"label":"Google Maps","name":"GoogleMaps","ui":{"previewSrc":"/images/thumbs/tina/google-maps.jpg"},"fields":[{"type":"string","label":"URL","name":"embedUrl","required":true,"namespace":["events","_body","GoogleMaps","embedUrl"],"searchable":true,"uid":false},{"type":"string","label":"Width","name":"embedWidth","namespace":["events","_body","GoogleMaps","embedWidth"],"searchable":true,"uid":false},{"type":"string","label":"Height","name":"embedHeight","namespace":["events","_body","GoogleMaps","embedHeight"],"searchable":true,"uid":false}],"namespace":["events","_body","GoogleMaps"]},{"label":"Grid Layout","name":"GridLayout","ui":{"previewSrc":"/images/thumbs/tina/grid-layout.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["events","_body","GridLayout","title"],"searchable":true,"uid":false},{"type":"object","list":true,"label":"Grid Items","name":"grids","ui":{},"fields":[{"type":"string","label":"Grid Title","name":"gridTitle","namespace":["events","footer","GridLayout","grids","gridTitle"]},{"type":"boolean","label":"Show Grid Title","name":"showGridTitle","namespace":["events","footer","GridLayout","grids","showGridTitle"]},{"type":"boolean","label":"Centered Grid Title","name":"centeredGridTitle","namespace":["events","footer","GridLayout","grids","centeredGridTitle"]},{"type":"boolean","label":"Show Header Divider","name":"showHeaderDivider","namespace":["events","footer","GridLayout","grids","showHeaderDivider"]},{"type":"boolean","label":"Offset Grid Start","name":"offsetGridStart","namespace":["events","footer","GridLayout","grids","offsetGridStart"]},{"type":"object","label":"Blocks","name":"blocks","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["logos","_body","GridLayout","grids","blocks","title"]},{"type":"boolean","label":"Show Title","name":"showTitle","namespace":["logos","_body","GridLayout","grids","blocks","showTitle"]},{"type":"image","label":"Image","name":"image","uploadDir":{"namespace":["page","beforeBody","GridLayout","grids","blocks","image","uploadDir"]},"namespace":["logos","_body","GridLayout","grids","blocks","image"]},{"type":"image","label":"Related Image","name":"relatedImage","uploadDir":{"namespace":["page","beforeBody","GridLayout","grids","blocks","relatedImage","uploadDir"]},"namespace":["logos","_body","GridLayout","grids","blocks","relatedImage"]},{"type":"rich-text","name":"linkContent","label":"Link Content","templates":[{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["live","subtitle","GridLayout","grids","blocks","linkContent","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["live","subtitle","GridLayout","grids","blocks","linkContent","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["live","subtitle","GridLayout","grids","blocks","linkContent","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["live","subtitle","GridLayout","grids","blocks","linkContent","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["live","subtitle","GridLayout","grids","blocks","linkContent","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["live","subtitle","GridLayout","grids","blocks","linkContent","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["live","subtitle","GridLayout","grids","blocks","linkContent","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["live","subtitle","GridLayout","grids","blocks","linkContent","UtilityButton","openInNewTab"]}],"namespace":["industry","_body","GridLayout","grids","blocks","linkContent","UtilityButton"]}],"namespace":["logos","_body","GridLayout","grids","blocks","linkContent"]}],"namespace":["events","footer","GridLayout","grids","blocks"]}],"namespace":["events","_body","GridLayout","grids"],"searchable":true,"uid":false}],"namespace":["events","_body","GridLayout"]},{"name":"Hero","label":"Hero","ui":{"previewSrc":"/blocks/hero.png","defaultItem":{"tagline":"Here's some text above the other text","headline":"This Big Text is Totally Awesome","text":"Phasellus scelerisque, libero eu finibus rutrum, risus risus accumsan libero, nec molestie urna dui a leo."}},"fields":[{"type":"string","label":"Tagline","name":"tagline","namespace":["events","_body","Hero","tagline"],"searchable":true,"uid":false},{"type":"string","label":"Headline","name":"headline","namespace":["events","_body","Hero","headline"],"searchable":true,"uid":false},{"label":"Text","name":"text","type":"rich-text","namespace":["events","_body","Hero","text"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"label":"Actions","name":"actions","type":"object","list":true,"ui":{"defaultItem":{"label":"Action Label","type":"button","icon":true,"link":"/"}},"fields":[{"label":"Label","name":"label","type":"string","namespace":["events","footer","Hero","actions","label"]},{"label":"Type","name":"type","type":"string","options":[{"label":"Button","value":"button"},{"label":"Link","value":"link"}],"namespace":["events","footer","Hero","actions","type"]},{"label":"Icon","name":"icon","type":"boolean","namespace":["events","footer","Hero","actions","icon"]},{"label":"Link","name":"link","type":"string","namespace":["events","footer","Hero","actions","link"]}],"namespace":["events","_body","Hero","actions"],"searchable":true,"uid":false},{"type":"object","label":"Image","name":"image","fields":[{"name":"src","label":"Image Source","type":"image","namespace":["events","footer","Hero","image","src"]},{"name":"alt","label":"Alt Text","type":"string","namespace":["events","footer","Hero","image","alt"]}],"namespace":["events","_body","Hero","image"],"searchable":true,"uid":false},{"type":"string","label":"Color","name":"color","options":[{"label":"Default","value":"default"},{"label":"Tint","value":"tint"},{"label":"Primary","value":"primary"}],"namespace":["events","_body","Hero","color"],"searchable":true,"uid":false}],"namespace":["events","_body","Hero"]},{"name":"HorizontalCard","label":"Horizontal Card","ui":{"previewSrc":"/images/thumbs/tina/horizontal-card.jpg"},"fields":[{"type":"object","label":"Cards","name":"cardList","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["events","footer","HorizontalCard","cardList","title"]},{"type":"rich-text","label":"Content","name":"content","namespace":["events","footer","HorizontalCard","cardList","content"]},{"type":"image","label":"Thumbnail","name":"thumbnail","uploadDir":{"namespace":["page","beforeBody","HorizontalCard","cardList","thumbnail","uploadDir"]},"namespace":["events","footer","HorizontalCard","cardList","thumbnail"]},{"type":"string","label":"Link","name":"link","namespace":["events","footer","HorizontalCard","cardList","link"]}],"namespace":["events","_body","HorizontalCard","cardList"],"searchable":true,"uid":false},{"type":"object","label":"Button","name":"button","fields":[{"type":"string","label":"Text","name":"text","namespace":["events","footer","HorizontalCard","button","text"]},{"type":"string","label":"Link","name":"link","namespace":["events","footer","HorizontalCard","button","link"]}],"namespace":["events","_body","HorizontalCard","button"],"searchable":true,"uid":false}],"namespace":["events","_body","HorizontalCard"]},{"name":"InternalCarousel","label":"Internal Carousel","ui":{"previewSrc":"/images/thumbs/tina/internal-carousel.jpg"},"fields":[{"label":"Images","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Image description"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["events","footer","InternalCarousel","items","label"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","InternalCarousel","items","imgSrc","uploadDir"]},"namespace":["events","footer","InternalCarousel","items","imgSrc"]}],"namespace":["events","_body","InternalCarousel","items"],"searchable":true,"uid":false},{"type":"string","label":"Header","name":"header","namespace":["events","_body","InternalCarousel","header"],"searchable":true,"uid":false},{"type":"rich-text","label":"Text","name":"paragraph","isBody":false,"namespace":["events","_body","InternalCarousel","paragraph"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Website","name":"website","namespace":["events","_body","InternalCarousel","website"],"searchable":true,"uid":false},{"type":"object","label":"Technologies","name":"technologies","list":true,"ui":{},"fields":[{"type":"string","label":"Name","name":"name","namespace":["events","footer","InternalCarousel","technologies","name"]}],"namespace":["events","_body","InternalCarousel","technologies"],"searchable":true,"uid":false},{"type":"string","label":"Case Study","name":"caseStudyUrl","namespace":["events","_body","InternalCarousel","caseStudyUrl"],"searchable":true,"uid":false},{"type":"string","label":"Video URL","name":"videoUrl","namespace":["events","_body","InternalCarousel","videoUrl"],"searchable":true,"uid":false}],"namespace":["events","_body","InternalCarousel"]},{"label":"Join As Presenter","name":"joinAsPresenter","fields":[{"label":"Learn More Link","name":"link","type":"string","namespace":["events","_body","joinAsPresenter","link"],"searchable":true,"uid":false},{"label":"Image","name":"img","type":"image","namespace":["events","_body","joinAsPresenter","img"],"searchable":false,"uid":false}],"namespace":["events","_body","joinAsPresenter"]},{"label":"Join Github","name":"joinGithub","ui":{"previewSrc":"/images/thumbs/tina/join-github.jpg"},"fields":[{"label":"Title","name":"title","type":"string","namespace":["events","_body","joinGithub","title"],"searchable":true,"uid":false},{"label":"Join Github Link","name":"link","type":"string","namespace":["events","_body","joinGithub","link"],"searchable":true,"uid":false}],"namespace":["events","_body","joinGithub"]},{"name":"JotFormEmbed","label":"JotForm Embed","ui":{"previewSrc":"/images/thumbs/tina/jotform-embed.jpg"},"fields":[{"type":"string","name":"jotFormId","label":"JotForm Id","required":true,"namespace":["events","_body","JotFormEmbed","jotFormId"],"searchable":true,"uid":false},{"type":"string","label":"Button Text","name":"buttonText","namespace":["events","_body","JotFormEmbed","buttonText"],"searchable":true,"uid":false},{"type":"string","name":"containerClass","label":"Container Class","namespace":["events","_body","JotFormEmbed","containerClass"],"searchable":true,"uid":false},{"type":"string","label":"Button Class","name":"buttonClass","namespace":["events","_body","JotFormEmbed","buttonClass"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","namespace":["events","_body","JotFormEmbed","animated"],"searchable":true,"uid":false}],"namespace":["events","_body","JotFormEmbed"]},{"name":"LatestTech","label":"Latest Tech","ui":{"previewSrc":"/images/thumbs/tina/latest-tech.jpg"},"fields":[{"type":"reference","description":"Select a config file including a set of badges","collections":["userGroupGlobal"],"label":"Badges","name":"badges","namespace":["events","_body","LatestTech","badges"],"searchable":true,"uid":false}],"namespace":["events","_body","LatestTech"]},{"name":"LocationBlock","label":"Locations","ui":{"previewSrc":"/images/thumbs/tina/locations.jpg"},"fields":[{"type":"string","name":"title","label":"Title","namespace":["events","_body","LocationBlock","title"],"searchable":true,"uid":false},{"type":"object","label":"Location List","name":"locationList","list":true,"ui":{},"fields":[{"type":"reference","collections":["locations"],"label":"Location","name":"location","namespace":["events","footer","LocationBlock","locationList","location"]}],"namespace":["events","_body","LocationBlock","locationList"],"searchable":true,"uid":false},{"type":"object","name":"chapelWebsite","label":"Chapel Website","fields":[{"type":"string","name":"title","label":"Text","namespace":["events","footer","LocationBlock","chapelWebsite","title"]},{"type":"string","name":"URL","label":"URL","namespace":["events","footer","LocationBlock","chapelWebsite","URL"]}],"namespace":["events","_body","LocationBlock","chapelWebsite"],"searchable":true,"uid":false}],"namespace":["events","_body","LocationBlock"]},{"name":"NewslettersTable","label":"Newsletters Table","ui":{"previewSrc":"/images/thumbs/tina/newsletters-table.jpg"},"fields":[{"type":"string","label":"Header text","name":"headerText","namespace":["events","_body","NewslettersTable","headerText"],"searchable":true,"uid":false}],"namespace":["events","_body","NewslettersTable"]},{"label":"Organizer","name":"organizer","fields":[{"type":"image","label":"Profile Image","name":"profileImg","namespace":["events","_body","organizer","profileImg"],"searchable":false,"uid":false},{"type":"string","label":"Profile Link","name":"profileLink","namespace":["events","_body","organizer","profileLink"],"searchable":true,"uid":false},{"type":"string","label":"Name","name":"name","namespace":["events","_body","organizer","name"],"searchable":true,"uid":false},{"type":"string","label":"Position","name":"position","namespace":["events","_body","organizer","position"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","namespace":["events","_body","organizer","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["events","_body","organizer"]},{"label":"Payment Block","name":"paymentBlock","ui":{"previewSrc":"/images/thumbs/tina/payment-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["events","_body","paymentBlock","title"],"searchable":true,"uid":false},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["events","_body","paymentBlock","subTitle"],"searchable":true,"uid":false},{"type":"reference","label":"Payment Links","name":"payments","collections":["paymentDetails"],"namespace":["events","_body","paymentBlock","payments"],"searchable":true,"uid":false},{"type":"rich-text","label":"Footer","name":"footer","namespace":["events","_body","paymentBlock","footer"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"image","label":"Credit Cards Image","name":"creditImgSrc","namespace":["events","_body","paymentBlock","creditImgSrc"],"searchable":false,"uid":false},{"type":"string","label":"Alt Text","name":"altTxt","namespace":["events","_body","paymentBlock","altTxt"],"searchable":true,"uid":false}],"namespace":["events","_body","paymentBlock"]},{"name":"PresenterBlock","label":"Presenters","ui":{"previewSrc":"/images/thumbs/tina/presenters.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["events","_body","PresenterBlock","header"],"searchable":true,"uid":false},{"type":"object","name":"presenterList","label":"Presenters","list":true,"ui":{},"fields":[{"type":"reference","name":"presenter","label":"Presenters","collections":["presenter"],"namespace":["events","footer","PresenterBlock","presenterList","presenter"]}],"namespace":["events","_body","PresenterBlock","presenterList"],"searchable":true,"uid":false},{"type":"object","label":"Other Events","name":"otherEvent","fields":[{"type":"string","label":"Title","name":"title","namespace":["events","footer","PresenterBlock","otherEvent","title"]},{"type":"string","label":"URL","name":"eventURL","namespace":["events","footer","PresenterBlock","otherEvent","eventURL"]}],"namespace":["events","_body","PresenterBlock","otherEvent"],"searchable":true,"uid":false}],"namespace":["events","_body","PresenterBlock"]},{"label":"Recurring Event","name":"RecurringEvent","ui":{"previewSrc":"/images/thumbs/tina/recurring-event.jpg"},"fields":[{"type":"string","label":"Apply Link Redirect","name":"applyLinkRedirect","namespace":["events","_body","RecurringEvent","applyLinkRedirect"],"searchable":true,"uid":false},{"type":"string","label":"Day","name":"day","options":[{"label":"Monday","value":"monday"},{"label":"Tuesday","value":"tuesday"},{"label":"Wednesday","value":"wednesday"},{"label":"Thursday","value":"thursday"},{"label":"Friday","value":"friday"},{"label":"Saturday","value":"saturday"},{"label":"Sunday","value":"sunday"}],"required":true,"namespace":["events","_body","RecurringEvent","day"],"searchable":true,"uid":false}],"namespace":["events","_body","RecurringEvent"]},{"name":"SectionHeader","label":"Section Header","ui":{"previewSrc":"/images/thumbs/tina/section-header.jpg"},"fields":[{"type":"string","label":"Header Text","name":"headerText","namespace":["events","_body","SectionHeader","headerText"],"searchable":true,"uid":false}],"namespace":["events","_body","SectionHeader"]},{"name":"ServiceCards","label":"Service Cards","ui":{"previewSrc":"/images/thumbs/tina/services-cards.jpg"},"fields":[{"type":"string","label":"Big Cards Label","name":"bigCardsLabel","namespace":["events","_body","ServiceCards","bigCardsLabel"],"searchable":true,"uid":false},{"label":"Big Cards","name":"bigCards","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["events","footer","ServiceCards","bigCards","title"]},{"type":"string","label":"Description","component":"textarea","name":"description","namespace":["events","footer","ServiceCards","bigCards","description"]},{"type":"string","label":"URL","name":"link","namespace":["events","footer","ServiceCards","bigCards","link"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Red","value":"red"},{"label":"Light Gray","value":"lightgray"},{"label":"Medium Gray","value":"mediumgray"},{"label":"Dark Gray","value":"darkgray"}],"namespace":["events","footer","ServiceCards","bigCards","color"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","ServiceCards","bigCards","imgSrc","uploadDir"]},"namespace":["events","footer","ServiceCards","bigCards","imgSrc"]}],"namespace":["events","_body","ServiceCards","bigCards"],"searchable":true,"uid":false},{"type":"string","label":"Small Cards Label","name":"smallCardsLabel","namespace":["events","_body","ServiceCards","smallCardsLabel"],"searchable":true,"uid":false},{"label":"Small Cards","name":"smallCards","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["events","footer","ServiceCards","smallCards","title"]},{"type":"string","label":"URL","name":"link","namespace":["events","footer","ServiceCards","smallCards","link"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Red","value":"red"},{"label":"Light Gray","value":"lightgray"},{"label":"Medium Gray","value":"mediumgray"},{"label":"Dark Gray","value":"darkgray"}],"namespace":["events","footer","ServiceCards","smallCards","color"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","ServiceCards","smallCards","imgSrc","uploadDir"]},"namespace":["events","footer","ServiceCards","smallCards","imgSrc"]},{"type":"boolean","label":"External Page","description":"Select this if the link is not part of the website. This includes SSW.Rules, and SSW.People links","name":"isExternal","namespace":["events","footer","ServiceCards","smallCards","isExternal"]}],"namespace":["events","_body","ServiceCards","smallCards"],"searchable":true,"uid":false},{"label":"Links","name":"links","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["events","footer","ServiceCards","links","label"]},{"type":"string","label":"URL","name":"link","namespace":["events","footer","ServiceCards","links","link"]}],"namespace":["events","_body","ServiceCards","links"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["events","_body","ServiceCards","backgroundColor"],"searchable":true,"uid":false}],"namespace":["events","_body","ServiceCards"]},{"label":"Table Layout","name":"TableLayout","ui":{"previewSrc":"/images/thumbs/tina/table-layout.jpg"},"fields":[{"label":"Table Style","name":"tableStyle","type":"string","options":["none","basicBorder","styled","benefits"],"namespace":["events","_body","TableLayout","tableStyle"],"searchable":true,"uid":false},{"label":"First column bolded + left aligned","name":"firstColBold","type":"boolean","required":false,"namespace":["events","_body","TableLayout","firstColBold"],"searchable":true,"uid":false},{"type":"string","label":"Table Headers","name":"headers","list":true,"namespace":["events","_body","TableLayout","headers"],"searchable":true,"uid":false},{"type":"object","label":"Rows","name":"rows","list":true,"fields":[{"type":"object","label":"Cells","name":"cells","list":true,"fields":[{"type":"string","label":"Value","name":"cellValue","required":true,"component":{"namespace":["page","beforeBody","TableLayout","rows","cells","cellValue",""]},"namespace":["logos","_body","TableLayout","rows","cells","cellValue"]}],"ui":{},"namespace":["events","footer","TableLayout","rows","cells"]},{"type":"boolean","label":"Is Heading","name":"isHeader","required":false,"namespace":["events","footer","TableLayout","rows","isHeader"]}],"ui":{},"namespace":["events","_body","TableLayout","rows"],"searchable":true,"uid":false}],"namespace":["events","_body","TableLayout"]},{"name":"TestimonialsList","label":"Testimonials List","ui":{"previewSrc":"/images/thumbs/tina/testimonials.jpg"},"fields":[{"type":"object","label":"Exclude Categories","name":"excludedCategories","ui":{},"list":true,"fields":[{"type":"reference","label":"Category Name","name":"categoryName","collections":["testimonialCategories"],"namespace":["events","footer","TestimonialsList","excludedCategories","categoryName"]}],"namespace":["events","_body","TestimonialsList","excludedCategories"],"searchable":true,"uid":false}],"namespace":["events","_body","TestimonialsList"]},{"label":"Training Information","name":"TrainingInformation","ui":{"previewSrc":"/images/thumbs/tina/training-information.jpg"},"fields":[{"type":"object","label":"Training Information Items","name":"trainingInformationItems","list":true,"fields":[{"type":"string","label":"Header","name":"header","namespace":["events","footer","TrainingInformation","trainingInformationItems","header"]},{"type":"rich-text","label":"Body","name":"body","templates":[{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["industry","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["industry","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["industry","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["industry","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["industry","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","afterBody"]}],"namespace":["logos","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem"]},{"label":"Recurring Event","name":"RecurringEvent","ui":{"previewSrc":"/images/thumbs/tina/recurring-event.jpg"},"fields":[{"type":"string","label":"Apply Link Redirect","name":"applyLinkRedirect","namespace":["industry","_body","TrainingInformation","trainingInformationItems","body","RecurringEvent","applyLinkRedirect"]},{"type":"string","label":"Day","name":"day","options":[{"label":"Monday","value":"monday"},{"label":"Tuesday","value":"tuesday"},{"label":"Wednesday","value":"wednesday"},{"label":"Thursday","value":"thursday"},{"label":"Friday","value":"friday"},{"label":"Saturday","value":"saturday"},{"label":"Sunday","value":"sunday"}],"required":true,"namespace":["industry","_body","TrainingInformation","trainingInformationItems","body","RecurringEvent","day"]}],"namespace":["logos","_body","TrainingInformation","trainingInformationItems","body","RecurringEvent"]}],"namespace":["events","footer","TrainingInformation","trainingInformationItems","body"]}],"namespace":["events","_body","TrainingInformation","trainingInformationItems"],"searchable":true,"uid":false}],"namespace":["events","_body","TrainingInformation"]},{"label":"Training Learning Outcomes","name":"TrainingLearningOutcome","ui":{"previewSrc":"/images/thumbs/tina/training-learning-outcomes.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["events","_body","TrainingLearningOutcome","header"],"searchable":true,"uid":false},{"type":"object","label":"List Items","name":"listItems","list":true,"fields":[{"type":"string","label":"Title","name":"title","namespace":["events","footer","TrainingLearningOutcome","listItems","title"]},{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["events","footer","TrainingLearningOutcome","listItems","content"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","TrainingLearningOutcome","listItems","icon","uploadDir"]},"namespace":["events","footer","TrainingLearningOutcome","listItems","icon"]}],"namespace":["events","_body","TrainingLearningOutcome","listItems"],"searchable":true,"uid":false}],"namespace":["events","_body","TrainingLearningOutcome"]},{"label":"Tweet Embed","name":"TweetEmbed","ui":{"previewSrc":"/images/thumbs/tina/tweet-embed.jpg"},"fields":[{"type":"string","name":"url","label":"Tweet URL","required":true,"namespace":["events","_body","TweetEmbed","url"],"searchable":true,"uid":false}],"namespace":["events","_body","TweetEmbed"]},{"name":"UpcomingEvents","label":"Upcoming Events","ui":{"previewSrc":"/images/thumbs/tina/upcoming-events.jpg","defaultItem":{"title":"Upcoming Events","numberOfEvents":30}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["events","_body","UpcomingEvents","title"],"searchable":true,"uid":false},{"type":"number","label":"Number of Events","name":"numberOfEvents","namespace":["events","_body","UpcomingEvents","numberOfEvents"],"searchable":true,"uid":false}],"namespace":["events","_body","UpcomingEvents"]},{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["events","_body","UtilityButton","buttonText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"link","required":false,"namespace":["events","_body","UtilityButton","link"],"searchable":true,"uid":false},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["events","_body","UtilityButton","size"],"searchable":true,"uid":false},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["events","_body","UtilityButton","btnIcon"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["events","_body","UtilityButton","animated"],"searchable":true,"uid":false},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["events","_body","UtilityButton","uncentered"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["events","_body","UtilityButton","removeTopMargin"],"searchable":true,"uid":false},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["events","_body","UtilityButton","openInNewTab"],"searchable":true,"uid":false}],"namespace":["events","_body","UtilityButton"]},{"name":"VerticalImageLayout","label":"Vertical Image Layout","fields":[{"type":"image","label":"Image","name":"imageSrc","uploadDir":{"namespace":["page","beforeBody","VerticalImageLayout","imageSrc","uploadDir"]},"namespace":["events","_body","VerticalImageLayout","imageSrc"],"searchable":false,"uid":false},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["events","_body","VerticalImageLayout","altText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"imageLink","namespace":["events","_body","VerticalImageLayout","imageLink"],"searchable":true,"uid":false},{"type":"number","label":"Height","name":"height","required":true,"namespace":["events","_body","VerticalImageLayout","height"],"searchable":true,"uid":false},{"type":"number","label":"Width","name":"width","required":true,"namespace":["events","_body","VerticalImageLayout","width"],"searchable":true,"uid":false},{"type":"rich-text","label":"Message","name":"message","required":true,"namespace":["events","_body","VerticalImageLayout","message"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["events","_body","VerticalImageLayout","sizes"],"searchable":true,"uid":false}],"namespace":["events","_body","VerticalImageLayout"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["events","_body","VerticalListItem","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"number","label":"Index number","name":"index","namespace":["events","_body","VerticalListItem","index"],"searchable":true,"uid":false},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["events","_body","VerticalListItem","icon"],"searchable":false,"uid":false},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["events","_body","VerticalListItem","iconScale"],"searchable":true,"uid":false},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["events","_body","VerticalListItem","afterBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["events","_body","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["events","_body","VideoEmbed","url"],"searchable":true,"uid":false},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["events","_body","VideoEmbed","videoWidth"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["events","_body","VideoEmbed","removeMargin"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["events","_body","VideoEmbed","uncentre"],"searchable":true,"uid":false},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["events","_body","VideoEmbed","overflow"],"searchable":true,"uid":false},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["events","_body","VideoEmbed","caption"],"searchable":true,"uid":false},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["events","_body","VideoEmbed","duration"],"searchable":true,"uid":false}],"namespace":["events","_body","VideoEmbed"]},{"name":"InlineJotForm","label":"In-line JotForm","ui":{"previewSrc":"/images/thumbs/tina/inline-jot-form.jpg"},"fields":[{"type":"string","name":"title","label":"Title","description":"Optional title for JotForm","namespace":["events","_body","InlineJotForm","title"],"searchable":true,"uid":false},{"type":"string","name":"jotFormId","label":"JotForm ID","required":true,"namespace":["events","_body","InlineJotForm","jotFormId"],"searchable":true,"uid":false},{"type":"string","name":"additionalClasses","label":"Additional classnames","description":"Optional styling for iframe element only","namespace":["events","_body","InlineJotForm","additionalClasses"],"searchable":true,"uid":false}],"namespace":["events","_body","InlineJotForm"]}],"namespace":["events","_body"],"searchable":true,"uid":false},{"type":"rich-text","name":"footer","label":"Footer","templates":[{"name":"AboutUs","label":"About Us","ui":{"previewSrc":"/images/thumbs/tina/about-us.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["events","footer","AboutUs","backgroundColor"],"searchable":true,"uid":false},{"type":"boolean","label":"Show Map","name":"showMap","required":false,"namespace":["events","footer","AboutUs","showMap"],"searchable":true,"uid":false}],"namespace":["events","footer","AboutUs"]},{"label":"Agenda","name":"Agenda","ui":{"previewSrc":"/images/thumbs/tina/agenda.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["events","footer","Agenda","header"],"searchable":true,"uid":false},{"type":"string","label":"Header Color","name":"textColor","options":[{"label":"Red","value":"red"},{"label":"Gray","value":"gray"},{"label":"Default","value":"default"}],"namespace":["events","footer","Agenda","textColor"],"searchable":true,"uid":false},{"type":"object","label":"Agenda Items","name":"agendaItemList","ui":{},"list":true,"fields":[{"type":"string","label":"Placeholder Text","name":"placeholder","namespace":["logos","_body","Agenda","agendaItemList","placeholder"]},{"type":"rich-text","label":"Body","name":"body","templates":[{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["live","subtitle","Agenda","agendaItemList","body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["live","subtitle","Agenda","agendaItemList","body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["live","subtitle","Agenda","agendaItemList","body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["live","subtitle","Agenda","agendaItemList","body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["live","subtitle","Agenda","agendaItemList","body","VerticalListItem","afterBody"]}],"namespace":["industry","_body","Agenda","agendaItemList","body","VerticalListItem"]}],"namespace":["logos","_body","Agenda","agendaItemList","body"]}],"namespace":["events","footer","Agenda","agendaItemList"],"searchable":true,"uid":false}],"namespace":["events","footer","Agenda"]},{"label":"Agreement Form","name":"AgreementForm","ui":{"previewSrc":"/images/thumbs/tina/agreement-form.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["events","footer","AgreementForm","backgroundColor"],"searchable":true,"uid":false},{"type":"object","label":"Form fields","name":"fields","list":true,"fields":[{"type":"string","label":"ID","name":"id","required":true,"namespace":["logos","_body","AgreementForm","fields","id"]},{"type":"string","label":"Label","name":"label","required":true,"namespace":["logos","_body","AgreementForm","fields","label"]},{"type":"string","label":"Placeholder","name":"placeholder","namespace":["logos","_body","AgreementForm","fields","placeholder"]},{"type":"boolean","label":"Resizeable","name":"resizeable","required":true,"namespace":["logos","_body","AgreementForm","fields","resizeable"]}],"namespace":["events","footer","AgreementForm","fields"],"searchable":true,"uid":false}],"namespace":["events","footer","AgreementForm"]},{"label":"Interest Form","name":"InterestForm","ui":{"previewSrc":"/images/thumbs/tina/interest-form.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["events","footer","InterestForm","buttonText"],"searchable":true,"uid":false}],"namespace":["events","footer","InterestForm"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["events","footer","BookingButton","buttonText"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","namespace":["events","footer","BookingButton","animated"],"searchable":true,"uid":false},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["events","footer","BookingButton","buttonSubtitle"],"searchable":true,"uid":false}],"namespace":["events","footer","BookingButton"]},{"name":"BuiltOnAzure","label":"Built on Azure","ui":{"previewSrc":"/images/thumbs/tina/built-on-azure.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["events","footer","BuiltOnAzure","backgroundColor"],"searchable":true,"uid":false}],"namespace":["events","footer","BuiltOnAzure"]},{"name":"Carousel","label":"Carousel","ui":{"previewSrc":"/images/thumbs/tina/carousel.jpg"},"fields":[{"label":"Items","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Item description","link":"/","openIn":"sameWindow"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["logos","_body","Carousel","items","label"]},{"type":"string","label":"URL","name":"link","description":"If link contains ssw.com.au, you can skip the full URL and just use the path. e.g. /services","namespace":["logos","_body","Carousel","items","link"]},{"type":"string","label":"Open in","name":"openIn","description":"If it is external link, please select 'New window' option.","options":[{"label":"Same window","value":"sameWindow"},{"label":"Modal","value":"modal"},{"label":"New window","value":"newWindow"}],"namespace":["logos","_body","Carousel","items","openIn"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","Carousel","items","imgSrc","uploadDir"]},"namespace":["logos","_body","Carousel","items","imgSrc"]}],"namespace":["events","footer","Carousel","items"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["events","footer","Carousel","backgroundColor"],"searchable":true,"uid":false},{"type":"number","label":"Delay (Seconds)","name":"delay","required":true,"namespace":["events","footer","Carousel","delay"],"searchable":true,"uid":false},{"type":"boolean","label":"Show on mobile devices","name":"showOnMobileDevices","namespace":["events","footer","Carousel","showOnMobileDevices"],"searchable":true,"uid":false}],"namespace":["events","footer","Carousel"]},{"name":"Citation","label":"Citation","fields":[{"type":"string","label":"author","name":"author","namespace":["events","footer","Citation","author"],"searchable":true,"uid":false},{"type":"string","label":"article","name":"article","required":true,"namespace":["events","footer","Citation","article"],"searchable":true,"uid":false}],"namespace":["events","footer","Citation"]},{"label":"Client List","name":"ClientList","ui":{"previewSrc":"/images/thumbs/tina/clients-list.jpg"},"fields":[{"type":"object","name":"categories","label":"Categories","list":true,"fields":[{"type":"reference","name":"category","label":"Category","collections":["clientCategories"],"namespace":["logos","_body","ClientList","categories","category"]}],"ui":{},"namespace":["events","footer","ClientList","categories"],"searchable":true,"uid":false},{"type":"object","name":"clients","label":"Clients list","list":true,"ui":{"previewSrc":"/images/thumbs/tina/clients-list.jpg"},"fields":[{"type":"string","name":"name","label":"Name","namespace":["logos","_body","ClientList","clients","name"]},{"type":"image","name":"logo","label":"Logo","namespace":["logos","_body","ClientList","clients","logo"]},{"type":"string","name":"logoUrl","label":"Logo URL","namespace":["logos","_body","ClientList","clients","logoUrl"]},{"type":"rich-text","name":"content","label":"Content","templates":[{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["live","subtitle","ClientList","clients","content","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["live","subtitle","ClientList","clients","content","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["live","subtitle","ClientList","clients","content","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["live","subtitle","ClientList","clients","content","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["live","subtitle","ClientList","clients","content","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["live","subtitle","ClientList","clients","content","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["live","subtitle","ClientList","clients","content","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["live","subtitle","ClientList","clients","content","UtilityButton","openInNewTab"]}],"namespace":["industry","_body","ClientList","clients","content","UtilityButton"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["live","subtitle","ClientList","clients","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["live","subtitle","ClientList","clients","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["live","subtitle","ClientList","clients","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["live","subtitle","ClientList","clients","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["live","subtitle","ClientList","clients","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["live","subtitle","ClientList","clients","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["live","subtitle","ClientList","clients","content","VideoEmbed","duration"]}],"namespace":["industry","_body","ClientList","clients","content","VideoEmbed"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["live","subtitle","ClientList","clients","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["live","subtitle","ClientList","clients","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["live","subtitle","ClientList","clients","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["live","subtitle","ClientList","clients","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["live","subtitle","ClientList","clients","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["live","subtitle","ClientList","clients","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["live","subtitle","ClientList","clients","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["live","subtitle","ClientList","clients","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["live","subtitle","ClientList","clients","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["live","subtitle","ClientList","clients","content","CustomImage","sizes"]}],"namespace":["industry","_body","ClientList","clients","content","CustomImage"]},{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["live","subtitle","ClientList","clients","content","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["live","subtitle","ClientList","clients","content","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","aboutUs","ClientList","clients","content","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","aboutUs","ClientList","clients","content","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","aboutUs","ClientList","clients","content","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","aboutUs","ClientList","clients","content","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","aboutUs","ClientList","clients","content","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","aboutUs","ClientList","clients","content","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","aboutUs","ClientList","clients","content","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","aboutUs","ClientList","clients","content","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","aboutUs","ClientList","clients","content","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","aboutUs","ClientList","clients","content","ContentCard","content","CustomImage","sizes"]}],"namespace":["marketing","mediaComponent","ClientList","clients","content","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["offices","aboutUs","ClientList","clients","content","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["offices","aboutUs","ClientList","clients","content","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["offices","aboutUs","ClientList","clients","content","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["offices","aboutUs","ClientList","clients","content","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["offices","aboutUs","ClientList","clients","content","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["marketing","mediaComponent","ClientList","clients","content","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","aboutUs","ClientList","clients","content","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","aboutUs","ClientList","clients","content","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","aboutUs","ClientList","clients","content","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","aboutUs","ClientList","clients","content","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","aboutUs","ClientList","clients","content","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","aboutUs","ClientList","clients","content","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","aboutUs","ClientList","clients","content","ContentCard","content","VideoEmbed","duration"]}],"namespace":["marketing","mediaComponent","ClientList","clients","content","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","aboutUs","ClientList","clients","content","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["offices","aboutUs","ClientList","clients","content","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","map","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["offices","map","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","map","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["offices","map","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["offices","map","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["offices","aboutUs","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["marketing","mediaComponent","ClientList","clients","content","ContentCard","content","ColorBlock"]}],"namespace":["live","subtitle","ClientList","clients","content","ContentCard","content"]}],"namespace":["industry","_body","ClientList","clients","content","ContentCard"]}],"namespace":["logos","_body","ClientList","clients","content"]},{"type":"string","name":"caseStudyUrl","label":"Case study URL","namespace":["logos","_body","ClientList","clients","caseStudyUrl"]},{"type":"object","name":"categories","label":"Categories","list":true,"ui":{},"fields":[{"type":"reference","name":"category","label":"Category","collections":["clientCategories"],"namespace":["industry","_body","ClientList","clients","categories","category"]}],"namespace":["logos","_body","ClientList","clients","categories"]}],"namespace":["events","footer","ClientList","clients"],"searchable":true,"uid":false}],"namespace":["events","footer","ClientList"]},{"name":"ClientLogos","label":"Client Logos","ui":{"previewSrc":"/images/thumbs/tina/client-logos.jpg"},"fields":[{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["events","footer","ClientLogos","altText"],"searchable":true,"uid":false}],"namespace":["events","footer","ClientLogos"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["events","footer","ColorBlock","title"],"searchable":true,"uid":false},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["events","footer","ColorBlock","subTitle"],"searchable":true,"uid":false},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["logos","_body","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["logos","_body","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["logos","_body","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["logos","_body","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["logos","_body","ColorBlock","colorRow","caption"]}],"namespace":["events","footer","ColorBlock","colorRow"],"searchable":true,"uid":false}],"namespace":["events","footer","ColorBlock"]},{"name":"ColorPalette","label":"Color Palette","ui":{"previewSrc":"/images/thumbs/tina/color-palette.jpg"},"fields":[{"type":"string","label":"Name","name":"name","namespace":["events","footer","ColorPalette","name"],"searchable":true,"uid":false}],"namespace":["events","footer","ColorPalette"]},{"name":"Content","label":"Content","ui":{"previewSrc":"/images/thumbs/tina/content.jpg","defaultItem":{"body":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["events","footer","Content","title"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["industry","_body","Content","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["industry","_body","Content","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["industry","_body","Content","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["industry","_body","Content","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["industry","_body","Content","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["industry","_body","Content","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["industry","_body","Content","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["industry","_body","Content","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["industry","_body","Content","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["industry","_body","Content","content","CustomImage","sizes"]}],"namespace":["logos","_body","Content","content","CustomImage"]},{"name":"ClientLogos","label":"Client Logos","ui":{"previewSrc":"/images/thumbs/tina/client-logos.jpg"},"fields":[{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["industry","_body","Content","content","ClientLogos","altText"]}],"namespace":["logos","_body","Content","content","ClientLogos"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["industry","_body","Content","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["industry","_body","Content","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["industry","_body","Content","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["industry","_body","Content","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["industry","_body","Content","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["industry","_body","Content","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["industry","_body","Content","content","VideoEmbed","duration"]}],"namespace":["logos","_body","Content","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["industry","_body","Content","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["industry","_body","Content","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["live","subtitle","Content","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["live","subtitle","Content","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["live","subtitle","Content","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["live","subtitle","Content","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["live","subtitle","Content","content","ColorBlock","colorRow","caption"]}],"namespace":["industry","_body","Content","content","ColorBlock","colorRow"]}],"namespace":["logos","_body","Content","content","ColorBlock"]}],"namespace":["events","footer","Content","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Container Padding","name":"paddingClass","options":["Mobile: No Padding","Mobile: No Top and Horizontal Padding"],"namespace":["events","footer","Content","paddingClass"],"searchable":true,"uid":false},{"type":"string","label":"Text size","name":"size","options":[{"label":"small","value":"sm"},{"label":"normal","value":"base"},{"label":"large","value":"lg"},{"label":"extra large","value":"xl"},{"label":"2x large","value":"2xl"}],"namespace":["events","footer","Content","size"],"searchable":true,"uid":false},{"type":"string","label":"Align","name":"align","options":[{"label":"Left","value":"left"},{"label":"Center","value":"center"},{"label":"Right","value":"right"}],"namespace":["events","footer","Content","align"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["events","footer","Content","backgroundColor"],"searchable":true,"uid":false}],"namespace":["events","footer","Content"]},{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["events","footer","ContentCard","prose"],"searchable":true,"uid":false},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["events","footer","ContentCard","centerAlignedText"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["industry","_body","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["industry","_body","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["industry","_body","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["industry","_body","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["industry","_body","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["industry","_body","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["industry","_body","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["industry","_body","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["industry","_body","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["industry","_body","ContentCard","content","CustomImage","sizes"]}],"namespace":["logos","_body","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["industry","_body","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["industry","_body","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["industry","_body","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["industry","_body","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["industry","_body","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["logos","_body","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["industry","_body","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["industry","_body","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["industry","_body","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["industry","_body","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["industry","_body","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["industry","_body","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["industry","_body","ContentCard","content","VideoEmbed","duration"]}],"namespace":["logos","_body","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["industry","_body","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["industry","_body","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["live","subtitle","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["live","subtitle","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["live","subtitle","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["live","subtitle","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["live","subtitle","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["industry","_body","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["logos","_body","ContentCard","content","ColorBlock"]}],"namespace":["events","footer","ContentCard","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["events","footer","ContentCard"]},{"name":"CustomDownloadButton","label":"Custom Download Button","ui":{"previewSrc":"/images/thumbs/tina/custom-download-button.jpg"},"fields":[{"type":"string","label":"Text","name":"btnText","namespace":["events","footer","CustomDownloadButton","btnText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"btnLink","namespace":["events","footer","CustomDownloadButton","btnLink"],"searchable":true,"uid":false}],"namespace":["events","footer","CustomDownloadButton"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["events","footer","CustomImage","src"],"searchable":false,"uid":false},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["events","footer","CustomImage","altText"],"searchable":true,"uid":false},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["events","footer","CustomImage","alignment"],"searchable":true,"uid":false},{"type":"number","label":"Height","name":"height","required":true,"namespace":["events","footer","CustomImage","height"],"searchable":true,"uid":false},{"type":"number","label":"Width","name":"width","required":true,"namespace":["events","footer","CustomImage","width"],"searchable":true,"uid":false},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["events","footer","CustomImage","link"],"searchable":true,"uid":false},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["events","footer","CustomImage","customClass"],"searchable":true,"uid":false},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["events","footer","CustomImage","caption"],"searchable":true,"uid":false},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["events","footer","CustomImage","captionColor"],"searchable":true,"uid":false},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["events","footer","CustomImage","sizes"],"searchable":true,"uid":false}],"namespace":["events","footer","CustomImage"]},{"name":"DomainFromQuery","label":"Domain from query","ui":{"previewSrc":"/images/thumbs/tina/domain-from-query.jpg"},"fields":[{"name":"title","label":"Title","type":"string","description":"This is a H1 heading","namespace":["events","footer","DomainFromQuery","title"],"searchable":true,"uid":false},{"name":"showDomain","label":"Show domain name","type":"boolean","description":"Query param in URL must have key of 'domain'","namespace":["events","footer","DomainFromQuery","showDomain"],"searchable":true,"uid":false}],"namespace":["events","footer","DomainFromQuery"]},{"name":"DownloadBlock","label":"Download Block","ui":{"previewSrc":"/images/thumbs/tina/download-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["events","footer","DownloadBlock","title"],"searchable":true,"uid":false},{"type":"object","label":"Downloads","name":"downloads","ui":{},"list":true,"fields":[{"type":"string","label":"Header","name":"header","namespace":["logos","_body","DownloadBlock","downloads","header"]},{"type":"image","label":"Image","name":"img","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","img","uploadDir"]},"namespace":["logos","_body","DownloadBlock","downloads","img"]},{"type":"string","label":"Image Background","name":"imgBackground","options":["black","grey","white","darkgrey","darkgreen"],"namespace":["logos","_body","DownloadBlock","downloads","imgBackground"]},{"type":"string","label":"First Link Text","name":"firstLinkText","description":"Defaults to PNG","namespace":["logos","_body","DownloadBlock","downloads","firstLinkText"]},{"type":"image","label":"First Link","name":"firstLink","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","firstLink","uploadDir"]},"namespace":["logos","_body","DownloadBlock","downloads","firstLink"]},{"type":"string","label":"Second Link Text","name":"secondLinkText","description":"Defaults to PDF","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","secondLinkText","uploadDir"]},"namespace":["logos","_body","DownloadBlock","downloads","secondLinkText"]},{"type":"image","label":"Second Link","name":"secondLink","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","secondLink","uploadDir"]},"namespace":["logos","_body","DownloadBlock","downloads","secondLink"]}],"namespace":["events","footer","DownloadBlock","downloads"],"searchable":true,"uid":false},{"type":"boolean","label":"Bottom border","name":"bottomBorder","namespace":["events","footer","DownloadBlock","bottomBorder"],"searchable":true,"uid":false}],"namespace":["events","footer","DownloadBlock"]},{"name":"DynamicColumns","label":"Dynamic Column Layout","fields":[{"type":"rich-text","label":"Column text body","name":"colBody","required":true,"namespace":["events","footer","DynamicColumns","colBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"number","label":"Number of columns","name":"colCount","required":true,"ui":{},"namespace":["events","footer","DynamicColumns","colCount"],"searchable":true,"uid":false}],"namespace":["events","footer","DynamicColumns"]},{"name":"EventBooking","label":"Events Booking","ui":{"previewSrc":"/images/thumbs/tina/events-booking.jpg"},"fields":[{"type":"number","label":"Duration (In Days)","name":"eventDurationInDays","required":true,"namespace":["events","footer","EventBooking","eventDurationInDays"],"searchable":true,"uid":false},{"type":"number","label":"Price","name":"price","required":true,"namespace":["events","footer","EventBooking","price"],"searchable":true,"uid":false},{"type":"number","label":"Discount Price","name":"discountPrice","namespace":["events","footer","EventBooking","discountPrice"],"searchable":true,"uid":false},{"type":"string","name":"gstText","label":"Select GST Option","options":["inc GST","+ GST"],"required":true,"namespace":["events","footer","EventBooking","gstText"],"searchable":true,"uid":false},{"type":"string","label":"Discount Note","name":"discountNote","namespace":["events","footer","EventBooking","discountNote"],"searchable":true,"uid":false},{"type":"object","label":"Event","name":"eventList","ui":{},"list":true,"fields":[{"type":"string","label":"City","name":"city","namespace":["logos","_body","EventBooking","eventList","city"]},{"type":"datetime","label":"Start Date","name":"date","ui":{},"namespace":["logos","_body","EventBooking","eventList","date"]},{"type":"string","label":"Booking URL","name":"bookingURL","namespace":["logos","_body","EventBooking","eventList","bookingURL"]},{"type":"reference","label":"Location","name":"location","collections":["locations"],"namespace":["logos","_body","EventBooking","eventList","location"]}],"namespace":["events","footer","EventBooking","eventList"],"searchable":true,"uid":false}],"namespace":["events","footer","EventBooking"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["industry","_body","EventLink","content","Flag","country"]}],"namespace":["logos","_body","EventLink","content","Flag"]}],"namespace":["events","footer","EventLink","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Link","name":"link","namespace":["events","footer","EventLink","link"],"searchable":true,"uid":false},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["events","footer","EventLink","eventThumbnail"],"searchable":false,"uid":false},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["events","footer","EventLink","thumbnailAlt"],"searchable":true,"uid":false}],"namespace":["events","footer","EventLink"]},{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["events","footer","Flag","country"],"searchable":true,"uid":false}],"namespace":["events","footer","Flag"]},{"name":"FixedColumns","label":"Fixed Column Layout (2 columns)","ui":{"previewSrc":"/images/thumbs/tina/fixed-columns.jpg"},"fields":[{"type":"rich-text","label":"Header Section (Optional)","name":"headerSection","namespace":["events","footer","FixedColumns","headerSection"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"First column text","name":"firstColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["industry","_body","FixedColumns","firstColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["industry","_body","FixedColumns","firstColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["marketing","mediaComponent","FixedColumns","firstColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["marketing","mediaComponent","FixedColumns","firstColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["marketing","mediaComponent","FixedColumns","firstColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["marketing","mediaComponent","FixedColumns","firstColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["marketing","mediaComponent","FixedColumns","firstColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["marketing","mediaComponent","FixedColumns","firstColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["marketing","mediaComponent","FixedColumns","firstColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["marketing","mediaComponent","FixedColumns","firstColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["marketing","mediaComponent","FixedColumns","firstColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["marketing","mediaComponent","FixedColumns","firstColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["live","subtitle","FixedColumns","firstColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["marketing","mediaComponent","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["marketing","mediaComponent","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["marketing","mediaComponent","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["marketing","mediaComponent","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["marketing","mediaComponent","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["live","subtitle","FixedColumns","firstColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["marketing","mediaComponent","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["marketing","mediaComponent","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["marketing","mediaComponent","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["marketing","mediaComponent","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["marketing","mediaComponent","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["marketing","mediaComponent","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["marketing","mediaComponent","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["live","subtitle","FixedColumns","firstColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["marketing","mediaComponent","FixedColumns","firstColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["marketing","mediaComponent","FixedColumns","firstColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","aboutUs","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["offices","aboutUs","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","aboutUs","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["offices","aboutUs","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["offices","aboutUs","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["marketing","mediaComponent","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["live","subtitle","FixedColumns","firstColBody","ContentCard","content","ColorBlock"]}],"namespace":["industry","_body","FixedColumns","firstColBody","ContentCard","content"]}],"namespace":["logos","_body","FixedColumns","firstColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["industry","_body","FixedColumns","firstColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["industry","_body","FixedColumns","firstColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["industry","_body","FixedColumns","firstColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["industry","_body","FixedColumns","firstColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["industry","_body","FixedColumns","firstColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["industry","_body","FixedColumns","firstColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["industry","_body","FixedColumns","firstColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["industry","_body","FixedColumns","firstColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["industry","_body","FixedColumns","firstColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["industry","_body","FixedColumns","firstColBody","CustomImage","sizes"]}],"namespace":["logos","_body","FixedColumns","firstColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["marketing","mediaComponent","FixedColumns","firstColBody","EventLink","content","Flag","country"]}],"namespace":["live","subtitle","FixedColumns","firstColBody","EventLink","content","Flag"]}],"namespace":["industry","_body","FixedColumns","firstColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["industry","_body","FixedColumns","firstColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["industry","_body","FixedColumns","firstColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["industry","_body","FixedColumns","firstColBody","EventLink","thumbnailAlt"]}],"namespace":["logos","_body","FixedColumns","firstColBody","EventLink"]}],"namespace":["events","footer","FixedColumns","firstColBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"Second column text","name":"secondColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["industry","_body","FixedColumns","secondColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["industry","_body","FixedColumns","secondColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["marketing","mediaComponent","FixedColumns","secondColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["marketing","mediaComponent","FixedColumns","secondColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["marketing","mediaComponent","FixedColumns","secondColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["marketing","mediaComponent","FixedColumns","secondColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["marketing","mediaComponent","FixedColumns","secondColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["marketing","mediaComponent","FixedColumns","secondColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["marketing","mediaComponent","FixedColumns","secondColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["marketing","mediaComponent","FixedColumns","secondColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["marketing","mediaComponent","FixedColumns","secondColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["marketing","mediaComponent","FixedColumns","secondColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["live","subtitle","FixedColumns","secondColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["marketing","mediaComponent","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["marketing","mediaComponent","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["marketing","mediaComponent","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["marketing","mediaComponent","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["marketing","mediaComponent","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["live","subtitle","FixedColumns","secondColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["marketing","mediaComponent","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["marketing","mediaComponent","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["marketing","mediaComponent","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["marketing","mediaComponent","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["marketing","mediaComponent","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["marketing","mediaComponent","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["marketing","mediaComponent","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["live","subtitle","FixedColumns","secondColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["marketing","mediaComponent","FixedColumns","secondColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["marketing","mediaComponent","FixedColumns","secondColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","aboutUs","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["offices","aboutUs","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","aboutUs","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["offices","aboutUs","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["offices","aboutUs","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["marketing","mediaComponent","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["live","subtitle","FixedColumns","secondColBody","ContentCard","content","ColorBlock"]}],"namespace":["industry","_body","FixedColumns","secondColBody","ContentCard","content"]}],"namespace":["logos","_body","FixedColumns","secondColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["industry","_body","FixedColumns","secondColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["industry","_body","FixedColumns","secondColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["industry","_body","FixedColumns","secondColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["industry","_body","FixedColumns","secondColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["industry","_body","FixedColumns","secondColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["industry","_body","FixedColumns","secondColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["industry","_body","FixedColumns","secondColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["industry","_body","FixedColumns","secondColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["industry","_body","FixedColumns","secondColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["industry","_body","FixedColumns","secondColBody","CustomImage","sizes"]}],"namespace":["logos","_body","FixedColumns","secondColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["marketing","mediaComponent","FixedColumns","secondColBody","EventLink","content","Flag","country"]}],"namespace":["live","subtitle","FixedColumns","secondColBody","EventLink","content","Flag"]}],"namespace":["industry","_body","FixedColumns","secondColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["industry","_body","FixedColumns","secondColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["industry","_body","FixedColumns","secondColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["industry","_body","FixedColumns","secondColBody","EventLink","thumbnailAlt"]}],"namespace":["logos","_body","FixedColumns","secondColBody","EventLink"]}],"namespace":["events","footer","FixedColumns","secondColBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["events","footer","FixedColumns"]},{"name":"FixedTabsLayout","label":"Fixed Tabs Layout","ui":{"previewSrc":"/images/thumbs/tina/fixed-tabs-layout.jpg"},"fields":[{"type":"string","name":"firstTab","label":"First Tab","namespace":["events","footer","FixedTabsLayout","firstTab"],"searchable":true,"uid":false},{"type":"rich-text","name":"firstHeading","label":"First Heading","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["industry","_body","FixedTabsLayout","firstHeading","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["industry","_body","FixedTabsLayout","firstHeading","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["industry","_body","FixedTabsLayout","firstHeading","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["industry","_body","FixedTabsLayout","firstHeading","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["industry","_body","FixedTabsLayout","firstHeading","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["industry","_body","FixedTabsLayout","firstHeading","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["industry","_body","FixedTabsLayout","firstHeading","VideoEmbed","duration"]}],"namespace":["logos","_body","FixedTabsLayout","firstHeading","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["industry","_body","FixedTabsLayout","firstHeading","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["industry","_body","FixedTabsLayout","firstHeading","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["industry","_body","FixedTabsLayout","firstHeading","BookingButton","buttonSubtitle"]}],"namespace":["logos","_body","FixedTabsLayout","firstHeading","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["industry","_body","FixedTabsLayout","firstHeading","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["live","subtitle","FixedTabsLayout","firstHeading","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["live","subtitle","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["live","subtitle","FixedTabsLayout","firstHeading","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["live","subtitle","FixedTabsLayout","firstHeading","ExpertBlock","expertList","skills"]}],"namespace":["industry","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["live","subtitle","FixedTabsLayout","firstHeading","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["live","subtitle","FixedTabsLayout","firstHeading","ExpertBlock","link","url"]}],"namespace":["industry","_body","FixedTabsLayout","firstHeading","ExpertBlock","link"]}],"namespace":["logos","_body","FixedTabsLayout","firstHeading","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["live","subtitle","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["live","subtitle","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["live","subtitle","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["marketing","mediaComponent","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["marketing","mediaComponent","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["marketing","mediaComponent","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["live","subtitle","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["industry","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["logos","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["industry","_body","FixedTabsLayout","firstHeading","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["industry","_body","FixedTabsLayout","firstHeading","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["industry","_body","FixedTabsLayout","firstHeading","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["industry","_body","FixedTabsLayout","firstHeading","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["industry","_body","FixedTabsLayout","firstHeading","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["industry","_body","FixedTabsLayout","firstHeading","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["industry","_body","FixedTabsLayout","firstHeading","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["industry","_body","FixedTabsLayout","firstHeading","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["industry","_body","FixedTabsLayout","firstHeading","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["industry","_body","FixedTabsLayout","firstHeading","CustomImage","sizes"]}],"namespace":["logos","_body","FixedTabsLayout","firstHeading","CustomImage"]}],"namespace":["events","footer","FixedTabsLayout","firstHeading"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","name":"firstBody","label":"First Body","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["industry","_body","FixedTabsLayout","firstBody","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["industry","_body","FixedTabsLayout","firstBody","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["industry","_body","FixedTabsLayout","firstBody","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["industry","_body","FixedTabsLayout","firstBody","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["industry","_body","FixedTabsLayout","firstBody","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["industry","_body","FixedTabsLayout","firstBody","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["industry","_body","FixedTabsLayout","firstBody","VideoEmbed","duration"]}],"namespace":["logos","_body","FixedTabsLayout","firstBody","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["industry","_body","FixedTabsLayout","firstBody","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["industry","_body","FixedTabsLayout","firstBody","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["industry","_body","FixedTabsLayout","firstBody","BookingButton","buttonSubtitle"]}],"namespace":["logos","_body","FixedTabsLayout","firstBody","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["industry","_body","FixedTabsLayout","firstBody","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["live","subtitle","FixedTabsLayout","firstBody","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["live","subtitle","FixedTabsLayout","firstBody","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["live","subtitle","FixedTabsLayout","firstBody","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["live","subtitle","FixedTabsLayout","firstBody","ExpertBlock","expertList","skills"]}],"namespace":["industry","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["live","subtitle","FixedTabsLayout","firstBody","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["live","subtitle","FixedTabsLayout","firstBody","ExpertBlock","link","url"]}],"namespace":["industry","_body","FixedTabsLayout","firstBody","ExpertBlock","link"]}],"namespace":["logos","_body","FixedTabsLayout","firstBody","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["live","subtitle","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["live","subtitle","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["live","subtitle","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["marketing","mediaComponent","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["marketing","mediaComponent","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["marketing","mediaComponent","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["live","subtitle","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["industry","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["logos","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["industry","_body","FixedTabsLayout","firstBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["industry","_body","FixedTabsLayout","firstBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["industry","_body","FixedTabsLayout","firstBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["industry","_body","FixedTabsLayout","firstBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["industry","_body","FixedTabsLayout","firstBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["industry","_body","FixedTabsLayout","firstBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["industry","_body","FixedTabsLayout","firstBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["industry","_body","FixedTabsLayout","firstBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["industry","_body","FixedTabsLayout","firstBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["industry","_body","FixedTabsLayout","firstBody","CustomImage","sizes"]}],"namespace":["logos","_body","FixedTabsLayout","firstBody","CustomImage"]}],"namespace":["events","footer","FixedTabsLayout","firstBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","name":"secondTab","label":"Second Tab","namespace":["events","footer","FixedTabsLayout","secondTab"],"searchable":true,"uid":false},{"type":"rich-text","name":"secondHeading","label":"Second Heading","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["industry","_body","FixedTabsLayout","secondHeading","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["industry","_body","FixedTabsLayout","secondHeading","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["industry","_body","FixedTabsLayout","secondHeading","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["industry","_body","FixedTabsLayout","secondHeading","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["industry","_body","FixedTabsLayout","secondHeading","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["industry","_body","FixedTabsLayout","secondHeading","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["industry","_body","FixedTabsLayout","secondHeading","VideoEmbed","duration"]}],"namespace":["logos","_body","FixedTabsLayout","secondHeading","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["industry","_body","FixedTabsLayout","secondHeading","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["industry","_body","FixedTabsLayout","secondHeading","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["industry","_body","FixedTabsLayout","secondHeading","BookingButton","buttonSubtitle"]}],"namespace":["logos","_body","FixedTabsLayout","secondHeading","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["industry","_body","FixedTabsLayout","secondHeading","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["live","subtitle","FixedTabsLayout","secondHeading","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["live","subtitle","FixedTabsLayout","secondHeading","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["live","subtitle","FixedTabsLayout","secondHeading","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["live","subtitle","FixedTabsLayout","secondHeading","ExpertBlock","expertList","skills"]}],"namespace":["industry","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["live","subtitle","FixedTabsLayout","secondHeading","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["live","subtitle","FixedTabsLayout","secondHeading","ExpertBlock","link","url"]}],"namespace":["industry","_body","FixedTabsLayout","secondHeading","ExpertBlock","link"]}],"namespace":["logos","_body","FixedTabsLayout","secondHeading","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["live","subtitle","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["live","subtitle","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["live","subtitle","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["marketing","mediaComponent","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["marketing","mediaComponent","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["marketing","mediaComponent","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["live","subtitle","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["industry","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["logos","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["industry","_body","FixedTabsLayout","secondHeading","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["industry","_body","FixedTabsLayout","secondHeading","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["industry","_body","FixedTabsLayout","secondHeading","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["industry","_body","FixedTabsLayout","secondHeading","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["industry","_body","FixedTabsLayout","secondHeading","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["industry","_body","FixedTabsLayout","secondHeading","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["industry","_body","FixedTabsLayout","secondHeading","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["industry","_body","FixedTabsLayout","secondHeading","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["industry","_body","FixedTabsLayout","secondHeading","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["industry","_body","FixedTabsLayout","secondHeading","CustomImage","sizes"]}],"namespace":["logos","_body","FixedTabsLayout","secondHeading","CustomImage"]}],"namespace":["events","footer","FixedTabsLayout","secondHeading"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","name":"secondBody","label":"Second Body","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["industry","_body","FixedTabsLayout","secondBody","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["industry","_body","FixedTabsLayout","secondBody","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["industry","_body","FixedTabsLayout","secondBody","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["industry","_body","FixedTabsLayout","secondBody","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["industry","_body","FixedTabsLayout","secondBody","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["industry","_body","FixedTabsLayout","secondBody","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["industry","_body","FixedTabsLayout","secondBody","VideoEmbed","duration"]}],"namespace":["logos","_body","FixedTabsLayout","secondBody","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["industry","_body","FixedTabsLayout","secondBody","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["industry","_body","FixedTabsLayout","secondBody","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["industry","_body","FixedTabsLayout","secondBody","BookingButton","buttonSubtitle"]}],"namespace":["logos","_body","FixedTabsLayout","secondBody","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["industry","_body","FixedTabsLayout","secondBody","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["live","subtitle","FixedTabsLayout","secondBody","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["live","subtitle","FixedTabsLayout","secondBody","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["live","subtitle","FixedTabsLayout","secondBody","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["live","subtitle","FixedTabsLayout","secondBody","ExpertBlock","expertList","skills"]}],"namespace":["industry","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["live","subtitle","FixedTabsLayout","secondBody","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["live","subtitle","FixedTabsLayout","secondBody","ExpertBlock","link","url"]}],"namespace":["industry","_body","FixedTabsLayout","secondBody","ExpertBlock","link"]}],"namespace":["logos","_body","FixedTabsLayout","secondBody","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["live","subtitle","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["live","subtitle","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["live","subtitle","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["marketing","mediaComponent","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["marketing","mediaComponent","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["marketing","mediaComponent","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["live","subtitle","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["industry","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["logos","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["industry","_body","FixedTabsLayout","secondBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["industry","_body","FixedTabsLayout","secondBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["industry","_body","FixedTabsLayout","secondBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["industry","_body","FixedTabsLayout","secondBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["industry","_body","FixedTabsLayout","secondBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["industry","_body","FixedTabsLayout","secondBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["industry","_body","FixedTabsLayout","secondBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["industry","_body","FixedTabsLayout","secondBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["industry","_body","FixedTabsLayout","secondBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["industry","_body","FixedTabsLayout","secondBody","CustomImage","sizes"]}],"namespace":["logos","_body","FixedTabsLayout","secondBody","CustomImage"]}],"namespace":["events","footer","FixedTabsLayout","secondBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["events","footer","FixedTabsLayout"]},{"label":"Google Maps","name":"GoogleMaps","ui":{"previewSrc":"/images/thumbs/tina/google-maps.jpg"},"fields":[{"type":"string","label":"URL","name":"embedUrl","required":true,"namespace":["events","footer","GoogleMaps","embedUrl"],"searchable":true,"uid":false},{"type":"string","label":"Width","name":"embedWidth","namespace":["events","footer","GoogleMaps","embedWidth"],"searchable":true,"uid":false},{"type":"string","label":"Height","name":"embedHeight","namespace":["events","footer","GoogleMaps","embedHeight"],"searchable":true,"uid":false}],"namespace":["events","footer","GoogleMaps"]},{"label":"Grid Layout","name":"GridLayout","ui":{"previewSrc":"/images/thumbs/tina/grid-layout.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["events","footer","GridLayout","title"],"searchable":true,"uid":false},{"type":"object","list":true,"label":"Grid Items","name":"grids","ui":{},"fields":[{"type":"string","label":"Grid Title","name":"gridTitle","namespace":["logos","_body","GridLayout","grids","gridTitle"]},{"type":"boolean","label":"Show Grid Title","name":"showGridTitle","namespace":["logos","_body","GridLayout","grids","showGridTitle"]},{"type":"boolean","label":"Centered Grid Title","name":"centeredGridTitle","namespace":["logos","_body","GridLayout","grids","centeredGridTitle"]},{"type":"boolean","label":"Show Header Divider","name":"showHeaderDivider","namespace":["logos","_body","GridLayout","grids","showHeaderDivider"]},{"type":"boolean","label":"Offset Grid Start","name":"offsetGridStart","namespace":["logos","_body","GridLayout","grids","offsetGridStart"]},{"type":"object","label":"Blocks","name":"blocks","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["industry","_body","GridLayout","grids","blocks","title"]},{"type":"boolean","label":"Show Title","name":"showTitle","namespace":["industry","_body","GridLayout","grids","blocks","showTitle"]},{"type":"image","label":"Image","name":"image","uploadDir":{"namespace":["page","beforeBody","GridLayout","grids","blocks","image","uploadDir"]},"namespace":["industry","_body","GridLayout","grids","blocks","image"]},{"type":"image","label":"Related Image","name":"relatedImage","uploadDir":{"namespace":["page","beforeBody","GridLayout","grids","blocks","relatedImage","uploadDir"]},"namespace":["industry","_body","GridLayout","grids","blocks","relatedImage"]},{"type":"rich-text","name":"linkContent","label":"Link Content","templates":[{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["marketing","mediaComponent","GridLayout","grids","blocks","linkContent","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["marketing","mediaComponent","GridLayout","grids","blocks","linkContent","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["marketing","mediaComponent","GridLayout","grids","blocks","linkContent","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["marketing","mediaComponent","GridLayout","grids","blocks","linkContent","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["marketing","mediaComponent","GridLayout","grids","blocks","linkContent","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["marketing","mediaComponent","GridLayout","grids","blocks","linkContent","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["marketing","mediaComponent","GridLayout","grids","blocks","linkContent","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["marketing","mediaComponent","GridLayout","grids","blocks","linkContent","UtilityButton","openInNewTab"]}],"namespace":["live","subtitle","GridLayout","grids","blocks","linkContent","UtilityButton"]}],"namespace":["industry","_body","GridLayout","grids","blocks","linkContent"]}],"namespace":["logos","_body","GridLayout","grids","blocks"]}],"namespace":["events","footer","GridLayout","grids"],"searchable":true,"uid":false}],"namespace":["events","footer","GridLayout"]},{"name":"Hero","label":"Hero","ui":{"previewSrc":"/blocks/hero.png","defaultItem":{"tagline":"Here's some text above the other text","headline":"This Big Text is Totally Awesome","text":"Phasellus scelerisque, libero eu finibus rutrum, risus risus accumsan libero, nec molestie urna dui a leo."}},"fields":[{"type":"string","label":"Tagline","name":"tagline","namespace":["events","footer","Hero","tagline"],"searchable":true,"uid":false},{"type":"string","label":"Headline","name":"headline","namespace":["events","footer","Hero","headline"],"searchable":true,"uid":false},{"label":"Text","name":"text","type":"rich-text","namespace":["events","footer","Hero","text"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"label":"Actions","name":"actions","type":"object","list":true,"ui":{"defaultItem":{"label":"Action Label","type":"button","icon":true,"link":"/"}},"fields":[{"label":"Label","name":"label","type":"string","namespace":["logos","_body","Hero","actions","label"]},{"label":"Type","name":"type","type":"string","options":[{"label":"Button","value":"button"},{"label":"Link","value":"link"}],"namespace":["logos","_body","Hero","actions","type"]},{"label":"Icon","name":"icon","type":"boolean","namespace":["logos","_body","Hero","actions","icon"]},{"label":"Link","name":"link","type":"string","namespace":["logos","_body","Hero","actions","link"]}],"namespace":["events","footer","Hero","actions"],"searchable":true,"uid":false},{"type":"object","label":"Image","name":"image","fields":[{"name":"src","label":"Image Source","type":"image","namespace":["logos","_body","Hero","image","src"]},{"name":"alt","label":"Alt Text","type":"string","namespace":["logos","_body","Hero","image","alt"]}],"namespace":["events","footer","Hero","image"],"searchable":true,"uid":false},{"type":"string","label":"Color","name":"color","options":[{"label":"Default","value":"default"},{"label":"Tint","value":"tint"},{"label":"Primary","value":"primary"}],"namespace":["events","footer","Hero","color"],"searchable":true,"uid":false}],"namespace":["events","footer","Hero"]},{"name":"HorizontalCard","label":"Horizontal Card","ui":{"previewSrc":"/images/thumbs/tina/horizontal-card.jpg"},"fields":[{"type":"object","label":"Cards","name":"cardList","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["logos","_body","HorizontalCard","cardList","title"]},{"type":"rich-text","label":"Content","name":"content","namespace":["logos","_body","HorizontalCard","cardList","content"]},{"type":"image","label":"Thumbnail","name":"thumbnail","uploadDir":{"namespace":["page","beforeBody","HorizontalCard","cardList","thumbnail","uploadDir"]},"namespace":["logos","_body","HorizontalCard","cardList","thumbnail"]},{"type":"string","label":"Link","name":"link","namespace":["logos","_body","HorizontalCard","cardList","link"]}],"namespace":["events","footer","HorizontalCard","cardList"],"searchable":true,"uid":false},{"type":"object","label":"Button","name":"button","fields":[{"type":"string","label":"Text","name":"text","namespace":["logos","_body","HorizontalCard","button","text"]},{"type":"string","label":"Link","name":"link","namespace":["logos","_body","HorizontalCard","button","link"]}],"namespace":["events","footer","HorizontalCard","button"],"searchable":true,"uid":false}],"namespace":["events","footer","HorizontalCard"]},{"name":"InternalCarousel","label":"Internal Carousel","ui":{"previewSrc":"/images/thumbs/tina/internal-carousel.jpg"},"fields":[{"label":"Images","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Image description"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["logos","_body","InternalCarousel","items","label"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","InternalCarousel","items","imgSrc","uploadDir"]},"namespace":["logos","_body","InternalCarousel","items","imgSrc"]}],"namespace":["events","footer","InternalCarousel","items"],"searchable":true,"uid":false},{"type":"string","label":"Header","name":"header","namespace":["events","footer","InternalCarousel","header"],"searchable":true,"uid":false},{"type":"rich-text","label":"Text","name":"paragraph","isBody":false,"namespace":["events","footer","InternalCarousel","paragraph"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Website","name":"website","namespace":["events","footer","InternalCarousel","website"],"searchable":true,"uid":false},{"type":"object","label":"Technologies","name":"technologies","list":true,"ui":{},"fields":[{"type":"string","label":"Name","name":"name","namespace":["logos","_body","InternalCarousel","technologies","name"]}],"namespace":["events","footer","InternalCarousel","technologies"],"searchable":true,"uid":false},{"type":"string","label":"Case Study","name":"caseStudyUrl","namespace":["events","footer","InternalCarousel","caseStudyUrl"],"searchable":true,"uid":false},{"type":"string","label":"Video URL","name":"videoUrl","namespace":["events","footer","InternalCarousel","videoUrl"],"searchable":true,"uid":false}],"namespace":["events","footer","InternalCarousel"]},{"label":"Join As Presenter","name":"joinAsPresenter","fields":[{"label":"Learn More Link","name":"link","type":"string","namespace":["events","footer","joinAsPresenter","link"],"searchable":true,"uid":false},{"label":"Image","name":"img","type":"image","namespace":["events","footer","joinAsPresenter","img"],"searchable":false,"uid":false}],"namespace":["events","footer","joinAsPresenter"]},{"label":"Join Github","name":"joinGithub","ui":{"previewSrc":"/images/thumbs/tina/join-github.jpg"},"fields":[{"label":"Title","name":"title","type":"string","namespace":["events","footer","joinGithub","title"],"searchable":true,"uid":false},{"label":"Join Github Link","name":"link","type":"string","namespace":["events","footer","joinGithub","link"],"searchable":true,"uid":false}],"namespace":["events","footer","joinGithub"]},{"name":"JotFormEmbed","label":"JotForm Embed","ui":{"previewSrc":"/images/thumbs/tina/jotform-embed.jpg"},"fields":[{"type":"string","name":"jotFormId","label":"JotForm Id","required":true,"namespace":["events","footer","JotFormEmbed","jotFormId"],"searchable":true,"uid":false},{"type":"string","label":"Button Text","name":"buttonText","namespace":["events","footer","JotFormEmbed","buttonText"],"searchable":true,"uid":false},{"type":"string","name":"containerClass","label":"Container Class","namespace":["events","footer","JotFormEmbed","containerClass"],"searchable":true,"uid":false},{"type":"string","label":"Button Class","name":"buttonClass","namespace":["events","footer","JotFormEmbed","buttonClass"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","namespace":["events","footer","JotFormEmbed","animated"],"searchable":true,"uid":false}],"namespace":["events","footer","JotFormEmbed"]},{"name":"LatestTech","label":"Latest Tech","ui":{"previewSrc":"/images/thumbs/tina/latest-tech.jpg"},"fields":[{"type":"reference","description":"Select a config file including a set of badges","collections":["userGroupGlobal"],"label":"Badges","name":"badges","namespace":["events","footer","LatestTech","badges"],"searchable":true,"uid":false}],"namespace":["events","footer","LatestTech"]},{"name":"LocationBlock","label":"Locations","ui":{"previewSrc":"/images/thumbs/tina/locations.jpg"},"fields":[{"type":"string","name":"title","label":"Title","namespace":["events","footer","LocationBlock","title"],"searchable":true,"uid":false},{"type":"object","label":"Location List","name":"locationList","list":true,"ui":{},"fields":[{"type":"reference","collections":["locations"],"label":"Location","name":"location","namespace":["logos","_body","LocationBlock","locationList","location"]}],"namespace":["events","footer","LocationBlock","locationList"],"searchable":true,"uid":false},{"type":"object","name":"chapelWebsite","label":"Chapel Website","fields":[{"type":"string","name":"title","label":"Text","namespace":["logos","_body","LocationBlock","chapelWebsite","title"]},{"type":"string","name":"URL","label":"URL","namespace":["logos","_body","LocationBlock","chapelWebsite","URL"]}],"namespace":["events","footer","LocationBlock","chapelWebsite"],"searchable":true,"uid":false}],"namespace":["events","footer","LocationBlock"]},{"name":"NewslettersTable","label":"Newsletters Table","ui":{"previewSrc":"/images/thumbs/tina/newsletters-table.jpg"},"fields":[{"type":"string","label":"Header text","name":"headerText","namespace":["events","footer","NewslettersTable","headerText"],"searchable":true,"uid":false}],"namespace":["events","footer","NewslettersTable"]},{"label":"Organizer","name":"organizer","fields":[{"type":"image","label":"Profile Image","name":"profileImg","namespace":["events","footer","organizer","profileImg"],"searchable":false,"uid":false},{"type":"string","label":"Profile Link","name":"profileLink","namespace":["events","footer","organizer","profileLink"],"searchable":true,"uid":false},{"type":"string","label":"Name","name":"name","namespace":["events","footer","organizer","name"],"searchable":true,"uid":false},{"type":"string","label":"Position","name":"position","namespace":["events","footer","organizer","position"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","namespace":["events","footer","organizer","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["events","footer","organizer"]},{"label":"Payment Block","name":"paymentBlock","ui":{"previewSrc":"/images/thumbs/tina/payment-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["events","footer","paymentBlock","title"],"searchable":true,"uid":false},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["events","footer","paymentBlock","subTitle"],"searchable":true,"uid":false},{"type":"reference","label":"Payment Links","name":"payments","collections":["paymentDetails"],"namespace":["events","footer","paymentBlock","payments"],"searchable":true,"uid":false},{"type":"rich-text","label":"Footer","name":"footer","namespace":["events","footer","paymentBlock","footer"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"image","label":"Credit Cards Image","name":"creditImgSrc","namespace":["events","footer","paymentBlock","creditImgSrc"],"searchable":false,"uid":false},{"type":"string","label":"Alt Text","name":"altTxt","namespace":["events","footer","paymentBlock","altTxt"],"searchable":true,"uid":false}],"namespace":["events","footer","paymentBlock"]},{"name":"PresenterBlock","label":"Presenters","ui":{"previewSrc":"/images/thumbs/tina/presenters.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["events","footer","PresenterBlock","header"],"searchable":true,"uid":false},{"type":"object","name":"presenterList","label":"Presenters","list":true,"ui":{},"fields":[{"type":"reference","name":"presenter","label":"Presenters","collections":["presenter"],"namespace":["logos","_body","PresenterBlock","presenterList","presenter"]}],"namespace":["events","footer","PresenterBlock","presenterList"],"searchable":true,"uid":false},{"type":"object","label":"Other Events","name":"otherEvent","fields":[{"type":"string","label":"Title","name":"title","namespace":["logos","_body","PresenterBlock","otherEvent","title"]},{"type":"string","label":"URL","name":"eventURL","namespace":["logos","_body","PresenterBlock","otherEvent","eventURL"]}],"namespace":["events","footer","PresenterBlock","otherEvent"],"searchable":true,"uid":false}],"namespace":["events","footer","PresenterBlock"]},{"label":"Recurring Event","name":"RecurringEvent","ui":{"previewSrc":"/images/thumbs/tina/recurring-event.jpg"},"fields":[{"type":"string","label":"Apply Link Redirect","name":"applyLinkRedirect","namespace":["events","footer","RecurringEvent","applyLinkRedirect"],"searchable":true,"uid":false},{"type":"string","label":"Day","name":"day","options":[{"label":"Monday","value":"monday"},{"label":"Tuesday","value":"tuesday"},{"label":"Wednesday","value":"wednesday"},{"label":"Thursday","value":"thursday"},{"label":"Friday","value":"friday"},{"label":"Saturday","value":"saturday"},{"label":"Sunday","value":"sunday"}],"required":true,"namespace":["events","footer","RecurringEvent","day"],"searchable":true,"uid":false}],"namespace":["events","footer","RecurringEvent"]},{"name":"SectionHeader","label":"Section Header","ui":{"previewSrc":"/images/thumbs/tina/section-header.jpg"},"fields":[{"type":"string","label":"Header Text","name":"headerText","namespace":["events","footer","SectionHeader","headerText"],"searchable":true,"uid":false}],"namespace":["events","footer","SectionHeader"]},{"name":"ServiceCards","label":"Service Cards","ui":{"previewSrc":"/images/thumbs/tina/services-cards.jpg"},"fields":[{"type":"string","label":"Big Cards Label","name":"bigCardsLabel","namespace":["events","footer","ServiceCards","bigCardsLabel"],"searchable":true,"uid":false},{"label":"Big Cards","name":"bigCards","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["logos","_body","ServiceCards","bigCards","title"]},{"type":"string","label":"Description","component":"textarea","name":"description","namespace":["logos","_body","ServiceCards","bigCards","description"]},{"type":"string","label":"URL","name":"link","namespace":["logos","_body","ServiceCards","bigCards","link"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Red","value":"red"},{"label":"Light Gray","value":"lightgray"},{"label":"Medium Gray","value":"mediumgray"},{"label":"Dark Gray","value":"darkgray"}],"namespace":["logos","_body","ServiceCards","bigCards","color"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","ServiceCards","bigCards","imgSrc","uploadDir"]},"namespace":["logos","_body","ServiceCards","bigCards","imgSrc"]}],"namespace":["events","footer","ServiceCards","bigCards"],"searchable":true,"uid":false},{"type":"string","label":"Small Cards Label","name":"smallCardsLabel","namespace":["events","footer","ServiceCards","smallCardsLabel"],"searchable":true,"uid":false},{"label":"Small Cards","name":"smallCards","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["logos","_body","ServiceCards","smallCards","title"]},{"type":"string","label":"URL","name":"link","namespace":["logos","_body","ServiceCards","smallCards","link"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Red","value":"red"},{"label":"Light Gray","value":"lightgray"},{"label":"Medium Gray","value":"mediumgray"},{"label":"Dark Gray","value":"darkgray"}],"namespace":["logos","_body","ServiceCards","smallCards","color"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","ServiceCards","smallCards","imgSrc","uploadDir"]},"namespace":["logos","_body","ServiceCards","smallCards","imgSrc"]},{"type":"boolean","label":"External Page","description":"Select this if the link is not part of the website. This includes SSW.Rules, and SSW.People links","name":"isExternal","namespace":["logos","_body","ServiceCards","smallCards","isExternal"]}],"namespace":["events","footer","ServiceCards","smallCards"],"searchable":true,"uid":false},{"label":"Links","name":"links","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["logos","_body","ServiceCards","links","label"]},{"type":"string","label":"URL","name":"link","namespace":["logos","_body","ServiceCards","links","link"]}],"namespace":["events","footer","ServiceCards","links"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["events","footer","ServiceCards","backgroundColor"],"searchable":true,"uid":false}],"namespace":["events","footer","ServiceCards"]},{"label":"Table Layout","name":"TableLayout","ui":{"previewSrc":"/images/thumbs/tina/table-layout.jpg"},"fields":[{"label":"Table Style","name":"tableStyle","type":"string","options":["none","basicBorder","styled","benefits"],"namespace":["events","footer","TableLayout","tableStyle"],"searchable":true,"uid":false},{"label":"First column bolded + left aligned","name":"firstColBold","type":"boolean","required":false,"namespace":["events","footer","TableLayout","firstColBold"],"searchable":true,"uid":false},{"type":"string","label":"Table Headers","name":"headers","list":true,"namespace":["events","footer","TableLayout","headers"],"searchable":true,"uid":false},{"type":"object","label":"Rows","name":"rows","list":true,"fields":[{"type":"object","label":"Cells","name":"cells","list":true,"fields":[{"type":"string","label":"Value","name":"cellValue","required":true,"component":{"namespace":["page","beforeBody","TableLayout","rows","cells","cellValue",""]},"namespace":["industry","_body","TableLayout","rows","cells","cellValue"]}],"ui":{},"namespace":["logos","_body","TableLayout","rows","cells"]},{"type":"boolean","label":"Is Heading","name":"isHeader","required":false,"namespace":["logos","_body","TableLayout","rows","isHeader"]}],"ui":{},"namespace":["events","footer","TableLayout","rows"],"searchable":true,"uid":false}],"namespace":["events","footer","TableLayout"]},{"name":"TestimonialsList","label":"Testimonials List","ui":{"previewSrc":"/images/thumbs/tina/testimonials.jpg"},"fields":[{"type":"object","label":"Exclude Categories","name":"excludedCategories","ui":{},"list":true,"fields":[{"type":"reference","label":"Category Name","name":"categoryName","collections":["testimonialCategories"],"namespace":["logos","_body","TestimonialsList","excludedCategories","categoryName"]}],"namespace":["events","footer","TestimonialsList","excludedCategories"],"searchable":true,"uid":false}],"namespace":["events","footer","TestimonialsList"]},{"label":"Training Information","name":"TrainingInformation","ui":{"previewSrc":"/images/thumbs/tina/training-information.jpg"},"fields":[{"type":"object","label":"Training Information Items","name":"trainingInformationItems","list":true,"fields":[{"type":"string","label":"Header","name":"header","namespace":["logos","_body","TrainingInformation","trainingInformationItems","header"]},{"type":"rich-text","label":"Body","name":"body","templates":[{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["live","subtitle","TrainingInformation","trainingInformationItems","body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["live","subtitle","TrainingInformation","trainingInformationItems","body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["live","subtitle","TrainingInformation","trainingInformationItems","body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["live","subtitle","TrainingInformation","trainingInformationItems","body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["live","subtitle","TrainingInformation","trainingInformationItems","body","VerticalListItem","afterBody"]}],"namespace":["industry","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem"]},{"label":"Recurring Event","name":"RecurringEvent","ui":{"previewSrc":"/images/thumbs/tina/recurring-event.jpg"},"fields":[{"type":"string","label":"Apply Link Redirect","name":"applyLinkRedirect","namespace":["live","subtitle","TrainingInformation","trainingInformationItems","body","RecurringEvent","applyLinkRedirect"]},{"type":"string","label":"Day","name":"day","options":[{"label":"Monday","value":"monday"},{"label":"Tuesday","value":"tuesday"},{"label":"Wednesday","value":"wednesday"},{"label":"Thursday","value":"thursday"},{"label":"Friday","value":"friday"},{"label":"Saturday","value":"saturday"},{"label":"Sunday","value":"sunday"}],"required":true,"namespace":["live","subtitle","TrainingInformation","trainingInformationItems","body","RecurringEvent","day"]}],"namespace":["industry","_body","TrainingInformation","trainingInformationItems","body","RecurringEvent"]}],"namespace":["logos","_body","TrainingInformation","trainingInformationItems","body"]}],"namespace":["events","footer","TrainingInformation","trainingInformationItems"],"searchable":true,"uid":false}],"namespace":["events","footer","TrainingInformation"]},{"label":"Training Learning Outcomes","name":"TrainingLearningOutcome","ui":{"previewSrc":"/images/thumbs/tina/training-learning-outcomes.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["events","footer","TrainingLearningOutcome","header"],"searchable":true,"uid":false},{"type":"object","label":"List Items","name":"listItems","list":true,"fields":[{"type":"string","label":"Title","name":"title","namespace":["logos","_body","TrainingLearningOutcome","listItems","title"]},{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["logos","_body","TrainingLearningOutcome","listItems","content"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","TrainingLearningOutcome","listItems","icon","uploadDir"]},"namespace":["logos","_body","TrainingLearningOutcome","listItems","icon"]}],"namespace":["events","footer","TrainingLearningOutcome","listItems"],"searchable":true,"uid":false}],"namespace":["events","footer","TrainingLearningOutcome"]},{"label":"Tweet Embed","name":"TweetEmbed","ui":{"previewSrc":"/images/thumbs/tina/tweet-embed.jpg"},"fields":[{"type":"string","name":"url","label":"Tweet URL","required":true,"namespace":["events","footer","TweetEmbed","url"],"searchable":true,"uid":false}],"namespace":["events","footer","TweetEmbed"]},{"name":"UpcomingEvents","label":"Upcoming Events","ui":{"previewSrc":"/images/thumbs/tina/upcoming-events.jpg","defaultItem":{"title":"Upcoming Events","numberOfEvents":30}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["events","footer","UpcomingEvents","title"],"searchable":true,"uid":false},{"type":"number","label":"Number of Events","name":"numberOfEvents","namespace":["events","footer","UpcomingEvents","numberOfEvents"],"searchable":true,"uid":false}],"namespace":["events","footer","UpcomingEvents"]},{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["events","footer","UtilityButton","buttonText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"link","required":false,"namespace":["events","footer","UtilityButton","link"],"searchable":true,"uid":false},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["events","footer","UtilityButton","size"],"searchable":true,"uid":false},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["events","footer","UtilityButton","btnIcon"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["events","footer","UtilityButton","animated"],"searchable":true,"uid":false},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["events","footer","UtilityButton","uncentered"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["events","footer","UtilityButton","removeTopMargin"],"searchable":true,"uid":false},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["events","footer","UtilityButton","openInNewTab"],"searchable":true,"uid":false}],"namespace":["events","footer","UtilityButton"]},{"name":"VerticalImageLayout","label":"Vertical Image Layout","fields":[{"type":"image","label":"Image","name":"imageSrc","uploadDir":{"namespace":["page","beforeBody","VerticalImageLayout","imageSrc","uploadDir"]},"namespace":["events","footer","VerticalImageLayout","imageSrc"],"searchable":false,"uid":false},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["events","footer","VerticalImageLayout","altText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"imageLink","namespace":["events","footer","VerticalImageLayout","imageLink"],"searchable":true,"uid":false},{"type":"number","label":"Height","name":"height","required":true,"namespace":["events","footer","VerticalImageLayout","height"],"searchable":true,"uid":false},{"type":"number","label":"Width","name":"width","required":true,"namespace":["events","footer","VerticalImageLayout","width"],"searchable":true,"uid":false},{"type":"rich-text","label":"Message","name":"message","required":true,"namespace":["events","footer","VerticalImageLayout","message"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["events","footer","VerticalImageLayout","sizes"],"searchable":true,"uid":false}],"namespace":["events","footer","VerticalImageLayout"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["events","footer","VerticalListItem","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"number","label":"Index number","name":"index","namespace":["events","footer","VerticalListItem","index"],"searchable":true,"uid":false},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["events","footer","VerticalListItem","icon"],"searchable":false,"uid":false},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["events","footer","VerticalListItem","iconScale"],"searchable":true,"uid":false},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["events","footer","VerticalListItem","afterBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["events","footer","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["events","footer","VideoEmbed","url"],"searchable":true,"uid":false},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["events","footer","VideoEmbed","videoWidth"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["events","footer","VideoEmbed","removeMargin"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["events","footer","VideoEmbed","uncentre"],"searchable":true,"uid":false},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["events","footer","VideoEmbed","overflow"],"searchable":true,"uid":false},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["events","footer","VideoEmbed","caption"],"searchable":true,"uid":false},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["events","footer","VideoEmbed","duration"],"searchable":true,"uid":false}],"namespace":["events","footer","VideoEmbed"]},{"name":"InlineJotForm","label":"In-line JotForm","ui":{"previewSrc":"/images/thumbs/tina/inline-jot-form.jpg"},"fields":[{"type":"string","name":"title","label":"Title","description":"Optional title for JotForm","namespace":["events","footer","InlineJotForm","title"],"searchable":true,"uid":false},{"type":"string","name":"jotFormId","label":"JotForm ID","required":true,"namespace":["events","footer","InlineJotForm","jotFormId"],"searchable":true,"uid":false},{"type":"string","name":"additionalClasses","label":"Additional classnames","description":"Optional styling for iframe element only","namespace":["events","footer","InlineJotForm","additionalClasses"],"searchable":true,"uid":false}],"namespace":["events","footer","InlineJotForm"]}],"namespace":["events","footer"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"object","label":"Videos","name":"videos","fields":[{"type":"string","label":"Channel Link","name":"channelLink","namespace":["events","videos","channelLink"],"searchable":true,"uid":false},{"type":"object","label":"Video Cards","name":"videoCards","list":true,"fields":[{"type":"string","label":"Title","name":"title","namespace":["training","videos","videoCards","title"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"link","namespace":["training","videos","videoCards","link"],"searchable":true,"uid":false}],"namespace":["events","videos","videoCards"],"searchable":true,"uid":false}],"namespace":["events","videos"],"searchable":true,"uid":false}],"namespace":["events"]},{"label":"Events - Calendar","name":"eventsCalendar","path":"content/events-calendar","format":"json","ui":{},"fields":[{"type":"string","label":"Title","name":"title","required":true,"isTitle":true,"description":"{{ NAME OF EVENT }} - {{ LOCATION }} (10-15 words max)","namespace":["eventsCalendar","title"],"searchable":true,"uid":false},{"type":"string","label":"URL","name":"url","required":true,"description":"URL of the event page (e.g. https://www.ssw.com.au/events/angular-workshop)","namespace":["eventsCalendar","url"],"searchable":true,"uid":false},{"type":"image","label":"Thumbnail","name":"thumbnail","uploadDir":{"namespace":["eventsCalendar","thumbnail","uploadDir"]},"required":true,"namespace":["eventsCalendar","thumbnail"],"searchable":false,"uid":false},{"type":"string","label":"Thumbnail Description","name":"thumbnailDescription","description":"Used as alt text for the thumbnail","namespace":["eventsCalendar","thumbnailDescription"],"searchable":true,"uid":false},{"type":"object","name":"presenterList","label":"Presenters","description":"Shown on the event listing (Presenters: Presenter1, Presenter2 & Presenter3) - Please ensure all presenters in the list are filled out","list":true,"ui":{},"fields":[{"type":"reference","ui":{},"name":"presenter","label":"Presenter","collections":["presenter"],"namespace":["eventsCalendar","presenterList","presenter"],"searchable":true,"uid":false}],"namespace":["eventsCalendar","presenterList"],"searchable":true,"uid":false},{"type":"string","label":"Presenter Name Override","name":"presenterName","description":"Use this for external presenters - Will override the presenter name(s) shown on the event","namespace":["eventsCalendar","presenterName"],"searchable":true,"uid":false},{"type":"string","label":"Presenter Website","name":"presenterProfileUrl","description":"Use this for external presenters - This link will appear the on the presenter's name when the field above is filled out \"","namespace":["eventsCalendar","presenterProfileUrl"],"searchable":true,"uid":false},{"type":"datetime","label":"Start Date/Time","name":"startDateTime","description":"Add the time of the event in Sydney time","required":true,"ui":{"timeFormat":"hh:mm a","dateFormat":"ddd DD MMMM YYYY,"},"namespace":["eventsCalendar","startDateTime"],"searchable":true,"uid":false},{"type":"datetime","label":"End Date/Time","name":"endDateTime","required":true,"ui":{"timeFormat":"hh:mm a","dateFormat":"ddd DD MMMM YYYY,"},"namespace":["eventsCalendar","endDateTime"],"searchable":true,"uid":false},{"type":"datetime","label":"Website - Show livestream banner start time","name":"startShowBannerDateTime","description":"Leave empty if the event isn't being livestreamed","ui":{"timeFormat":"hh:mm a","dateFormat":"ddd DD MMMM YYYY,"},"namespace":["eventsCalendar","startShowBannerDateTime"],"searchable":true,"uid":false},{"type":"datetime","label":"Website - Show livestream banner end time","name":"endShowBannerDateTime","description":"Leave empty if the event isn't being livestreamed","ui":{"timeFormat":"hh:mm a","dateFormat":"ddd DD MMMM YYYY,"},"namespace":["eventsCalendar","endShowBannerDateTime"],"searchable":true,"uid":false},{"type":"string","label":"Event Type","name":"calendarType","ui":{"component":"select"},"options":["Conferences","SSW Courses","User Groups","Hack Days","Other"],"namespace":["eventsCalendar","calendarType"],"searchable":true,"uid":false},{"type":"string","label":"City","name":"city","ui":{"component":"select"},"options":["Sydney","Melbourne","Canberra","Brisbane","Adelaide","Gold Coast","Newcastle","Perth","Auckland","Beijing","Other"],"namespace":["eventsCalendar","city"],"searchable":true,"uid":false},{"type":"string","label":"City - Other","description":"Enter the name of the city","name":"cityOther","ui":{},"namespace":["eventsCalendar","cityOther"],"searchable":true,"uid":false},{"type":"string","label":"Category","name":"category","ui":{"component":"select"},"options":["Angular and React",".NET Core","BI and Reporting Services","Dynamics 365","Data and LINQ","Mobile","Non-English Courses","Office","Scrum","SharePoint","SQL Server","Visual Studio and TFS","Web Design","Azure","DevOps","Other"],"namespace":["eventsCalendar","category"],"searchable":true,"uid":false},{"type":"string","label":"Abstract","name":"abstract","ui":{"component":"textarea"},"description":"Only necessary for User Groups - shown on the landing page for user groups e.g. https://www.ssw.com.au/netug/sydney Ensure this is concise enough to fit on the above page, and does not double up on any information that already exists on the page","namespace":["eventsCalendar","abstract"],"searchable":true,"uid":false},{"type":"rich-text","label":"Description","name":"description","description":"This shows on ssw.com.au/events","namespace":["eventsCalendar","description"],"searchable":true,"parser":{"type":"markdown"},"uid":false},{"type":"string","label":"YouTube ID","name":"youTubeId","description":"The Youtube ID of the livestream - For SSW TV to fill in on the day of the event","namespace":["eventsCalendar","youTubeId"],"searchable":true,"uid":false},{"type":"boolean","label":"Delayed LiveStream Start","name":"delayedLiveStreamStart","namespace":["eventsCalendar","delayedLiveStreamStart"],"searchable":true,"uid":false},{"type":"number","label":"Live Stream Delay (Minutes)","name":"liveStreamDelayMinutes","namespace":["eventsCalendar","liveStreamDelayMinutes"],"searchable":true,"uid":false},{"type":"string","label":"Trailer Video - URL","name":"trailerUrl","namespace":["eventsCalendar","trailerUrl"],"searchable":true,"uid":false},{"type":"boolean","label":"Hosted at SSW","name":"hostedAtSsw","namespace":["eventsCalendar","hostedAtSsw"],"searchable":true,"uid":false},{"type":"boolean","label":"Show on SSW Website","name":"enabled","description":"Disable for private events","namespace":["eventsCalendar","enabled"],"searchable":true,"uid":false},{"type":"string","label":"Internal Note","name":"internalNote","description":"For internal use only - This does not render anywhere","ui":{"component":"textarea"},"namespace":["eventsCalendar","internalNote"],"searchable":true,"uid":false}],"namespace":["eventsCalendar"]},{"label":"Events - Locations","name":"locations","format":"mdx","path":"content/locations","fields":[{"type":"string","name":"tip","label":"Tip","ui":{},"namespace":["locations","tip"],"searchable":true,"uid":false},{"type":"string","name":"header","label":"Header","namespace":["locations","header"],"searchable":true,"uid":false},{"type":"string","name":"addressLine1","label":"Address Line 1","namespace":["locations","addressLine1"],"searchable":true,"uid":false},{"type":"string","name":"addressLine2","label":"Address Line 2","namespace":["locations","addressLine2"],"searchable":true,"uid":false},{"type":"string","name":"addressLine3","label":"Address Line 3","namespace":["locations","addressLine3"],"searchable":true,"uid":false},{"type":"string","name":"directionURL","label":"Directions","namespace":["locations","directionURL"],"searchable":true,"uid":false}],"namespace":["locations"]},{"label":"Events - Presenters","name":"presenter","format":"mdx","path":"content/presenters","fields":[{"type":"string","name":"tip","label":"Tip","ui":{},"namespace":["presenter","tip"],"searchable":true,"uid":false},{"type":"image","name":"profileImg","label":"Profile Image","uploadDir":{"namespace":["presenter","profileImg","uploadDir"]},"namespace":["presenter","profileImg"],"searchable":false,"uid":false},{"type":"image","name":"torsoImg","label":"Torso Image","uploadDir":{"namespace":["presenter","torsoImg","uploadDir"]},"namespace":["presenter","torsoImg"],"searchable":false,"uid":false},{"type":"object","name":"presenter","label":"Presenter","fields":[{"type":"string","label":"Full Name","name":"name","namespace":["presenter","presenter","name"],"searchable":true,"uid":false},{"type":"string","label":"People Profile URL","name":"peopleProfileURL","namespace":["presenter","presenter","peopleProfileURL"],"searchable":true,"uid":false}],"namespace":["presenter","presenter"],"searchable":true,"uid":false},{"type":"rich-text","name":"about","label":"About","namespace":["presenter","about"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Position","name":"position","description":"The presenter's occupation, e.g. Chief Architect for Adam Cogan","required":false,"namespace":["presenter","position"],"searchable":true,"uid":false},{"type":"string","label":"Skills","name":"skills","description":"The presenter's skills, e.g. React | TypeScript","required":false,"namespace":["presenter","skills"],"searchable":true,"uid":false}],"namespace":["presenter"]},{"label":"Logos","name":"logos","path":"content/logo","format":"mdx","ui":{},"fields":[{"type":"object","label":"SEO Values","name":"seo","fields":[{"type":"string","label":"Title (70 characters)","name":"title","ui":{},"namespace":["logos","seo","title"],"searchable":true,"uid":false},{"type":"string","label":"Description (150 characters)","name":"description","component":"textarea","ui":{},"namespace":["logos","seo","description"],"searchable":true,"uid":false},{"type":"string","label":"Canonical URL","name":"canonical","namespace":["logos","seo","canonical"],"searchable":true,"uid":false},{"type":"boolean","name":"showBreadcrumb","label":"Show Breadcrumb","namespace":["logos","seo","showBreadcrumb"],"searchable":true,"uid":false},{"label":"Images","name":"images","list":true,"type":"object","ui":{"defaultItem":{"url":"/images/ssw-default-og.jpg","width":1200,"height":630,"alt":"SSW Consulting - Enterprise Software Development"}},"fields":[{"type":"image","label":"Image Url","name":"url","require":true,"namespace":["industry","seo","images","url"],"searchable":false,"uid":false},{"type":"number","label":"Width (px)","name":"width","namespace":["industry","seo","images","width"],"searchable":true,"uid":false},{"type":"number","label":"Height (px)","name":"height","namespace":["industry","seo","images","height"],"searchable":true,"uid":false},{"type":"string","label":"Image Alt Text","name":"alt","namespace":["industry","seo","images","alt"],"searchable":true,"uid":false}],"namespace":["logos","seo","images"],"searchable":true,"uid":false}],"namespace":["logos","seo"],"searchable":true,"uid":false},{"type":"string","label":"Header","name":"header","namespace":["logos","header"],"searchable":true,"uid":false},{"type":"rich-text","label":"Sub Header","name":"subHeader","namespace":["logos","subHeader"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"object","list":true,"name":"_body","label":"Body","ui":{"visualSelector":true},"templates":[{"name":"AboutUs","label":"About Us","ui":{"previewSrc":"/images/thumbs/tina/about-us.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["logos","_body","AboutUs","backgroundColor"],"searchable":true,"uid":false},{"type":"boolean","label":"Show Map","name":"showMap","required":false,"namespace":["logos","_body","AboutUs","showMap"],"searchable":true,"uid":false}],"namespace":["logos","_body","AboutUs"]},{"label":"Agenda","name":"Agenda","ui":{"previewSrc":"/images/thumbs/tina/agenda.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["logos","_body","Agenda","header"],"searchable":true,"uid":false},{"type":"string","label":"Header Color","name":"textColor","options":[{"label":"Red","value":"red"},{"label":"Gray","value":"gray"},{"label":"Default","value":"default"}],"namespace":["logos","_body","Agenda","textColor"],"searchable":true,"uid":false},{"type":"object","label":"Agenda Items","name":"agendaItemList","ui":{},"list":true,"fields":[{"type":"string","label":"Placeholder Text","name":"placeholder","namespace":["industry","_body","Agenda","agendaItemList","placeholder"]},{"type":"rich-text","label":"Body","name":"body","templates":[{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["marketing","mediaComponent","Agenda","agendaItemList","body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["marketing","mediaComponent","Agenda","agendaItemList","body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["marketing","mediaComponent","Agenda","agendaItemList","body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["marketing","mediaComponent","Agenda","agendaItemList","body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["marketing","mediaComponent","Agenda","agendaItemList","body","VerticalListItem","afterBody"]}],"namespace":["live","subtitle","Agenda","agendaItemList","body","VerticalListItem"]}],"namespace":["industry","_body","Agenda","agendaItemList","body"]}],"namespace":["logos","_body","Agenda","agendaItemList"],"searchable":true,"uid":false}],"namespace":["logos","_body","Agenda"]},{"label":"Agreement Form","name":"AgreementForm","ui":{"previewSrc":"/images/thumbs/tina/agreement-form.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["logos","_body","AgreementForm","backgroundColor"],"searchable":true,"uid":false},{"type":"object","label":"Form fields","name":"fields","list":true,"fields":[{"type":"string","label":"ID","name":"id","required":true,"namespace":["industry","_body","AgreementForm","fields","id"]},{"type":"string","label":"Label","name":"label","required":true,"namespace":["industry","_body","AgreementForm","fields","label"]},{"type":"string","label":"Placeholder","name":"placeholder","namespace":["industry","_body","AgreementForm","fields","placeholder"]},{"type":"boolean","label":"Resizeable","name":"resizeable","required":true,"namespace":["industry","_body","AgreementForm","fields","resizeable"]}],"namespace":["logos","_body","AgreementForm","fields"],"searchable":true,"uid":false}],"namespace":["logos","_body","AgreementForm"]},{"label":"Interest Form","name":"InterestForm","ui":{"previewSrc":"/images/thumbs/tina/interest-form.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["logos","_body","InterestForm","buttonText"],"searchable":true,"uid":false}],"namespace":["logos","_body","InterestForm"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["logos","_body","BookingButton","buttonText"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","namespace":["logos","_body","BookingButton","animated"],"searchable":true,"uid":false},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["logos","_body","BookingButton","buttonSubtitle"],"searchable":true,"uid":false}],"namespace":["logos","_body","BookingButton"]},{"name":"BuiltOnAzure","label":"Built on Azure","ui":{"previewSrc":"/images/thumbs/tina/built-on-azure.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["logos","_body","BuiltOnAzure","backgroundColor"],"searchable":true,"uid":false}],"namespace":["logos","_body","BuiltOnAzure"]},{"name":"Carousel","label":"Carousel","ui":{"previewSrc":"/images/thumbs/tina/carousel.jpg"},"fields":[{"label":"Items","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Item description","link":"/","openIn":"sameWindow"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["industry","_body","Carousel","items","label"]},{"type":"string","label":"URL","name":"link","description":"If link contains ssw.com.au, you can skip the full URL and just use the path. e.g. /services","namespace":["industry","_body","Carousel","items","link"]},{"type":"string","label":"Open in","name":"openIn","description":"If it is external link, please select 'New window' option.","options":[{"label":"Same window","value":"sameWindow"},{"label":"Modal","value":"modal"},{"label":"New window","value":"newWindow"}],"namespace":["industry","_body","Carousel","items","openIn"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","Carousel","items","imgSrc","uploadDir"]},"namespace":["industry","_body","Carousel","items","imgSrc"]}],"namespace":["logos","_body","Carousel","items"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["logos","_body","Carousel","backgroundColor"],"searchable":true,"uid":false},{"type":"number","label":"Delay (Seconds)","name":"delay","required":true,"namespace":["logos","_body","Carousel","delay"],"searchable":true,"uid":false},{"type":"boolean","label":"Show on mobile devices","name":"showOnMobileDevices","namespace":["logos","_body","Carousel","showOnMobileDevices"],"searchable":true,"uid":false}],"namespace":["logos","_body","Carousel"]},{"name":"Citation","label":"Citation","fields":[{"type":"string","label":"author","name":"author","namespace":["logos","_body","Citation","author"],"searchable":true,"uid":false},{"type":"string","label":"article","name":"article","required":true,"namespace":["logos","_body","Citation","article"],"searchable":true,"uid":false}],"namespace":["logos","_body","Citation"]},{"label":"Client List","name":"ClientList","ui":{"previewSrc":"/images/thumbs/tina/clients-list.jpg"},"fields":[{"type":"object","name":"categories","label":"Categories","list":true,"fields":[{"type":"reference","name":"category","label":"Category","collections":["clientCategories"],"namespace":["industry","_body","ClientList","categories","category"]}],"ui":{},"namespace":["logos","_body","ClientList","categories"],"searchable":true,"uid":false},{"type":"object","name":"clients","label":"Clients list","list":true,"ui":{"previewSrc":"/images/thumbs/tina/clients-list.jpg"},"fields":[{"type":"string","name":"name","label":"Name","namespace":["industry","_body","ClientList","clients","name"]},{"type":"image","name":"logo","label":"Logo","namespace":["industry","_body","ClientList","clients","logo"]},{"type":"string","name":"logoUrl","label":"Logo URL","namespace":["industry","_body","ClientList","clients","logoUrl"]},{"type":"rich-text","name":"content","label":"Content","templates":[{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["marketing","mediaComponent","ClientList","clients","content","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["marketing","mediaComponent","ClientList","clients","content","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["marketing","mediaComponent","ClientList","clients","content","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["marketing","mediaComponent","ClientList","clients","content","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["marketing","mediaComponent","ClientList","clients","content","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["marketing","mediaComponent","ClientList","clients","content","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["marketing","mediaComponent","ClientList","clients","content","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["marketing","mediaComponent","ClientList","clients","content","UtilityButton","openInNewTab"]}],"namespace":["live","subtitle","ClientList","clients","content","UtilityButton"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["marketing","mediaComponent","ClientList","clients","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["marketing","mediaComponent","ClientList","clients","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["marketing","mediaComponent","ClientList","clients","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["marketing","mediaComponent","ClientList","clients","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["marketing","mediaComponent","ClientList","clients","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["marketing","mediaComponent","ClientList","clients","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["marketing","mediaComponent","ClientList","clients","content","VideoEmbed","duration"]}],"namespace":["live","subtitle","ClientList","clients","content","VideoEmbed"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["marketing","mediaComponent","ClientList","clients","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["marketing","mediaComponent","ClientList","clients","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["marketing","mediaComponent","ClientList","clients","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["marketing","mediaComponent","ClientList","clients","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["marketing","mediaComponent","ClientList","clients","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["marketing","mediaComponent","ClientList","clients","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["marketing","mediaComponent","ClientList","clients","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["marketing","mediaComponent","ClientList","clients","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["marketing","mediaComponent","ClientList","clients","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["marketing","mediaComponent","ClientList","clients","content","CustomImage","sizes"]}],"namespace":["live","subtitle","ClientList","clients","content","CustomImage"]},{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["marketing","mediaComponent","ClientList","clients","content","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["marketing","mediaComponent","ClientList","clients","content","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","map","ClientList","clients","content","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","map","ClientList","clients","content","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","map","ClientList","clients","content","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","map","ClientList","clients","content","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","map","ClientList","clients","content","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","map","ClientList","clients","content","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","map","ClientList","clients","content","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","map","ClientList","clients","content","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","map","ClientList","clients","content","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","map","ClientList","clients","content","ContentCard","content","CustomImage","sizes"]}],"namespace":["offices","aboutUs","ClientList","clients","content","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["offices","map","ClientList","clients","content","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["offices","map","ClientList","clients","content","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["offices","map","ClientList","clients","content","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["offices","map","ClientList","clients","content","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["offices","map","ClientList","clients","content","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["offices","aboutUs","ClientList","clients","content","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","map","ClientList","clients","content","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","map","ClientList","clients","content","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","map","ClientList","clients","content","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","map","ClientList","clients","content","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","map","ClientList","clients","content","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","map","ClientList","clients","content","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","map","ClientList","clients","content","ContentCard","content","VideoEmbed","duration"]}],"namespace":["offices","aboutUs","ClientList","clients","content","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","map","ClientList","clients","content","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["offices","map","ClientList","clients","content","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","directions","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["offices","directions","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","directions","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["offices","directions","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["offices","directions","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["offices","map","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["offices","aboutUs","ClientList","clients","content","ContentCard","content","ColorBlock"]}],"namespace":["marketing","mediaComponent","ClientList","clients","content","ContentCard","content"]}],"namespace":["live","subtitle","ClientList","clients","content","ContentCard"]}],"namespace":["industry","_body","ClientList","clients","content"]},{"type":"string","name":"caseStudyUrl","label":"Case study URL","namespace":["industry","_body","ClientList","clients","caseStudyUrl"]},{"type":"object","name":"categories","label":"Categories","list":true,"ui":{},"fields":[{"type":"reference","name":"category","label":"Category","collections":["clientCategories"],"namespace":["live","subtitle","ClientList","clients","categories","category"]}],"namespace":["industry","_body","ClientList","clients","categories"]}],"namespace":["logos","_body","ClientList","clients"],"searchable":true,"uid":false}],"namespace":["logos","_body","ClientList"]},{"name":"ClientLogos","label":"Client Logos","ui":{"previewSrc":"/images/thumbs/tina/client-logos.jpg"},"fields":[{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["logos","_body","ClientLogos","altText"],"searchable":true,"uid":false}],"namespace":["logos","_body","ClientLogos"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["logos","_body","ColorBlock","title"],"searchable":true,"uid":false},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["logos","_body","ColorBlock","subTitle"],"searchable":true,"uid":false},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["industry","_body","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["industry","_body","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["industry","_body","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["industry","_body","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["industry","_body","ColorBlock","colorRow","caption"]}],"namespace":["logos","_body","ColorBlock","colorRow"],"searchable":true,"uid":false}],"namespace":["logos","_body","ColorBlock"]},{"name":"ColorPalette","label":"Color Palette","ui":{"previewSrc":"/images/thumbs/tina/color-palette.jpg"},"fields":[{"type":"string","label":"Name","name":"name","namespace":["logos","_body","ColorPalette","name"],"searchable":true,"uid":false}],"namespace":["logos","_body","ColorPalette"]},{"name":"Content","label":"Content","ui":{"previewSrc":"/images/thumbs/tina/content.jpg","defaultItem":{"body":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["logos","_body","Content","title"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["live","subtitle","Content","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["live","subtitle","Content","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["live","subtitle","Content","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["live","subtitle","Content","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["live","subtitle","Content","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["live","subtitle","Content","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["live","subtitle","Content","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["live","subtitle","Content","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["live","subtitle","Content","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["live","subtitle","Content","content","CustomImage","sizes"]}],"namespace":["industry","_body","Content","content","CustomImage"]},{"name":"ClientLogos","label":"Client Logos","ui":{"previewSrc":"/images/thumbs/tina/client-logos.jpg"},"fields":[{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["live","subtitle","Content","content","ClientLogos","altText"]}],"namespace":["industry","_body","Content","content","ClientLogos"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["live","subtitle","Content","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["live","subtitle","Content","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["live","subtitle","Content","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["live","subtitle","Content","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["live","subtitle","Content","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["live","subtitle","Content","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["live","subtitle","Content","content","VideoEmbed","duration"]}],"namespace":["industry","_body","Content","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["live","subtitle","Content","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["live","subtitle","Content","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["marketing","mediaComponent","Content","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["marketing","mediaComponent","Content","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["marketing","mediaComponent","Content","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["marketing","mediaComponent","Content","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["marketing","mediaComponent","Content","content","ColorBlock","colorRow","caption"]}],"namespace":["live","subtitle","Content","content","ColorBlock","colorRow"]}],"namespace":["industry","_body","Content","content","ColorBlock"]}],"namespace":["logos","_body","Content","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Container Padding","name":"paddingClass","options":["Mobile: No Padding","Mobile: No Top and Horizontal Padding"],"namespace":["logos","_body","Content","paddingClass"],"searchable":true,"uid":false},{"type":"string","label":"Text size","name":"size","options":[{"label":"small","value":"sm"},{"label":"normal","value":"base"},{"label":"large","value":"lg"},{"label":"extra large","value":"xl"},{"label":"2x large","value":"2xl"}],"namespace":["logos","_body","Content","size"],"searchable":true,"uid":false},{"type":"string","label":"Align","name":"align","options":[{"label":"Left","value":"left"},{"label":"Center","value":"center"},{"label":"Right","value":"right"}],"namespace":["logos","_body","Content","align"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["logos","_body","Content","backgroundColor"],"searchable":true,"uid":false}],"namespace":["logos","_body","Content"]},{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["logos","_body","ContentCard","prose"],"searchable":true,"uid":false},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["logos","_body","ContentCard","centerAlignedText"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["live","subtitle","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["live","subtitle","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["live","subtitle","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["live","subtitle","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["live","subtitle","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["live","subtitle","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["live","subtitle","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["live","subtitle","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["live","subtitle","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["live","subtitle","ContentCard","content","CustomImage","sizes"]}],"namespace":["industry","_body","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["live","subtitle","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["live","subtitle","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["live","subtitle","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["live","subtitle","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["live","subtitle","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["industry","_body","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["live","subtitle","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["live","subtitle","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["live","subtitle","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["live","subtitle","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["live","subtitle","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["live","subtitle","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["live","subtitle","ContentCard","content","VideoEmbed","duration"]}],"namespace":["industry","_body","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["live","subtitle","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["live","subtitle","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["marketing","mediaComponent","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["marketing","mediaComponent","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["marketing","mediaComponent","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["marketing","mediaComponent","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["marketing","mediaComponent","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["live","subtitle","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["industry","_body","ContentCard","content","ColorBlock"]}],"namespace":["logos","_body","ContentCard","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["logos","_body","ContentCard"]},{"name":"CustomDownloadButton","label":"Custom Download Button","ui":{"previewSrc":"/images/thumbs/tina/custom-download-button.jpg"},"fields":[{"type":"string","label":"Text","name":"btnText","namespace":["logos","_body","CustomDownloadButton","btnText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"btnLink","namespace":["logos","_body","CustomDownloadButton","btnLink"],"searchable":true,"uid":false}],"namespace":["logos","_body","CustomDownloadButton"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["logos","_body","CustomImage","src"],"searchable":false,"uid":false},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["logos","_body","CustomImage","altText"],"searchable":true,"uid":false},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["logos","_body","CustomImage","alignment"],"searchable":true,"uid":false},{"type":"number","label":"Height","name":"height","required":true,"namespace":["logos","_body","CustomImage","height"],"searchable":true,"uid":false},{"type":"number","label":"Width","name":"width","required":true,"namespace":["logos","_body","CustomImage","width"],"searchable":true,"uid":false},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["logos","_body","CustomImage","link"],"searchable":true,"uid":false},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["logos","_body","CustomImage","customClass"],"searchable":true,"uid":false},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["logos","_body","CustomImage","caption"],"searchable":true,"uid":false},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["logos","_body","CustomImage","captionColor"],"searchable":true,"uid":false},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["logos","_body","CustomImage","sizes"],"searchable":true,"uid":false}],"namespace":["logos","_body","CustomImage"]},{"name":"DomainFromQuery","label":"Domain from query","ui":{"previewSrc":"/images/thumbs/tina/domain-from-query.jpg"},"fields":[{"name":"title","label":"Title","type":"string","description":"This is a H1 heading","namespace":["logos","_body","DomainFromQuery","title"],"searchable":true,"uid":false},{"name":"showDomain","label":"Show domain name","type":"boolean","description":"Query param in URL must have key of 'domain'","namespace":["logos","_body","DomainFromQuery","showDomain"],"searchable":true,"uid":false}],"namespace":["logos","_body","DomainFromQuery"]},{"name":"DownloadBlock","label":"Download Block","ui":{"previewSrc":"/images/thumbs/tina/download-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["logos","_body","DownloadBlock","title"],"searchable":true,"uid":false},{"type":"object","label":"Downloads","name":"downloads","ui":{},"list":true,"fields":[{"type":"string","label":"Header","name":"header","namespace":["industry","_body","DownloadBlock","downloads","header"]},{"type":"image","label":"Image","name":"img","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","img","uploadDir"]},"namespace":["industry","_body","DownloadBlock","downloads","img"]},{"type":"string","label":"Image Background","name":"imgBackground","options":["black","grey","white","darkgrey","darkgreen"],"namespace":["industry","_body","DownloadBlock","downloads","imgBackground"]},{"type":"string","label":"First Link Text","name":"firstLinkText","description":"Defaults to PNG","namespace":["industry","_body","DownloadBlock","downloads","firstLinkText"]},{"type":"image","label":"First Link","name":"firstLink","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","firstLink","uploadDir"]},"namespace":["industry","_body","DownloadBlock","downloads","firstLink"]},{"type":"string","label":"Second Link Text","name":"secondLinkText","description":"Defaults to PDF","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","secondLinkText","uploadDir"]},"namespace":["industry","_body","DownloadBlock","downloads","secondLinkText"]},{"type":"image","label":"Second Link","name":"secondLink","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","secondLink","uploadDir"]},"namespace":["industry","_body","DownloadBlock","downloads","secondLink"]}],"namespace":["logos","_body","DownloadBlock","downloads"],"searchable":true,"uid":false},{"type":"boolean","label":"Bottom border","name":"bottomBorder","namespace":["logos","_body","DownloadBlock","bottomBorder"],"searchable":true,"uid":false}],"namespace":["logos","_body","DownloadBlock"]},{"name":"DynamicColumns","label":"Dynamic Column Layout","fields":[{"type":"rich-text","label":"Column text body","name":"colBody","required":true,"namespace":["logos","_body","DynamicColumns","colBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"number","label":"Number of columns","name":"colCount","required":true,"ui":{},"namespace":["logos","_body","DynamicColumns","colCount"],"searchable":true,"uid":false}],"namespace":["logos","_body","DynamicColumns"]},{"name":"EventBooking","label":"Events Booking","ui":{"previewSrc":"/images/thumbs/tina/events-booking.jpg"},"fields":[{"type":"number","label":"Duration (In Days)","name":"eventDurationInDays","required":true,"namespace":["logos","_body","EventBooking","eventDurationInDays"],"searchable":true,"uid":false},{"type":"number","label":"Price","name":"price","required":true,"namespace":["logos","_body","EventBooking","price"],"searchable":true,"uid":false},{"type":"number","label":"Discount Price","name":"discountPrice","namespace":["logos","_body","EventBooking","discountPrice"],"searchable":true,"uid":false},{"type":"string","name":"gstText","label":"Select GST Option","options":["inc GST","+ GST"],"required":true,"namespace":["logos","_body","EventBooking","gstText"],"searchable":true,"uid":false},{"type":"string","label":"Discount Note","name":"discountNote","namespace":["logos","_body","EventBooking","discountNote"],"searchable":true,"uid":false},{"type":"object","label":"Event","name":"eventList","ui":{},"list":true,"fields":[{"type":"string","label":"City","name":"city","namespace":["industry","_body","EventBooking","eventList","city"]},{"type":"datetime","label":"Start Date","name":"date","ui":{},"namespace":["industry","_body","EventBooking","eventList","date"]},{"type":"string","label":"Booking URL","name":"bookingURL","namespace":["industry","_body","EventBooking","eventList","bookingURL"]},{"type":"reference","label":"Location","name":"location","collections":["locations"],"namespace":["industry","_body","EventBooking","eventList","location"]}],"namespace":["logos","_body","EventBooking","eventList"],"searchable":true,"uid":false}],"namespace":["logos","_body","EventBooking"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["live","subtitle","EventLink","content","Flag","country"]}],"namespace":["industry","_body","EventLink","content","Flag"]}],"namespace":["logos","_body","EventLink","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Link","name":"link","namespace":["logos","_body","EventLink","link"],"searchable":true,"uid":false},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["logos","_body","EventLink","eventThumbnail"],"searchable":false,"uid":false},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["logos","_body","EventLink","thumbnailAlt"],"searchable":true,"uid":false}],"namespace":["logos","_body","EventLink"]},{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["logos","_body","Flag","country"],"searchable":true,"uid":false}],"namespace":["logos","_body","Flag"]},{"name":"FixedColumns","label":"Fixed Column Layout (2 columns)","ui":{"previewSrc":"/images/thumbs/tina/fixed-columns.jpg"},"fields":[{"type":"rich-text","label":"Header Section (Optional)","name":"headerSection","namespace":["logos","_body","FixedColumns","headerSection"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"First column text","name":"firstColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["live","subtitle","FixedColumns","firstColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["live","subtitle","FixedColumns","firstColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","aboutUs","FixedColumns","firstColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","aboutUs","FixedColumns","firstColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","aboutUs","FixedColumns","firstColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","aboutUs","FixedColumns","firstColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","aboutUs","FixedColumns","firstColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","aboutUs","FixedColumns","firstColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","aboutUs","FixedColumns","firstColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","aboutUs","FixedColumns","firstColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","aboutUs","FixedColumns","firstColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","aboutUs","FixedColumns","firstColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["marketing","mediaComponent","FixedColumns","firstColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["offices","aboutUs","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["offices","aboutUs","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["offices","aboutUs","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["offices","aboutUs","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["offices","aboutUs","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["marketing","mediaComponent","FixedColumns","firstColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","aboutUs","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","aboutUs","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","aboutUs","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","aboutUs","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","aboutUs","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","aboutUs","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","aboutUs","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["marketing","mediaComponent","FixedColumns","firstColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","aboutUs","FixedColumns","firstColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["offices","aboutUs","FixedColumns","firstColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","map","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["offices","map","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","map","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["offices","map","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["offices","map","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["offices","aboutUs","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["marketing","mediaComponent","FixedColumns","firstColBody","ContentCard","content","ColorBlock"]}],"namespace":["live","subtitle","FixedColumns","firstColBody","ContentCard","content"]}],"namespace":["industry","_body","FixedColumns","firstColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["live","subtitle","FixedColumns","firstColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["live","subtitle","FixedColumns","firstColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["live","subtitle","FixedColumns","firstColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["live","subtitle","FixedColumns","firstColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["live","subtitle","FixedColumns","firstColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["live","subtitle","FixedColumns","firstColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["live","subtitle","FixedColumns","firstColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["live","subtitle","FixedColumns","firstColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["live","subtitle","FixedColumns","firstColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["live","subtitle","FixedColumns","firstColBody","CustomImage","sizes"]}],"namespace":["industry","_body","FixedColumns","firstColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["offices","aboutUs","FixedColumns","firstColBody","EventLink","content","Flag","country"]}],"namespace":["marketing","mediaComponent","FixedColumns","firstColBody","EventLink","content","Flag"]}],"namespace":["live","subtitle","FixedColumns","firstColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["live","subtitle","FixedColumns","firstColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["live","subtitle","FixedColumns","firstColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["live","subtitle","FixedColumns","firstColBody","EventLink","thumbnailAlt"]}],"namespace":["industry","_body","FixedColumns","firstColBody","EventLink"]}],"namespace":["logos","_body","FixedColumns","firstColBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"Second column text","name":"secondColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["live","subtitle","FixedColumns","secondColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["live","subtitle","FixedColumns","secondColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","aboutUs","FixedColumns","secondColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","aboutUs","FixedColumns","secondColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","aboutUs","FixedColumns","secondColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","aboutUs","FixedColumns","secondColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","aboutUs","FixedColumns","secondColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","aboutUs","FixedColumns","secondColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","aboutUs","FixedColumns","secondColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","aboutUs","FixedColumns","secondColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","aboutUs","FixedColumns","secondColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","aboutUs","FixedColumns","secondColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["marketing","mediaComponent","FixedColumns","secondColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["offices","aboutUs","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["offices","aboutUs","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["offices","aboutUs","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["offices","aboutUs","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["offices","aboutUs","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["marketing","mediaComponent","FixedColumns","secondColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","aboutUs","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","aboutUs","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","aboutUs","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","aboutUs","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","aboutUs","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","aboutUs","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","aboutUs","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["marketing","mediaComponent","FixedColumns","secondColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","aboutUs","FixedColumns","secondColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["offices","aboutUs","FixedColumns","secondColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","map","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["offices","map","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","map","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["offices","map","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["offices","map","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["offices","aboutUs","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["marketing","mediaComponent","FixedColumns","secondColBody","ContentCard","content","ColorBlock"]}],"namespace":["live","subtitle","FixedColumns","secondColBody","ContentCard","content"]}],"namespace":["industry","_body","FixedColumns","secondColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["live","subtitle","FixedColumns","secondColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["live","subtitle","FixedColumns","secondColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["live","subtitle","FixedColumns","secondColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["live","subtitle","FixedColumns","secondColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["live","subtitle","FixedColumns","secondColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["live","subtitle","FixedColumns","secondColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["live","subtitle","FixedColumns","secondColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["live","subtitle","FixedColumns","secondColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["live","subtitle","FixedColumns","secondColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["live","subtitle","FixedColumns","secondColBody","CustomImage","sizes"]}],"namespace":["industry","_body","FixedColumns","secondColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["offices","aboutUs","FixedColumns","secondColBody","EventLink","content","Flag","country"]}],"namespace":["marketing","mediaComponent","FixedColumns","secondColBody","EventLink","content","Flag"]}],"namespace":["live","subtitle","FixedColumns","secondColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["live","subtitle","FixedColumns","secondColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["live","subtitle","FixedColumns","secondColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["live","subtitle","FixedColumns","secondColBody","EventLink","thumbnailAlt"]}],"namespace":["industry","_body","FixedColumns","secondColBody","EventLink"]}],"namespace":["logos","_body","FixedColumns","secondColBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["logos","_body","FixedColumns"]},{"name":"FixedTabsLayout","label":"Fixed Tabs Layout","ui":{"previewSrc":"/images/thumbs/tina/fixed-tabs-layout.jpg"},"fields":[{"type":"string","name":"firstTab","label":"First Tab","namespace":["logos","_body","FixedTabsLayout","firstTab"],"searchable":true,"uid":false},{"type":"rich-text","name":"firstHeading","label":"First Heading","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["live","subtitle","FixedTabsLayout","firstHeading","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["live","subtitle","FixedTabsLayout","firstHeading","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["live","subtitle","FixedTabsLayout","firstHeading","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["live","subtitle","FixedTabsLayout","firstHeading","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["live","subtitle","FixedTabsLayout","firstHeading","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["live","subtitle","FixedTabsLayout","firstHeading","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["live","subtitle","FixedTabsLayout","firstHeading","VideoEmbed","duration"]}],"namespace":["industry","_body","FixedTabsLayout","firstHeading","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["live","subtitle","FixedTabsLayout","firstHeading","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["live","subtitle","FixedTabsLayout","firstHeading","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["live","subtitle","FixedTabsLayout","firstHeading","BookingButton","buttonSubtitle"]}],"namespace":["industry","_body","FixedTabsLayout","firstHeading","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["live","subtitle","FixedTabsLayout","firstHeading","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["marketing","mediaComponent","FixedTabsLayout","firstHeading","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["marketing","mediaComponent","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["marketing","mediaComponent","FixedTabsLayout","firstHeading","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["marketing","mediaComponent","FixedTabsLayout","firstHeading","ExpertBlock","expertList","skills"]}],"namespace":["live","subtitle","FixedTabsLayout","firstHeading","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["marketing","mediaComponent","FixedTabsLayout","firstHeading","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["marketing","mediaComponent","FixedTabsLayout","firstHeading","ExpertBlock","link","url"]}],"namespace":["live","subtitle","FixedTabsLayout","firstHeading","ExpertBlock","link"]}],"namespace":["industry","_body","FixedTabsLayout","firstHeading","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["marketing","mediaComponent","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["marketing","mediaComponent","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["marketing","mediaComponent","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["offices","aboutUs","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["offices","aboutUs","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["offices","aboutUs","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["marketing","mediaComponent","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["live","subtitle","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["industry","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["live","subtitle","FixedTabsLayout","firstHeading","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["live","subtitle","FixedTabsLayout","firstHeading","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["live","subtitle","FixedTabsLayout","firstHeading","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["live","subtitle","FixedTabsLayout","firstHeading","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["live","subtitle","FixedTabsLayout","firstHeading","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["live","subtitle","FixedTabsLayout","firstHeading","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["live","subtitle","FixedTabsLayout","firstHeading","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["live","subtitle","FixedTabsLayout","firstHeading","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["live","subtitle","FixedTabsLayout","firstHeading","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["live","subtitle","FixedTabsLayout","firstHeading","CustomImage","sizes"]}],"namespace":["industry","_body","FixedTabsLayout","firstHeading","CustomImage"]}],"namespace":["logos","_body","FixedTabsLayout","firstHeading"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","name":"firstBody","label":"First Body","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["live","subtitle","FixedTabsLayout","firstBody","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["live","subtitle","FixedTabsLayout","firstBody","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["live","subtitle","FixedTabsLayout","firstBody","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["live","subtitle","FixedTabsLayout","firstBody","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["live","subtitle","FixedTabsLayout","firstBody","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["live","subtitle","FixedTabsLayout","firstBody","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["live","subtitle","FixedTabsLayout","firstBody","VideoEmbed","duration"]}],"namespace":["industry","_body","FixedTabsLayout","firstBody","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["live","subtitle","FixedTabsLayout","firstBody","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["live","subtitle","FixedTabsLayout","firstBody","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["live","subtitle","FixedTabsLayout","firstBody","BookingButton","buttonSubtitle"]}],"namespace":["industry","_body","FixedTabsLayout","firstBody","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["live","subtitle","FixedTabsLayout","firstBody","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["marketing","mediaComponent","FixedTabsLayout","firstBody","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["marketing","mediaComponent","FixedTabsLayout","firstBody","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["marketing","mediaComponent","FixedTabsLayout","firstBody","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["marketing","mediaComponent","FixedTabsLayout","firstBody","ExpertBlock","expertList","skills"]}],"namespace":["live","subtitle","FixedTabsLayout","firstBody","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["marketing","mediaComponent","FixedTabsLayout","firstBody","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["marketing","mediaComponent","FixedTabsLayout","firstBody","ExpertBlock","link","url"]}],"namespace":["live","subtitle","FixedTabsLayout","firstBody","ExpertBlock","link"]}],"namespace":["industry","_body","FixedTabsLayout","firstBody","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["marketing","mediaComponent","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["marketing","mediaComponent","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["marketing","mediaComponent","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["offices","aboutUs","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["offices","aboutUs","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["offices","aboutUs","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["marketing","mediaComponent","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["live","subtitle","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["industry","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["live","subtitle","FixedTabsLayout","firstBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["live","subtitle","FixedTabsLayout","firstBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["live","subtitle","FixedTabsLayout","firstBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["live","subtitle","FixedTabsLayout","firstBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["live","subtitle","FixedTabsLayout","firstBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["live","subtitle","FixedTabsLayout","firstBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["live","subtitle","FixedTabsLayout","firstBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["live","subtitle","FixedTabsLayout","firstBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["live","subtitle","FixedTabsLayout","firstBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["live","subtitle","FixedTabsLayout","firstBody","CustomImage","sizes"]}],"namespace":["industry","_body","FixedTabsLayout","firstBody","CustomImage"]}],"namespace":["logos","_body","FixedTabsLayout","firstBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","name":"secondTab","label":"Second Tab","namespace":["logos","_body","FixedTabsLayout","secondTab"],"searchable":true,"uid":false},{"type":"rich-text","name":"secondHeading","label":"Second Heading","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["live","subtitle","FixedTabsLayout","secondHeading","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["live","subtitle","FixedTabsLayout","secondHeading","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["live","subtitle","FixedTabsLayout","secondHeading","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["live","subtitle","FixedTabsLayout","secondHeading","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["live","subtitle","FixedTabsLayout","secondHeading","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["live","subtitle","FixedTabsLayout","secondHeading","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["live","subtitle","FixedTabsLayout","secondHeading","VideoEmbed","duration"]}],"namespace":["industry","_body","FixedTabsLayout","secondHeading","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["live","subtitle","FixedTabsLayout","secondHeading","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["live","subtitle","FixedTabsLayout","secondHeading","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["live","subtitle","FixedTabsLayout","secondHeading","BookingButton","buttonSubtitle"]}],"namespace":["industry","_body","FixedTabsLayout","secondHeading","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["live","subtitle","FixedTabsLayout","secondHeading","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["marketing","mediaComponent","FixedTabsLayout","secondHeading","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["marketing","mediaComponent","FixedTabsLayout","secondHeading","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["marketing","mediaComponent","FixedTabsLayout","secondHeading","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["marketing","mediaComponent","FixedTabsLayout","secondHeading","ExpertBlock","expertList","skills"]}],"namespace":["live","subtitle","FixedTabsLayout","secondHeading","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["marketing","mediaComponent","FixedTabsLayout","secondHeading","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["marketing","mediaComponent","FixedTabsLayout","secondHeading","ExpertBlock","link","url"]}],"namespace":["live","subtitle","FixedTabsLayout","secondHeading","ExpertBlock","link"]}],"namespace":["industry","_body","FixedTabsLayout","secondHeading","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["marketing","mediaComponent","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["marketing","mediaComponent","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["marketing","mediaComponent","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["offices","aboutUs","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["offices","aboutUs","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["offices","aboutUs","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["marketing","mediaComponent","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["live","subtitle","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["industry","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["live","subtitle","FixedTabsLayout","secondHeading","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["live","subtitle","FixedTabsLayout","secondHeading","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["live","subtitle","FixedTabsLayout","secondHeading","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["live","subtitle","FixedTabsLayout","secondHeading","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["live","subtitle","FixedTabsLayout","secondHeading","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["live","subtitle","FixedTabsLayout","secondHeading","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["live","subtitle","FixedTabsLayout","secondHeading","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["live","subtitle","FixedTabsLayout","secondHeading","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["live","subtitle","FixedTabsLayout","secondHeading","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["live","subtitle","FixedTabsLayout","secondHeading","CustomImage","sizes"]}],"namespace":["industry","_body","FixedTabsLayout","secondHeading","CustomImage"]}],"namespace":["logos","_body","FixedTabsLayout","secondHeading"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","name":"secondBody","label":"Second Body","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["live","subtitle","FixedTabsLayout","secondBody","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["live","subtitle","FixedTabsLayout","secondBody","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["live","subtitle","FixedTabsLayout","secondBody","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["live","subtitle","FixedTabsLayout","secondBody","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["live","subtitle","FixedTabsLayout","secondBody","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["live","subtitle","FixedTabsLayout","secondBody","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["live","subtitle","FixedTabsLayout","secondBody","VideoEmbed","duration"]}],"namespace":["industry","_body","FixedTabsLayout","secondBody","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["live","subtitle","FixedTabsLayout","secondBody","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["live","subtitle","FixedTabsLayout","secondBody","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["live","subtitle","FixedTabsLayout","secondBody","BookingButton","buttonSubtitle"]}],"namespace":["industry","_body","FixedTabsLayout","secondBody","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["live","subtitle","FixedTabsLayout","secondBody","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["marketing","mediaComponent","FixedTabsLayout","secondBody","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["marketing","mediaComponent","FixedTabsLayout","secondBody","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["marketing","mediaComponent","FixedTabsLayout","secondBody","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["marketing","mediaComponent","FixedTabsLayout","secondBody","ExpertBlock","expertList","skills"]}],"namespace":["live","subtitle","FixedTabsLayout","secondBody","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["marketing","mediaComponent","FixedTabsLayout","secondBody","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["marketing","mediaComponent","FixedTabsLayout","secondBody","ExpertBlock","link","url"]}],"namespace":["live","subtitle","FixedTabsLayout","secondBody","ExpertBlock","link"]}],"namespace":["industry","_body","FixedTabsLayout","secondBody","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["marketing","mediaComponent","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["marketing","mediaComponent","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["marketing","mediaComponent","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["offices","aboutUs","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["offices","aboutUs","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["offices","aboutUs","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["marketing","mediaComponent","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["live","subtitle","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["industry","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["live","subtitle","FixedTabsLayout","secondBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["live","subtitle","FixedTabsLayout","secondBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["live","subtitle","FixedTabsLayout","secondBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["live","subtitle","FixedTabsLayout","secondBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["live","subtitle","FixedTabsLayout","secondBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["live","subtitle","FixedTabsLayout","secondBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["live","subtitle","FixedTabsLayout","secondBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["live","subtitle","FixedTabsLayout","secondBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["live","subtitle","FixedTabsLayout","secondBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["live","subtitle","FixedTabsLayout","secondBody","CustomImage","sizes"]}],"namespace":["industry","_body","FixedTabsLayout","secondBody","CustomImage"]}],"namespace":["logos","_body","FixedTabsLayout","secondBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["logos","_body","FixedTabsLayout"]},{"label":"Google Maps","name":"GoogleMaps","ui":{"previewSrc":"/images/thumbs/tina/google-maps.jpg"},"fields":[{"type":"string","label":"URL","name":"embedUrl","required":true,"namespace":["logos","_body","GoogleMaps","embedUrl"],"searchable":true,"uid":false},{"type":"string","label":"Width","name":"embedWidth","namespace":["logos","_body","GoogleMaps","embedWidth"],"searchable":true,"uid":false},{"type":"string","label":"Height","name":"embedHeight","namespace":["logos","_body","GoogleMaps","embedHeight"],"searchable":true,"uid":false}],"namespace":["logos","_body","GoogleMaps"]},{"label":"Grid Layout","name":"GridLayout","ui":{"previewSrc":"/images/thumbs/tina/grid-layout.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["logos","_body","GridLayout","title"],"searchable":true,"uid":false},{"type":"object","list":true,"label":"Grid Items","name":"grids","ui":{},"fields":[{"type":"string","label":"Grid Title","name":"gridTitle","namespace":["industry","_body","GridLayout","grids","gridTitle"]},{"type":"boolean","label":"Show Grid Title","name":"showGridTitle","namespace":["industry","_body","GridLayout","grids","showGridTitle"]},{"type":"boolean","label":"Centered Grid Title","name":"centeredGridTitle","namespace":["industry","_body","GridLayout","grids","centeredGridTitle"]},{"type":"boolean","label":"Show Header Divider","name":"showHeaderDivider","namespace":["industry","_body","GridLayout","grids","showHeaderDivider"]},{"type":"boolean","label":"Offset Grid Start","name":"offsetGridStart","namespace":["industry","_body","GridLayout","grids","offsetGridStart"]},{"type":"object","label":"Blocks","name":"blocks","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["live","subtitle","GridLayout","grids","blocks","title"]},{"type":"boolean","label":"Show Title","name":"showTitle","namespace":["live","subtitle","GridLayout","grids","blocks","showTitle"]},{"type":"image","label":"Image","name":"image","uploadDir":{"namespace":["page","beforeBody","GridLayout","grids","blocks","image","uploadDir"]},"namespace":["live","subtitle","GridLayout","grids","blocks","image"]},{"type":"image","label":"Related Image","name":"relatedImage","uploadDir":{"namespace":["page","beforeBody","GridLayout","grids","blocks","relatedImage","uploadDir"]},"namespace":["live","subtitle","GridLayout","grids","blocks","relatedImage"]},{"type":"rich-text","name":"linkContent","label":"Link Content","templates":[{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["offices","aboutUs","GridLayout","grids","blocks","linkContent","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["offices","aboutUs","GridLayout","grids","blocks","linkContent","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["offices","aboutUs","GridLayout","grids","blocks","linkContent","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["offices","aboutUs","GridLayout","grids","blocks","linkContent","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["offices","aboutUs","GridLayout","grids","blocks","linkContent","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["offices","aboutUs","GridLayout","grids","blocks","linkContent","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["offices","aboutUs","GridLayout","grids","blocks","linkContent","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["offices","aboutUs","GridLayout","grids","blocks","linkContent","UtilityButton","openInNewTab"]}],"namespace":["marketing","mediaComponent","GridLayout","grids","blocks","linkContent","UtilityButton"]}],"namespace":["live","subtitle","GridLayout","grids","blocks","linkContent"]}],"namespace":["industry","_body","GridLayout","grids","blocks"]}],"namespace":["logos","_body","GridLayout","grids"],"searchable":true,"uid":false}],"namespace":["logos","_body","GridLayout"]},{"name":"Hero","label":"Hero","ui":{"previewSrc":"/blocks/hero.png","defaultItem":{"tagline":"Here's some text above the other text","headline":"This Big Text is Totally Awesome","text":"Phasellus scelerisque, libero eu finibus rutrum, risus risus accumsan libero, nec molestie urna dui a leo."}},"fields":[{"type":"string","label":"Tagline","name":"tagline","namespace":["logos","_body","Hero","tagline"],"searchable":true,"uid":false},{"type":"string","label":"Headline","name":"headline","namespace":["logos","_body","Hero","headline"],"searchable":true,"uid":false},{"label":"Text","name":"text","type":"rich-text","namespace":["logos","_body","Hero","text"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"label":"Actions","name":"actions","type":"object","list":true,"ui":{"defaultItem":{"label":"Action Label","type":"button","icon":true,"link":"/"}},"fields":[{"label":"Label","name":"label","type":"string","namespace":["industry","_body","Hero","actions","label"]},{"label":"Type","name":"type","type":"string","options":[{"label":"Button","value":"button"},{"label":"Link","value":"link"}],"namespace":["industry","_body","Hero","actions","type"]},{"label":"Icon","name":"icon","type":"boolean","namespace":["industry","_body","Hero","actions","icon"]},{"label":"Link","name":"link","type":"string","namespace":["industry","_body","Hero","actions","link"]}],"namespace":["logos","_body","Hero","actions"],"searchable":true,"uid":false},{"type":"object","label":"Image","name":"image","fields":[{"name":"src","label":"Image Source","type":"image","namespace":["industry","_body","Hero","image","src"]},{"name":"alt","label":"Alt Text","type":"string","namespace":["industry","_body","Hero","image","alt"]}],"namespace":["logos","_body","Hero","image"],"searchable":true,"uid":false},{"type":"string","label":"Color","name":"color","options":[{"label":"Default","value":"default"},{"label":"Tint","value":"tint"},{"label":"Primary","value":"primary"}],"namespace":["logos","_body","Hero","color"],"searchable":true,"uid":false}],"namespace":["logos","_body","Hero"]},{"name":"HorizontalCard","label":"Horizontal Card","ui":{"previewSrc":"/images/thumbs/tina/horizontal-card.jpg"},"fields":[{"type":"object","label":"Cards","name":"cardList","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["industry","_body","HorizontalCard","cardList","title"]},{"type":"rich-text","label":"Content","name":"content","namespace":["industry","_body","HorizontalCard","cardList","content"]},{"type":"image","label":"Thumbnail","name":"thumbnail","uploadDir":{"namespace":["page","beforeBody","HorizontalCard","cardList","thumbnail","uploadDir"]},"namespace":["industry","_body","HorizontalCard","cardList","thumbnail"]},{"type":"string","label":"Link","name":"link","namespace":["industry","_body","HorizontalCard","cardList","link"]}],"namespace":["logos","_body","HorizontalCard","cardList"],"searchable":true,"uid":false},{"type":"object","label":"Button","name":"button","fields":[{"type":"string","label":"Text","name":"text","namespace":["industry","_body","HorizontalCard","button","text"]},{"type":"string","label":"Link","name":"link","namespace":["industry","_body","HorizontalCard","button","link"]}],"namespace":["logos","_body","HorizontalCard","button"],"searchable":true,"uid":false}],"namespace":["logos","_body","HorizontalCard"]},{"name":"InternalCarousel","label":"Internal Carousel","ui":{"previewSrc":"/images/thumbs/tina/internal-carousel.jpg"},"fields":[{"label":"Images","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Image description"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["industry","_body","InternalCarousel","items","label"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","InternalCarousel","items","imgSrc","uploadDir"]},"namespace":["industry","_body","InternalCarousel","items","imgSrc"]}],"namespace":["logos","_body","InternalCarousel","items"],"searchable":true,"uid":false},{"type":"string","label":"Header","name":"header","namespace":["logos","_body","InternalCarousel","header"],"searchable":true,"uid":false},{"type":"rich-text","label":"Text","name":"paragraph","isBody":false,"namespace":["logos","_body","InternalCarousel","paragraph"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Website","name":"website","namespace":["logos","_body","InternalCarousel","website"],"searchable":true,"uid":false},{"type":"object","label":"Technologies","name":"technologies","list":true,"ui":{},"fields":[{"type":"string","label":"Name","name":"name","namespace":["industry","_body","InternalCarousel","technologies","name"]}],"namespace":["logos","_body","InternalCarousel","technologies"],"searchable":true,"uid":false},{"type":"string","label":"Case Study","name":"caseStudyUrl","namespace":["logos","_body","InternalCarousel","caseStudyUrl"],"searchable":true,"uid":false},{"type":"string","label":"Video URL","name":"videoUrl","namespace":["logos","_body","InternalCarousel","videoUrl"],"searchable":true,"uid":false}],"namespace":["logos","_body","InternalCarousel"]},{"label":"Join As Presenter","name":"joinAsPresenter","fields":[{"label":"Learn More Link","name":"link","type":"string","namespace":["logos","_body","joinAsPresenter","link"],"searchable":true,"uid":false},{"label":"Image","name":"img","type":"image","namespace":["logos","_body","joinAsPresenter","img"],"searchable":false,"uid":false}],"namespace":["logos","_body","joinAsPresenter"]},{"label":"Join Github","name":"joinGithub","ui":{"previewSrc":"/images/thumbs/tina/join-github.jpg"},"fields":[{"label":"Title","name":"title","type":"string","namespace":["logos","_body","joinGithub","title"],"searchable":true,"uid":false},{"label":"Join Github Link","name":"link","type":"string","namespace":["logos","_body","joinGithub","link"],"searchable":true,"uid":false}],"namespace":["logos","_body","joinGithub"]},{"name":"JotFormEmbed","label":"JotForm Embed","ui":{"previewSrc":"/images/thumbs/tina/jotform-embed.jpg"},"fields":[{"type":"string","name":"jotFormId","label":"JotForm Id","required":true,"namespace":["logos","_body","JotFormEmbed","jotFormId"],"searchable":true,"uid":false},{"type":"string","label":"Button Text","name":"buttonText","namespace":["logos","_body","JotFormEmbed","buttonText"],"searchable":true,"uid":false},{"type":"string","name":"containerClass","label":"Container Class","namespace":["logos","_body","JotFormEmbed","containerClass"],"searchable":true,"uid":false},{"type":"string","label":"Button Class","name":"buttonClass","namespace":["logos","_body","JotFormEmbed","buttonClass"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","namespace":["logos","_body","JotFormEmbed","animated"],"searchable":true,"uid":false}],"namespace":["logos","_body","JotFormEmbed"]},{"name":"LatestTech","label":"Latest Tech","ui":{"previewSrc":"/images/thumbs/tina/latest-tech.jpg"},"fields":[{"type":"reference","description":"Select a config file including a set of badges","collections":["userGroupGlobal"],"label":"Badges","name":"badges","namespace":["logos","_body","LatestTech","badges"],"searchable":true,"uid":false}],"namespace":["logos","_body","LatestTech"]},{"name":"LocationBlock","label":"Locations","ui":{"previewSrc":"/images/thumbs/tina/locations.jpg"},"fields":[{"type":"string","name":"title","label":"Title","namespace":["logos","_body","LocationBlock","title"],"searchable":true,"uid":false},{"type":"object","label":"Location List","name":"locationList","list":true,"ui":{},"fields":[{"type":"reference","collections":["locations"],"label":"Location","name":"location","namespace":["industry","_body","LocationBlock","locationList","location"]}],"namespace":["logos","_body","LocationBlock","locationList"],"searchable":true,"uid":false},{"type":"object","name":"chapelWebsite","label":"Chapel Website","fields":[{"type":"string","name":"title","label":"Text","namespace":["industry","_body","LocationBlock","chapelWebsite","title"]},{"type":"string","name":"URL","label":"URL","namespace":["industry","_body","LocationBlock","chapelWebsite","URL"]}],"namespace":["logos","_body","LocationBlock","chapelWebsite"],"searchable":true,"uid":false}],"namespace":["logos","_body","LocationBlock"]},{"name":"NewslettersTable","label":"Newsletters Table","ui":{"previewSrc":"/images/thumbs/tina/newsletters-table.jpg"},"fields":[{"type":"string","label":"Header text","name":"headerText","namespace":["logos","_body","NewslettersTable","headerText"],"searchable":true,"uid":false}],"namespace":["logos","_body","NewslettersTable"]},{"label":"Organizer","name":"organizer","fields":[{"type":"image","label":"Profile Image","name":"profileImg","namespace":["logos","_body","organizer","profileImg"],"searchable":false,"uid":false},{"type":"string","label":"Profile Link","name":"profileLink","namespace":["logos","_body","organizer","profileLink"],"searchable":true,"uid":false},{"type":"string","label":"Name","name":"name","namespace":["logos","_body","organizer","name"],"searchable":true,"uid":false},{"type":"string","label":"Position","name":"position","namespace":["logos","_body","organizer","position"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","namespace":["logos","_body","organizer","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["logos","_body","organizer"]},{"label":"Payment Block","name":"paymentBlock","ui":{"previewSrc":"/images/thumbs/tina/payment-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["logos","_body","paymentBlock","title"],"searchable":true,"uid":false},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["logos","_body","paymentBlock","subTitle"],"searchable":true,"uid":false},{"type":"reference","label":"Payment Links","name":"payments","collections":["paymentDetails"],"namespace":["logos","_body","paymentBlock","payments"],"searchable":true,"uid":false},{"type":"rich-text","label":"Footer","name":"footer","namespace":["logos","_body","paymentBlock","footer"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"image","label":"Credit Cards Image","name":"creditImgSrc","namespace":["logos","_body","paymentBlock","creditImgSrc"],"searchable":false,"uid":false},{"type":"string","label":"Alt Text","name":"altTxt","namespace":["logos","_body","paymentBlock","altTxt"],"searchable":true,"uid":false}],"namespace":["logos","_body","paymentBlock"]},{"name":"PresenterBlock","label":"Presenters","ui":{"previewSrc":"/images/thumbs/tina/presenters.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["logos","_body","PresenterBlock","header"],"searchable":true,"uid":false},{"type":"object","name":"presenterList","label":"Presenters","list":true,"ui":{},"fields":[{"type":"reference","name":"presenter","label":"Presenters","collections":["presenter"],"namespace":["industry","_body","PresenterBlock","presenterList","presenter"]}],"namespace":["logos","_body","PresenterBlock","presenterList"],"searchable":true,"uid":false},{"type":"object","label":"Other Events","name":"otherEvent","fields":[{"type":"string","label":"Title","name":"title","namespace":["industry","_body","PresenterBlock","otherEvent","title"]},{"type":"string","label":"URL","name":"eventURL","namespace":["industry","_body","PresenterBlock","otherEvent","eventURL"]}],"namespace":["logos","_body","PresenterBlock","otherEvent"],"searchable":true,"uid":false}],"namespace":["logos","_body","PresenterBlock"]},{"label":"Recurring Event","name":"RecurringEvent","ui":{"previewSrc":"/images/thumbs/tina/recurring-event.jpg"},"fields":[{"type":"string","label":"Apply Link Redirect","name":"applyLinkRedirect","namespace":["logos","_body","RecurringEvent","applyLinkRedirect"],"searchable":true,"uid":false},{"type":"string","label":"Day","name":"day","options":[{"label":"Monday","value":"monday"},{"label":"Tuesday","value":"tuesday"},{"label":"Wednesday","value":"wednesday"},{"label":"Thursday","value":"thursday"},{"label":"Friday","value":"friday"},{"label":"Saturday","value":"saturday"},{"label":"Sunday","value":"sunday"}],"required":true,"namespace":["logos","_body","RecurringEvent","day"],"searchable":true,"uid":false}],"namespace":["logos","_body","RecurringEvent"]},{"name":"SectionHeader","label":"Section Header","ui":{"previewSrc":"/images/thumbs/tina/section-header.jpg"},"fields":[{"type":"string","label":"Header Text","name":"headerText","namespace":["logos","_body","SectionHeader","headerText"],"searchable":true,"uid":false}],"namespace":["logos","_body","SectionHeader"]},{"name":"ServiceCards","label":"Service Cards","ui":{"previewSrc":"/images/thumbs/tina/services-cards.jpg"},"fields":[{"type":"string","label":"Big Cards Label","name":"bigCardsLabel","namespace":["logos","_body","ServiceCards","bigCardsLabel"],"searchable":true,"uid":false},{"label":"Big Cards","name":"bigCards","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["industry","_body","ServiceCards","bigCards","title"]},{"type":"string","label":"Description","component":"textarea","name":"description","namespace":["industry","_body","ServiceCards","bigCards","description"]},{"type":"string","label":"URL","name":"link","namespace":["industry","_body","ServiceCards","bigCards","link"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Red","value":"red"},{"label":"Light Gray","value":"lightgray"},{"label":"Medium Gray","value":"mediumgray"},{"label":"Dark Gray","value":"darkgray"}],"namespace":["industry","_body","ServiceCards","bigCards","color"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","ServiceCards","bigCards","imgSrc","uploadDir"]},"namespace":["industry","_body","ServiceCards","bigCards","imgSrc"]}],"namespace":["logos","_body","ServiceCards","bigCards"],"searchable":true,"uid":false},{"type":"string","label":"Small Cards Label","name":"smallCardsLabel","namespace":["logos","_body","ServiceCards","smallCardsLabel"],"searchable":true,"uid":false},{"label":"Small Cards","name":"smallCards","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["industry","_body","ServiceCards","smallCards","title"]},{"type":"string","label":"URL","name":"link","namespace":["industry","_body","ServiceCards","smallCards","link"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Red","value":"red"},{"label":"Light Gray","value":"lightgray"},{"label":"Medium Gray","value":"mediumgray"},{"label":"Dark Gray","value":"darkgray"}],"namespace":["industry","_body","ServiceCards","smallCards","color"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","ServiceCards","smallCards","imgSrc","uploadDir"]},"namespace":["industry","_body","ServiceCards","smallCards","imgSrc"]},{"type":"boolean","label":"External Page","description":"Select this if the link is not part of the website. This includes SSW.Rules, and SSW.People links","name":"isExternal","namespace":["industry","_body","ServiceCards","smallCards","isExternal"]}],"namespace":["logos","_body","ServiceCards","smallCards"],"searchable":true,"uid":false},{"label":"Links","name":"links","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["industry","_body","ServiceCards","links","label"]},{"type":"string","label":"URL","name":"link","namespace":["industry","_body","ServiceCards","links","link"]}],"namespace":["logos","_body","ServiceCards","links"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["logos","_body","ServiceCards","backgroundColor"],"searchable":true,"uid":false}],"namespace":["logos","_body","ServiceCards"]},{"label":"Table Layout","name":"TableLayout","ui":{"previewSrc":"/images/thumbs/tina/table-layout.jpg"},"fields":[{"label":"Table Style","name":"tableStyle","type":"string","options":["none","basicBorder","styled","benefits"],"namespace":["logos","_body","TableLayout","tableStyle"],"searchable":true,"uid":false},{"label":"First column bolded + left aligned","name":"firstColBold","type":"boolean","required":false,"namespace":["logos","_body","TableLayout","firstColBold"],"searchable":true,"uid":false},{"type":"string","label":"Table Headers","name":"headers","list":true,"namespace":["logos","_body","TableLayout","headers"],"searchable":true,"uid":false},{"type":"object","label":"Rows","name":"rows","list":true,"fields":[{"type":"object","label":"Cells","name":"cells","list":true,"fields":[{"type":"string","label":"Value","name":"cellValue","required":true,"component":{"namespace":["page","beforeBody","TableLayout","rows","cells","cellValue",""]},"namespace":["live","subtitle","TableLayout","rows","cells","cellValue"]}],"ui":{},"namespace":["industry","_body","TableLayout","rows","cells"]},{"type":"boolean","label":"Is Heading","name":"isHeader","required":false,"namespace":["industry","_body","TableLayout","rows","isHeader"]}],"ui":{},"namespace":["logos","_body","TableLayout","rows"],"searchable":true,"uid":false}],"namespace":["logos","_body","TableLayout"]},{"name":"TestimonialsList","label":"Testimonials List","ui":{"previewSrc":"/images/thumbs/tina/testimonials.jpg"},"fields":[{"type":"object","label":"Exclude Categories","name":"excludedCategories","ui":{},"list":true,"fields":[{"type":"reference","label":"Category Name","name":"categoryName","collections":["testimonialCategories"],"namespace":["industry","_body","TestimonialsList","excludedCategories","categoryName"]}],"namespace":["logos","_body","TestimonialsList","excludedCategories"],"searchable":true,"uid":false}],"namespace":["logos","_body","TestimonialsList"]},{"label":"Training Information","name":"TrainingInformation","ui":{"previewSrc":"/images/thumbs/tina/training-information.jpg"},"fields":[{"type":"object","label":"Training Information Items","name":"trainingInformationItems","list":true,"fields":[{"type":"string","label":"Header","name":"header","namespace":["industry","_body","TrainingInformation","trainingInformationItems","header"]},{"type":"rich-text","label":"Body","name":"body","templates":[{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["marketing","mediaComponent","TrainingInformation","trainingInformationItems","body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["marketing","mediaComponent","TrainingInformation","trainingInformationItems","body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["marketing","mediaComponent","TrainingInformation","trainingInformationItems","body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["marketing","mediaComponent","TrainingInformation","trainingInformationItems","body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["marketing","mediaComponent","TrainingInformation","trainingInformationItems","body","VerticalListItem","afterBody"]}],"namespace":["live","subtitle","TrainingInformation","trainingInformationItems","body","VerticalListItem"]},{"label":"Recurring Event","name":"RecurringEvent","ui":{"previewSrc":"/images/thumbs/tina/recurring-event.jpg"},"fields":[{"type":"string","label":"Apply Link Redirect","name":"applyLinkRedirect","namespace":["marketing","mediaComponent","TrainingInformation","trainingInformationItems","body","RecurringEvent","applyLinkRedirect"]},{"type":"string","label":"Day","name":"day","options":[{"label":"Monday","value":"monday"},{"label":"Tuesday","value":"tuesday"},{"label":"Wednesday","value":"wednesday"},{"label":"Thursday","value":"thursday"},{"label":"Friday","value":"friday"},{"label":"Saturday","value":"saturday"},{"label":"Sunday","value":"sunday"}],"required":true,"namespace":["marketing","mediaComponent","TrainingInformation","trainingInformationItems","body","RecurringEvent","day"]}],"namespace":["live","subtitle","TrainingInformation","trainingInformationItems","body","RecurringEvent"]}],"namespace":["industry","_body","TrainingInformation","trainingInformationItems","body"]}],"namespace":["logos","_body","TrainingInformation","trainingInformationItems"],"searchable":true,"uid":false}],"namespace":["logos","_body","TrainingInformation"]},{"label":"Training Learning Outcomes","name":"TrainingLearningOutcome","ui":{"previewSrc":"/images/thumbs/tina/training-learning-outcomes.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["logos","_body","TrainingLearningOutcome","header"],"searchable":true,"uid":false},{"type":"object","label":"List Items","name":"listItems","list":true,"fields":[{"type":"string","label":"Title","name":"title","namespace":["industry","_body","TrainingLearningOutcome","listItems","title"]},{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["industry","_body","TrainingLearningOutcome","listItems","content"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","TrainingLearningOutcome","listItems","icon","uploadDir"]},"namespace":["industry","_body","TrainingLearningOutcome","listItems","icon"]}],"namespace":["logos","_body","TrainingLearningOutcome","listItems"],"searchable":true,"uid":false}],"namespace":["logos","_body","TrainingLearningOutcome"]},{"label":"Tweet Embed","name":"TweetEmbed","ui":{"previewSrc":"/images/thumbs/tina/tweet-embed.jpg"},"fields":[{"type":"string","name":"url","label":"Tweet URL","required":true,"namespace":["logos","_body","TweetEmbed","url"],"searchable":true,"uid":false}],"namespace":["logos","_body","TweetEmbed"]},{"name":"UpcomingEvents","label":"Upcoming Events","ui":{"previewSrc":"/images/thumbs/tina/upcoming-events.jpg","defaultItem":{"title":"Upcoming Events","numberOfEvents":30}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["logos","_body","UpcomingEvents","title"],"searchable":true,"uid":false},{"type":"number","label":"Number of Events","name":"numberOfEvents","namespace":["logos","_body","UpcomingEvents","numberOfEvents"],"searchable":true,"uid":false}],"namespace":["logos","_body","UpcomingEvents"]},{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["logos","_body","UtilityButton","buttonText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"link","required":false,"namespace":["logos","_body","UtilityButton","link"],"searchable":true,"uid":false},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["logos","_body","UtilityButton","size"],"searchable":true,"uid":false},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["logos","_body","UtilityButton","btnIcon"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["logos","_body","UtilityButton","animated"],"searchable":true,"uid":false},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["logos","_body","UtilityButton","uncentered"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["logos","_body","UtilityButton","removeTopMargin"],"searchable":true,"uid":false},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["logos","_body","UtilityButton","openInNewTab"],"searchable":true,"uid":false}],"namespace":["logos","_body","UtilityButton"]},{"name":"VerticalImageLayout","label":"Vertical Image Layout","fields":[{"type":"image","label":"Image","name":"imageSrc","uploadDir":{"namespace":["page","beforeBody","VerticalImageLayout","imageSrc","uploadDir"]},"namespace":["logos","_body","VerticalImageLayout","imageSrc"],"searchable":false,"uid":false},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["logos","_body","VerticalImageLayout","altText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"imageLink","namespace":["logos","_body","VerticalImageLayout","imageLink"],"searchable":true,"uid":false},{"type":"number","label":"Height","name":"height","required":true,"namespace":["logos","_body","VerticalImageLayout","height"],"searchable":true,"uid":false},{"type":"number","label":"Width","name":"width","required":true,"namespace":["logos","_body","VerticalImageLayout","width"],"searchable":true,"uid":false},{"type":"rich-text","label":"Message","name":"message","required":true,"namespace":["logos","_body","VerticalImageLayout","message"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["logos","_body","VerticalImageLayout","sizes"],"searchable":true,"uid":false}],"namespace":["logos","_body","VerticalImageLayout"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["logos","_body","VerticalListItem","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"number","label":"Index number","name":"index","namespace":["logos","_body","VerticalListItem","index"],"searchable":true,"uid":false},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["logos","_body","VerticalListItem","icon"],"searchable":false,"uid":false},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["logos","_body","VerticalListItem","iconScale"],"searchable":true,"uid":false},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["logos","_body","VerticalListItem","afterBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["logos","_body","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["logos","_body","VideoEmbed","url"],"searchable":true,"uid":false},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["logos","_body","VideoEmbed","videoWidth"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["logos","_body","VideoEmbed","removeMargin"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["logos","_body","VideoEmbed","uncentre"],"searchable":true,"uid":false},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["logos","_body","VideoEmbed","overflow"],"searchable":true,"uid":false},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["logos","_body","VideoEmbed","caption"],"searchable":true,"uid":false},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["logos","_body","VideoEmbed","duration"],"searchable":true,"uid":false}],"namespace":["logos","_body","VideoEmbed"]},{"name":"InlineJotForm","label":"In-line JotForm","ui":{"previewSrc":"/images/thumbs/tina/inline-jot-form.jpg"},"fields":[{"type":"string","name":"title","label":"Title","description":"Optional title for JotForm","namespace":["logos","_body","InlineJotForm","title"],"searchable":true,"uid":false},{"type":"string","name":"jotFormId","label":"JotForm ID","required":true,"namespace":["logos","_body","InlineJotForm","jotFormId"],"searchable":true,"uid":false},{"type":"string","name":"additionalClasses","label":"Additional classnames","description":"Optional styling for iframe element only","namespace":["logos","_body","InlineJotForm","additionalClasses"],"searchable":true,"uid":false}],"namespace":["logos","_body","InlineJotForm"]}],"namespace":["logos","_body"],"searchable":true,"uid":false},{"type":"rich-text","name":"footer","label":"Footer","namespace":["logos","footer"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["logos"]},{"label":"Industry - Pages","name":"industry","format":"mdx","path":"content/industry","ui":{},"fields":[{"type":"string","name":"tip","label":"Tip","ui":{},"namespace":["industry","tip"],"searchable":true,"uid":false},{"type":"object","label":"SEO Values","name":"seo","fields":[{"type":"string","label":"Title (70 characters)","name":"title","ui":{},"namespace":["industry","seo","title"],"searchable":true,"uid":false},{"type":"string","label":"Description (150 characters)","name":"description","component":"textarea","ui":{},"namespace":["industry","seo","description"],"searchable":true,"uid":false},{"type":"string","label":"Canonical URL","name":"canonical","namespace":["industry","seo","canonical"],"searchable":true,"uid":false},{"type":"boolean","name":"showBreadcrumb","label":"Show Breadcrumb","namespace":["industry","seo","showBreadcrumb"],"searchable":true,"uid":false},{"label":"Images","name":"images","list":true,"type":"object","ui":{"defaultItem":{"url":"/images/ssw-default-og.jpg","width":1200,"height":630,"alt":"SSW Consulting - Enterprise Software Development"}},"fields":[{"type":"image","label":"Image Url","name":"url","require":true,"namespace":["live","seo","images","url"],"searchable":false,"uid":false},{"type":"number","label":"Width (px)","name":"width","namespace":["live","seo","images","width"],"searchable":true,"uid":false},{"type":"number","label":"Height (px)","name":"height","namespace":["live","seo","images","height"],"searchable":true,"uid":false},{"type":"string","label":"Image Alt Text","name":"alt","namespace":["live","seo","images","alt"],"searchable":true,"uid":false}],"namespace":["industry","seo","images"],"searchable":true,"uid":false}],"namespace":["industry","seo"],"searchable":true,"uid":false},{"type":"string","label":"Page heading","name":"heading","required":true,"namespace":["industry","heading"],"searchable":true,"uid":false},{"type":"string","label":"Page Subheading","name":"subHeading","namespace":["industry","subHeading"],"searchable":true,"uid":false},{"type":"image","label":"Banner Image","name":"bannerImg","required":true,"uploadDir":{"namespace":["industry","bannerImg","uploadDir"]},"namespace":["industry","bannerImg"],"searchable":false,"uid":false},{"type":"image","label":"Whitepaper File","name":"whitepaperFile","uploadDir":{"namespace":["industry","whitepaperFile","uploadDir"]},"namespace":["industry","whitepaperFile"],"searchable":false,"uid":false},{"type":"rich-text","label":"Body","name":"_body","templates":[{"name":"AboutUs","label":"About Us","ui":{"previewSrc":"/images/thumbs/tina/about-us.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["industry","_body","AboutUs","backgroundColor"],"searchable":true,"uid":false},{"type":"boolean","label":"Show Map","name":"showMap","required":false,"namespace":["industry","_body","AboutUs","showMap"],"searchable":true,"uid":false}],"namespace":["industry","_body","AboutUs"]},{"label":"Agenda","name":"Agenda","ui":{"previewSrc":"/images/thumbs/tina/agenda.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["industry","_body","Agenda","header"],"searchable":true,"uid":false},{"type":"string","label":"Header Color","name":"textColor","options":[{"label":"Red","value":"red"},{"label":"Gray","value":"gray"},{"label":"Default","value":"default"}],"namespace":["industry","_body","Agenda","textColor"],"searchable":true,"uid":false},{"type":"object","label":"Agenda Items","name":"agendaItemList","ui":{},"list":true,"fields":[{"type":"string","label":"Placeholder Text","name":"placeholder","namespace":["live","subtitle","Agenda","agendaItemList","placeholder"]},{"type":"rich-text","label":"Body","name":"body","templates":[{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["offices","aboutUs","Agenda","agendaItemList","body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["offices","aboutUs","Agenda","agendaItemList","body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["offices","aboutUs","Agenda","agendaItemList","body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["offices","aboutUs","Agenda","agendaItemList","body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["offices","aboutUs","Agenda","agendaItemList","body","VerticalListItem","afterBody"]}],"namespace":["marketing","mediaComponent","Agenda","agendaItemList","body","VerticalListItem"]}],"namespace":["live","subtitle","Agenda","agendaItemList","body"]}],"namespace":["industry","_body","Agenda","agendaItemList"],"searchable":true,"uid":false}],"namespace":["industry","_body","Agenda"]},{"label":"Agreement Form","name":"AgreementForm","ui":{"previewSrc":"/images/thumbs/tina/agreement-form.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["industry","_body","AgreementForm","backgroundColor"],"searchable":true,"uid":false},{"type":"object","label":"Form fields","name":"fields","list":true,"fields":[{"type":"string","label":"ID","name":"id","required":true,"namespace":["live","subtitle","AgreementForm","fields","id"]},{"type":"string","label":"Label","name":"label","required":true,"namespace":["live","subtitle","AgreementForm","fields","label"]},{"type":"string","label":"Placeholder","name":"placeholder","namespace":["live","subtitle","AgreementForm","fields","placeholder"]},{"type":"boolean","label":"Resizeable","name":"resizeable","required":true,"namespace":["live","subtitle","AgreementForm","fields","resizeable"]}],"namespace":["industry","_body","AgreementForm","fields"],"searchable":true,"uid":false}],"namespace":["industry","_body","AgreementForm"]},{"label":"Interest Form","name":"InterestForm","ui":{"previewSrc":"/images/thumbs/tina/interest-form.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["industry","_body","InterestForm","buttonText"],"searchable":true,"uid":false}],"namespace":["industry","_body","InterestForm"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["industry","_body","BookingButton","buttonText"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","namespace":["industry","_body","BookingButton","animated"],"searchable":true,"uid":false},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["industry","_body","BookingButton","buttonSubtitle"],"searchable":true,"uid":false}],"namespace":["industry","_body","BookingButton"]},{"name":"BuiltOnAzure","label":"Built on Azure","ui":{"previewSrc":"/images/thumbs/tina/built-on-azure.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["industry","_body","BuiltOnAzure","backgroundColor"],"searchable":true,"uid":false}],"namespace":["industry","_body","BuiltOnAzure"]},{"name":"Carousel","label":"Carousel","ui":{"previewSrc":"/images/thumbs/tina/carousel.jpg"},"fields":[{"label":"Items","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Item description","link":"/","openIn":"sameWindow"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["live","subtitle","Carousel","items","label"]},{"type":"string","label":"URL","name":"link","description":"If link contains ssw.com.au, you can skip the full URL and just use the path. e.g. /services","namespace":["live","subtitle","Carousel","items","link"]},{"type":"string","label":"Open in","name":"openIn","description":"If it is external link, please select 'New window' option.","options":[{"label":"Same window","value":"sameWindow"},{"label":"Modal","value":"modal"},{"label":"New window","value":"newWindow"}],"namespace":["live","subtitle","Carousel","items","openIn"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","Carousel","items","imgSrc","uploadDir"]},"namespace":["live","subtitle","Carousel","items","imgSrc"]}],"namespace":["industry","_body","Carousel","items"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["industry","_body","Carousel","backgroundColor"],"searchable":true,"uid":false},{"type":"number","label":"Delay (Seconds)","name":"delay","required":true,"namespace":["industry","_body","Carousel","delay"],"searchable":true,"uid":false},{"type":"boolean","label":"Show on mobile devices","name":"showOnMobileDevices","namespace":["industry","_body","Carousel","showOnMobileDevices"],"searchable":true,"uid":false}],"namespace":["industry","_body","Carousel"]},{"name":"Citation","label":"Citation","fields":[{"type":"string","label":"author","name":"author","namespace":["industry","_body","Citation","author"],"searchable":true,"uid":false},{"type":"string","label":"article","name":"article","required":true,"namespace":["industry","_body","Citation","article"],"searchable":true,"uid":false}],"namespace":["industry","_body","Citation"]},{"label":"Client List","name":"ClientList","ui":{"previewSrc":"/images/thumbs/tina/clients-list.jpg"},"fields":[{"type":"object","name":"categories","label":"Categories","list":true,"fields":[{"type":"reference","name":"category","label":"Category","collections":["clientCategories"],"namespace":["live","subtitle","ClientList","categories","category"]}],"ui":{},"namespace":["industry","_body","ClientList","categories"],"searchable":true,"uid":false},{"type":"object","name":"clients","label":"Clients list","list":true,"ui":{"previewSrc":"/images/thumbs/tina/clients-list.jpg"},"fields":[{"type":"string","name":"name","label":"Name","namespace":["live","subtitle","ClientList","clients","name"]},{"type":"image","name":"logo","label":"Logo","namespace":["live","subtitle","ClientList","clients","logo"]},{"type":"string","name":"logoUrl","label":"Logo URL","namespace":["live","subtitle","ClientList","clients","logoUrl"]},{"type":"rich-text","name":"content","label":"Content","templates":[{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["offices","aboutUs","ClientList","clients","content","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["offices","aboutUs","ClientList","clients","content","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["offices","aboutUs","ClientList","clients","content","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["offices","aboutUs","ClientList","clients","content","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["offices","aboutUs","ClientList","clients","content","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["offices","aboutUs","ClientList","clients","content","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["offices","aboutUs","ClientList","clients","content","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["offices","aboutUs","ClientList","clients","content","UtilityButton","openInNewTab"]}],"namespace":["marketing","mediaComponent","ClientList","clients","content","UtilityButton"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","aboutUs","ClientList","clients","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","aboutUs","ClientList","clients","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","aboutUs","ClientList","clients","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","aboutUs","ClientList","clients","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","aboutUs","ClientList","clients","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","aboutUs","ClientList","clients","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","aboutUs","ClientList","clients","content","VideoEmbed","duration"]}],"namespace":["marketing","mediaComponent","ClientList","clients","content","VideoEmbed"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","aboutUs","ClientList","clients","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","aboutUs","ClientList","clients","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","aboutUs","ClientList","clients","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","aboutUs","ClientList","clients","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","aboutUs","ClientList","clients","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","aboutUs","ClientList","clients","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","aboutUs","ClientList","clients","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","aboutUs","ClientList","clients","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","aboutUs","ClientList","clients","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","aboutUs","ClientList","clients","content","CustomImage","sizes"]}],"namespace":["marketing","mediaComponent","ClientList","clients","content","CustomImage"]},{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["offices","aboutUs","ClientList","clients","content","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["offices","aboutUs","ClientList","clients","content","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","directions","ClientList","clients","content","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","directions","ClientList","clients","content","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","directions","ClientList","clients","content","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","directions","ClientList","clients","content","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","directions","ClientList","clients","content","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","directions","ClientList","clients","content","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","directions","ClientList","clients","content","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","directions","ClientList","clients","content","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","directions","ClientList","clients","content","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","directions","ClientList","clients","content","ContentCard","content","CustomImage","sizes"]}],"namespace":["offices","map","ClientList","clients","content","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["offices","directions","ClientList","clients","content","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["offices","directions","ClientList","clients","content","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["offices","directions","ClientList","clients","content","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["offices","directions","ClientList","clients","content","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["offices","directions","ClientList","clients","content","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["offices","map","ClientList","clients","content","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","directions","ClientList","clients","content","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","directions","ClientList","clients","content","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","directions","ClientList","clients","content","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","directions","ClientList","clients","content","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","directions","ClientList","clients","content","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","directions","ClientList","clients","content","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","directions","ClientList","clients","content","ContentCard","content","VideoEmbed","duration"]}],"namespace":["offices","map","ClientList","clients","content","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","directions","ClientList","clients","content","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["offices","directions","ClientList","clients","content","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","parking","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["offices","parking","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","parking","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["offices","parking","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["offices","parking","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["offices","directions","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["offices","map","ClientList","clients","content","ContentCard","content","ColorBlock"]}],"namespace":["offices","aboutUs","ClientList","clients","content","ContentCard","content"]}],"namespace":["marketing","mediaComponent","ClientList","clients","content","ContentCard"]}],"namespace":["live","subtitle","ClientList","clients","content"]},{"type":"string","name":"caseStudyUrl","label":"Case study URL","namespace":["live","subtitle","ClientList","clients","caseStudyUrl"]},{"type":"object","name":"categories","label":"Categories","list":true,"ui":{},"fields":[{"type":"reference","name":"category","label":"Category","collections":["clientCategories"],"namespace":["marketing","mediaComponent","ClientList","clients","categories","category"]}],"namespace":["live","subtitle","ClientList","clients","categories"]}],"namespace":["industry","_body","ClientList","clients"],"searchable":true,"uid":false}],"namespace":["industry","_body","ClientList"]},{"name":"ClientLogos","label":"Client Logos","ui":{"previewSrc":"/images/thumbs/tina/client-logos.jpg"},"fields":[{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["industry","_body","ClientLogos","altText"],"searchable":true,"uid":false}],"namespace":["industry","_body","ClientLogos"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["industry","_body","ColorBlock","title"],"searchable":true,"uid":false},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["industry","_body","ColorBlock","subTitle"],"searchable":true,"uid":false},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["live","subtitle","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["live","subtitle","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["live","subtitle","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["live","subtitle","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["live","subtitle","ColorBlock","colorRow","caption"]}],"namespace":["industry","_body","ColorBlock","colorRow"],"searchable":true,"uid":false}],"namespace":["industry","_body","ColorBlock"]},{"name":"ColorPalette","label":"Color Palette","ui":{"previewSrc":"/images/thumbs/tina/color-palette.jpg"},"fields":[{"type":"string","label":"Name","name":"name","namespace":["industry","_body","ColorPalette","name"],"searchable":true,"uid":false}],"namespace":["industry","_body","ColorPalette"]},{"name":"Content","label":"Content","ui":{"previewSrc":"/images/thumbs/tina/content.jpg","defaultItem":{"body":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["industry","_body","Content","title"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["marketing","mediaComponent","Content","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["marketing","mediaComponent","Content","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["marketing","mediaComponent","Content","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["marketing","mediaComponent","Content","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["marketing","mediaComponent","Content","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["marketing","mediaComponent","Content","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["marketing","mediaComponent","Content","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["marketing","mediaComponent","Content","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["marketing","mediaComponent","Content","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["marketing","mediaComponent","Content","content","CustomImage","sizes"]}],"namespace":["live","subtitle","Content","content","CustomImage"]},{"name":"ClientLogos","label":"Client Logos","ui":{"previewSrc":"/images/thumbs/tina/client-logos.jpg"},"fields":[{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["marketing","mediaComponent","Content","content","ClientLogos","altText"]}],"namespace":["live","subtitle","Content","content","ClientLogos"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["marketing","mediaComponent","Content","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["marketing","mediaComponent","Content","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["marketing","mediaComponent","Content","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["marketing","mediaComponent","Content","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["marketing","mediaComponent","Content","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["marketing","mediaComponent","Content","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["marketing","mediaComponent","Content","content","VideoEmbed","duration"]}],"namespace":["live","subtitle","Content","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["marketing","mediaComponent","Content","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["marketing","mediaComponent","Content","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","aboutUs","Content","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["offices","aboutUs","Content","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","aboutUs","Content","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["offices","aboutUs","Content","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["offices","aboutUs","Content","content","ColorBlock","colorRow","caption"]}],"namespace":["marketing","mediaComponent","Content","content","ColorBlock","colorRow"]}],"namespace":["live","subtitle","Content","content","ColorBlock"]}],"namespace":["industry","_body","Content","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Container Padding","name":"paddingClass","options":["Mobile: No Padding","Mobile: No Top and Horizontal Padding"],"namespace":["industry","_body","Content","paddingClass"],"searchable":true,"uid":false},{"type":"string","label":"Text size","name":"size","options":[{"label":"small","value":"sm"},{"label":"normal","value":"base"},{"label":"large","value":"lg"},{"label":"extra large","value":"xl"},{"label":"2x large","value":"2xl"}],"namespace":["industry","_body","Content","size"],"searchable":true,"uid":false},{"type":"string","label":"Align","name":"align","options":[{"label":"Left","value":"left"},{"label":"Center","value":"center"},{"label":"Right","value":"right"}],"namespace":["industry","_body","Content","align"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["industry","_body","Content","backgroundColor"],"searchable":true,"uid":false}],"namespace":["industry","_body","Content"]},{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["industry","_body","ContentCard","prose"],"searchable":true,"uid":false},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["industry","_body","ContentCard","centerAlignedText"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["marketing","mediaComponent","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["marketing","mediaComponent","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["marketing","mediaComponent","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["marketing","mediaComponent","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["marketing","mediaComponent","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["marketing","mediaComponent","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["marketing","mediaComponent","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["marketing","mediaComponent","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["marketing","mediaComponent","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["marketing","mediaComponent","ContentCard","content","CustomImage","sizes"]}],"namespace":["live","subtitle","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["marketing","mediaComponent","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["marketing","mediaComponent","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["marketing","mediaComponent","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["marketing","mediaComponent","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["marketing","mediaComponent","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["live","subtitle","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["marketing","mediaComponent","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["marketing","mediaComponent","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["marketing","mediaComponent","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["marketing","mediaComponent","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["marketing","mediaComponent","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["marketing","mediaComponent","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["marketing","mediaComponent","ContentCard","content","VideoEmbed","duration"]}],"namespace":["live","subtitle","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["marketing","mediaComponent","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["marketing","mediaComponent","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","aboutUs","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["offices","aboutUs","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","aboutUs","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["offices","aboutUs","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["offices","aboutUs","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["marketing","mediaComponent","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["live","subtitle","ContentCard","content","ColorBlock"]}],"namespace":["industry","_body","ContentCard","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["industry","_body","ContentCard"]},{"name":"CustomDownloadButton","label":"Custom Download Button","ui":{"previewSrc":"/images/thumbs/tina/custom-download-button.jpg"},"fields":[{"type":"string","label":"Text","name":"btnText","namespace":["industry","_body","CustomDownloadButton","btnText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"btnLink","namespace":["industry","_body","CustomDownloadButton","btnLink"],"searchable":true,"uid":false}],"namespace":["industry","_body","CustomDownloadButton"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["industry","_body","CustomImage","src"],"searchable":false,"uid":false},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["industry","_body","CustomImage","altText"],"searchable":true,"uid":false},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["industry","_body","CustomImage","alignment"],"searchable":true,"uid":false},{"type":"number","label":"Height","name":"height","required":true,"namespace":["industry","_body","CustomImage","height"],"searchable":true,"uid":false},{"type":"number","label":"Width","name":"width","required":true,"namespace":["industry","_body","CustomImage","width"],"searchable":true,"uid":false},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["industry","_body","CustomImage","link"],"searchable":true,"uid":false},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["industry","_body","CustomImage","customClass"],"searchable":true,"uid":false},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["industry","_body","CustomImage","caption"],"searchable":true,"uid":false},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["industry","_body","CustomImage","captionColor"],"searchable":true,"uid":false},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["industry","_body","CustomImage","sizes"],"searchable":true,"uid":false}],"namespace":["industry","_body","CustomImage"]},{"name":"DomainFromQuery","label":"Domain from query","ui":{"previewSrc":"/images/thumbs/tina/domain-from-query.jpg"},"fields":[{"name":"title","label":"Title","type":"string","description":"This is a H1 heading","namespace":["industry","_body","DomainFromQuery","title"],"searchable":true,"uid":false},{"name":"showDomain","label":"Show domain name","type":"boolean","description":"Query param in URL must have key of 'domain'","namespace":["industry","_body","DomainFromQuery","showDomain"],"searchable":true,"uid":false}],"namespace":["industry","_body","DomainFromQuery"]},{"name":"DownloadBlock","label":"Download Block","ui":{"previewSrc":"/images/thumbs/tina/download-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["industry","_body","DownloadBlock","title"],"searchable":true,"uid":false},{"type":"object","label":"Downloads","name":"downloads","ui":{},"list":true,"fields":[{"type":"string","label":"Header","name":"header","namespace":["live","subtitle","DownloadBlock","downloads","header"]},{"type":"image","label":"Image","name":"img","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","img","uploadDir"]},"namespace":["live","subtitle","DownloadBlock","downloads","img"]},{"type":"string","label":"Image Background","name":"imgBackground","options":["black","grey","white","darkgrey","darkgreen"],"namespace":["live","subtitle","DownloadBlock","downloads","imgBackground"]},{"type":"string","label":"First Link Text","name":"firstLinkText","description":"Defaults to PNG","namespace":["live","subtitle","DownloadBlock","downloads","firstLinkText"]},{"type":"image","label":"First Link","name":"firstLink","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","firstLink","uploadDir"]},"namespace":["live","subtitle","DownloadBlock","downloads","firstLink"]},{"type":"string","label":"Second Link Text","name":"secondLinkText","description":"Defaults to PDF","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","secondLinkText","uploadDir"]},"namespace":["live","subtitle","DownloadBlock","downloads","secondLinkText"]},{"type":"image","label":"Second Link","name":"secondLink","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","secondLink","uploadDir"]},"namespace":["live","subtitle","DownloadBlock","downloads","secondLink"]}],"namespace":["industry","_body","DownloadBlock","downloads"],"searchable":true,"uid":false},{"type":"boolean","label":"Bottom border","name":"bottomBorder","namespace":["industry","_body","DownloadBlock","bottomBorder"],"searchable":true,"uid":false}],"namespace":["industry","_body","DownloadBlock"]},{"name":"DynamicColumns","label":"Dynamic Column Layout","fields":[{"type":"rich-text","label":"Column text body","name":"colBody","required":true,"namespace":["industry","_body","DynamicColumns","colBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"number","label":"Number of columns","name":"colCount","required":true,"ui":{},"namespace":["industry","_body","DynamicColumns","colCount"],"searchable":true,"uid":false}],"namespace":["industry","_body","DynamicColumns"]},{"name":"EventBooking","label":"Events Booking","ui":{"previewSrc":"/images/thumbs/tina/events-booking.jpg"},"fields":[{"type":"number","label":"Duration (In Days)","name":"eventDurationInDays","required":true,"namespace":["industry","_body","EventBooking","eventDurationInDays"],"searchable":true,"uid":false},{"type":"number","label":"Price","name":"price","required":true,"namespace":["industry","_body","EventBooking","price"],"searchable":true,"uid":false},{"type":"number","label":"Discount Price","name":"discountPrice","namespace":["industry","_body","EventBooking","discountPrice"],"searchable":true,"uid":false},{"type":"string","name":"gstText","label":"Select GST Option","options":["inc GST","+ GST"],"required":true,"namespace":["industry","_body","EventBooking","gstText"],"searchable":true,"uid":false},{"type":"string","label":"Discount Note","name":"discountNote","namespace":["industry","_body","EventBooking","discountNote"],"searchable":true,"uid":false},{"type":"object","label":"Event","name":"eventList","ui":{},"list":true,"fields":[{"type":"string","label":"City","name":"city","namespace":["live","subtitle","EventBooking","eventList","city"]},{"type":"datetime","label":"Start Date","name":"date","ui":{},"namespace":["live","subtitle","EventBooking","eventList","date"]},{"type":"string","label":"Booking URL","name":"bookingURL","namespace":["live","subtitle","EventBooking","eventList","bookingURL"]},{"type":"reference","label":"Location","name":"location","collections":["locations"],"namespace":["live","subtitle","EventBooking","eventList","location"]}],"namespace":["industry","_body","EventBooking","eventList"],"searchable":true,"uid":false}],"namespace":["industry","_body","EventBooking"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["marketing","mediaComponent","EventLink","content","Flag","country"]}],"namespace":["live","subtitle","EventLink","content","Flag"]}],"namespace":["industry","_body","EventLink","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Link","name":"link","namespace":["industry","_body","EventLink","link"],"searchable":true,"uid":false},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["industry","_body","EventLink","eventThumbnail"],"searchable":false,"uid":false},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["industry","_body","EventLink","thumbnailAlt"],"searchable":true,"uid":false}],"namespace":["industry","_body","EventLink"]},{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["industry","_body","Flag","country"],"searchable":true,"uid":false}],"namespace":["industry","_body","Flag"]},{"name":"FixedColumns","label":"Fixed Column Layout (2 columns)","ui":{"previewSrc":"/images/thumbs/tina/fixed-columns.jpg"},"fields":[{"type":"rich-text","label":"Header Section (Optional)","name":"headerSection","namespace":["industry","_body","FixedColumns","headerSection"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"First column text","name":"firstColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["marketing","mediaComponent","FixedColumns","firstColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["marketing","mediaComponent","FixedColumns","firstColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","map","FixedColumns","firstColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","map","FixedColumns","firstColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","map","FixedColumns","firstColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","map","FixedColumns","firstColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","map","FixedColumns","firstColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","map","FixedColumns","firstColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","map","FixedColumns","firstColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","map","FixedColumns","firstColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","map","FixedColumns","firstColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","map","FixedColumns","firstColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["offices","aboutUs","FixedColumns","firstColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["offices","map","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["offices","map","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["offices","map","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["offices","map","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["offices","map","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["offices","aboutUs","FixedColumns","firstColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","map","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","map","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","map","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","map","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","map","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","map","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","map","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["offices","aboutUs","FixedColumns","firstColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","map","FixedColumns","firstColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["offices","map","FixedColumns","firstColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","directions","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["offices","directions","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","directions","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["offices","directions","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["offices","directions","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["offices","map","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["offices","aboutUs","FixedColumns","firstColBody","ContentCard","content","ColorBlock"]}],"namespace":["marketing","mediaComponent","FixedColumns","firstColBody","ContentCard","content"]}],"namespace":["live","subtitle","FixedColumns","firstColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["marketing","mediaComponent","FixedColumns","firstColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["marketing","mediaComponent","FixedColumns","firstColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["marketing","mediaComponent","FixedColumns","firstColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["marketing","mediaComponent","FixedColumns","firstColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["marketing","mediaComponent","FixedColumns","firstColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["marketing","mediaComponent","FixedColumns","firstColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["marketing","mediaComponent","FixedColumns","firstColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["marketing","mediaComponent","FixedColumns","firstColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["marketing","mediaComponent","FixedColumns","firstColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["marketing","mediaComponent","FixedColumns","firstColBody","CustomImage","sizes"]}],"namespace":["live","subtitle","FixedColumns","firstColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["offices","map","FixedColumns","firstColBody","EventLink","content","Flag","country"]}],"namespace":["offices","aboutUs","FixedColumns","firstColBody","EventLink","content","Flag"]}],"namespace":["marketing","mediaComponent","FixedColumns","firstColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["marketing","mediaComponent","FixedColumns","firstColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["marketing","mediaComponent","FixedColumns","firstColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["marketing","mediaComponent","FixedColumns","firstColBody","EventLink","thumbnailAlt"]}],"namespace":["live","subtitle","FixedColumns","firstColBody","EventLink"]}],"namespace":["industry","_body","FixedColumns","firstColBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"Second column text","name":"secondColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["marketing","mediaComponent","FixedColumns","secondColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["marketing","mediaComponent","FixedColumns","secondColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","map","FixedColumns","secondColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","map","FixedColumns","secondColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","map","FixedColumns","secondColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","map","FixedColumns","secondColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","map","FixedColumns","secondColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","map","FixedColumns","secondColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","map","FixedColumns","secondColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","map","FixedColumns","secondColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","map","FixedColumns","secondColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","map","FixedColumns","secondColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["offices","aboutUs","FixedColumns","secondColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["offices","map","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["offices","map","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["offices","map","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["offices","map","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["offices","map","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["offices","aboutUs","FixedColumns","secondColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","map","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","map","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","map","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","map","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","map","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","map","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","map","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["offices","aboutUs","FixedColumns","secondColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","map","FixedColumns","secondColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["offices","map","FixedColumns","secondColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","directions","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["offices","directions","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","directions","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["offices","directions","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["offices","directions","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["offices","map","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["offices","aboutUs","FixedColumns","secondColBody","ContentCard","content","ColorBlock"]}],"namespace":["marketing","mediaComponent","FixedColumns","secondColBody","ContentCard","content"]}],"namespace":["live","subtitle","FixedColumns","secondColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["marketing","mediaComponent","FixedColumns","secondColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["marketing","mediaComponent","FixedColumns","secondColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["marketing","mediaComponent","FixedColumns","secondColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["marketing","mediaComponent","FixedColumns","secondColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["marketing","mediaComponent","FixedColumns","secondColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["marketing","mediaComponent","FixedColumns","secondColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["marketing","mediaComponent","FixedColumns","secondColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["marketing","mediaComponent","FixedColumns","secondColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["marketing","mediaComponent","FixedColumns","secondColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["marketing","mediaComponent","FixedColumns","secondColBody","CustomImage","sizes"]}],"namespace":["live","subtitle","FixedColumns","secondColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["offices","map","FixedColumns","secondColBody","EventLink","content","Flag","country"]}],"namespace":["offices","aboutUs","FixedColumns","secondColBody","EventLink","content","Flag"]}],"namespace":["marketing","mediaComponent","FixedColumns","secondColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["marketing","mediaComponent","FixedColumns","secondColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["marketing","mediaComponent","FixedColumns","secondColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["marketing","mediaComponent","FixedColumns","secondColBody","EventLink","thumbnailAlt"]}],"namespace":["live","subtitle","FixedColumns","secondColBody","EventLink"]}],"namespace":["industry","_body","FixedColumns","secondColBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["industry","_body","FixedColumns"]},{"name":"FixedTabsLayout","label":"Fixed Tabs Layout","ui":{"previewSrc":"/images/thumbs/tina/fixed-tabs-layout.jpg"},"fields":[{"type":"string","name":"firstTab","label":"First Tab","namespace":["industry","_body","FixedTabsLayout","firstTab"],"searchable":true,"uid":false},{"type":"rich-text","name":"firstHeading","label":"First Heading","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["marketing","mediaComponent","FixedTabsLayout","firstHeading","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["marketing","mediaComponent","FixedTabsLayout","firstHeading","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["marketing","mediaComponent","FixedTabsLayout","firstHeading","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["marketing","mediaComponent","FixedTabsLayout","firstHeading","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["marketing","mediaComponent","FixedTabsLayout","firstHeading","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["marketing","mediaComponent","FixedTabsLayout","firstHeading","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["marketing","mediaComponent","FixedTabsLayout","firstHeading","VideoEmbed","duration"]}],"namespace":["live","subtitle","FixedTabsLayout","firstHeading","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["marketing","mediaComponent","FixedTabsLayout","firstHeading","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["marketing","mediaComponent","FixedTabsLayout","firstHeading","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["marketing","mediaComponent","FixedTabsLayout","firstHeading","BookingButton","buttonSubtitle"]}],"namespace":["live","subtitle","FixedTabsLayout","firstHeading","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["marketing","mediaComponent","FixedTabsLayout","firstHeading","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["offices","aboutUs","FixedTabsLayout","firstHeading","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["offices","aboutUs","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["offices","aboutUs","FixedTabsLayout","firstHeading","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["offices","aboutUs","FixedTabsLayout","firstHeading","ExpertBlock","expertList","skills"]}],"namespace":["marketing","mediaComponent","FixedTabsLayout","firstHeading","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["offices","aboutUs","FixedTabsLayout","firstHeading","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["offices","aboutUs","FixedTabsLayout","firstHeading","ExpertBlock","link","url"]}],"namespace":["marketing","mediaComponent","FixedTabsLayout","firstHeading","ExpertBlock","link"]}],"namespace":["live","subtitle","FixedTabsLayout","firstHeading","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","aboutUs","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["offices","aboutUs","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["offices","aboutUs","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["offices","map","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["offices","map","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["offices","map","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["offices","aboutUs","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["marketing","mediaComponent","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["live","subtitle","FixedTabsLayout","firstHeading","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["marketing","mediaComponent","FixedTabsLayout","firstHeading","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["marketing","mediaComponent","FixedTabsLayout","firstHeading","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["marketing","mediaComponent","FixedTabsLayout","firstHeading","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["marketing","mediaComponent","FixedTabsLayout","firstHeading","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["marketing","mediaComponent","FixedTabsLayout","firstHeading","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["marketing","mediaComponent","FixedTabsLayout","firstHeading","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["marketing","mediaComponent","FixedTabsLayout","firstHeading","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["marketing","mediaComponent","FixedTabsLayout","firstHeading","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["marketing","mediaComponent","FixedTabsLayout","firstHeading","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["marketing","mediaComponent","FixedTabsLayout","firstHeading","CustomImage","sizes"]}],"namespace":["live","subtitle","FixedTabsLayout","firstHeading","CustomImage"]}],"namespace":["industry","_body","FixedTabsLayout","firstHeading"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","name":"firstBody","label":"First Body","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["marketing","mediaComponent","FixedTabsLayout","firstBody","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["marketing","mediaComponent","FixedTabsLayout","firstBody","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["marketing","mediaComponent","FixedTabsLayout","firstBody","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["marketing","mediaComponent","FixedTabsLayout","firstBody","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["marketing","mediaComponent","FixedTabsLayout","firstBody","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["marketing","mediaComponent","FixedTabsLayout","firstBody","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["marketing","mediaComponent","FixedTabsLayout","firstBody","VideoEmbed","duration"]}],"namespace":["live","subtitle","FixedTabsLayout","firstBody","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["marketing","mediaComponent","FixedTabsLayout","firstBody","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["marketing","mediaComponent","FixedTabsLayout","firstBody","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["marketing","mediaComponent","FixedTabsLayout","firstBody","BookingButton","buttonSubtitle"]}],"namespace":["live","subtitle","FixedTabsLayout","firstBody","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["marketing","mediaComponent","FixedTabsLayout","firstBody","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["offices","aboutUs","FixedTabsLayout","firstBody","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["offices","aboutUs","FixedTabsLayout","firstBody","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["offices","aboutUs","FixedTabsLayout","firstBody","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["offices","aboutUs","FixedTabsLayout","firstBody","ExpertBlock","expertList","skills"]}],"namespace":["marketing","mediaComponent","FixedTabsLayout","firstBody","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["offices","aboutUs","FixedTabsLayout","firstBody","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["offices","aboutUs","FixedTabsLayout","firstBody","ExpertBlock","link","url"]}],"namespace":["marketing","mediaComponent","FixedTabsLayout","firstBody","ExpertBlock","link"]}],"namespace":["live","subtitle","FixedTabsLayout","firstBody","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","aboutUs","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["offices","aboutUs","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["offices","aboutUs","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["offices","map","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["offices","map","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["offices","map","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["offices","aboutUs","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["marketing","mediaComponent","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["live","subtitle","FixedTabsLayout","firstBody","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["marketing","mediaComponent","FixedTabsLayout","firstBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["marketing","mediaComponent","FixedTabsLayout","firstBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["marketing","mediaComponent","FixedTabsLayout","firstBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["marketing","mediaComponent","FixedTabsLayout","firstBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["marketing","mediaComponent","FixedTabsLayout","firstBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["marketing","mediaComponent","FixedTabsLayout","firstBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["marketing","mediaComponent","FixedTabsLayout","firstBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["marketing","mediaComponent","FixedTabsLayout","firstBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["marketing","mediaComponent","FixedTabsLayout","firstBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["marketing","mediaComponent","FixedTabsLayout","firstBody","CustomImage","sizes"]}],"namespace":["live","subtitle","FixedTabsLayout","firstBody","CustomImage"]}],"namespace":["industry","_body","FixedTabsLayout","firstBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","name":"secondTab","label":"Second Tab","namespace":["industry","_body","FixedTabsLayout","secondTab"],"searchable":true,"uid":false},{"type":"rich-text","name":"secondHeading","label":"Second Heading","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["marketing","mediaComponent","FixedTabsLayout","secondHeading","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["marketing","mediaComponent","FixedTabsLayout","secondHeading","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["marketing","mediaComponent","FixedTabsLayout","secondHeading","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["marketing","mediaComponent","FixedTabsLayout","secondHeading","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["marketing","mediaComponent","FixedTabsLayout","secondHeading","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["marketing","mediaComponent","FixedTabsLayout","secondHeading","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["marketing","mediaComponent","FixedTabsLayout","secondHeading","VideoEmbed","duration"]}],"namespace":["live","subtitle","FixedTabsLayout","secondHeading","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["marketing","mediaComponent","FixedTabsLayout","secondHeading","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["marketing","mediaComponent","FixedTabsLayout","secondHeading","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["marketing","mediaComponent","FixedTabsLayout","secondHeading","BookingButton","buttonSubtitle"]}],"namespace":["live","subtitle","FixedTabsLayout","secondHeading","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["marketing","mediaComponent","FixedTabsLayout","secondHeading","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["offices","aboutUs","FixedTabsLayout","secondHeading","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["offices","aboutUs","FixedTabsLayout","secondHeading","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["offices","aboutUs","FixedTabsLayout","secondHeading","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["offices","aboutUs","FixedTabsLayout","secondHeading","ExpertBlock","expertList","skills"]}],"namespace":["marketing","mediaComponent","FixedTabsLayout","secondHeading","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["offices","aboutUs","FixedTabsLayout","secondHeading","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["offices","aboutUs","FixedTabsLayout","secondHeading","ExpertBlock","link","url"]}],"namespace":["marketing","mediaComponent","FixedTabsLayout","secondHeading","ExpertBlock","link"]}],"namespace":["live","subtitle","FixedTabsLayout","secondHeading","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","aboutUs","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["offices","aboutUs","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["offices","aboutUs","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["offices","map","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["offices","map","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["offices","map","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["offices","aboutUs","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["marketing","mediaComponent","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["live","subtitle","FixedTabsLayout","secondHeading","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["marketing","mediaComponent","FixedTabsLayout","secondHeading","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["marketing","mediaComponent","FixedTabsLayout","secondHeading","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["marketing","mediaComponent","FixedTabsLayout","secondHeading","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["marketing","mediaComponent","FixedTabsLayout","secondHeading","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["marketing","mediaComponent","FixedTabsLayout","secondHeading","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["marketing","mediaComponent","FixedTabsLayout","secondHeading","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["marketing","mediaComponent","FixedTabsLayout","secondHeading","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["marketing","mediaComponent","FixedTabsLayout","secondHeading","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["marketing","mediaComponent","FixedTabsLayout","secondHeading","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["marketing","mediaComponent","FixedTabsLayout","secondHeading","CustomImage","sizes"]}],"namespace":["live","subtitle","FixedTabsLayout","secondHeading","CustomImage"]}],"namespace":["industry","_body","FixedTabsLayout","secondHeading"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","name":"secondBody","label":"Second Body","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["marketing","mediaComponent","FixedTabsLayout","secondBody","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["marketing","mediaComponent","FixedTabsLayout","secondBody","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["marketing","mediaComponent","FixedTabsLayout","secondBody","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["marketing","mediaComponent","FixedTabsLayout","secondBody","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["marketing","mediaComponent","FixedTabsLayout","secondBody","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["marketing","mediaComponent","FixedTabsLayout","secondBody","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["marketing","mediaComponent","FixedTabsLayout","secondBody","VideoEmbed","duration"]}],"namespace":["live","subtitle","FixedTabsLayout","secondBody","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["marketing","mediaComponent","FixedTabsLayout","secondBody","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["marketing","mediaComponent","FixedTabsLayout","secondBody","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["marketing","mediaComponent","FixedTabsLayout","secondBody","BookingButton","buttonSubtitle"]}],"namespace":["live","subtitle","FixedTabsLayout","secondBody","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["marketing","mediaComponent","FixedTabsLayout","secondBody","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["offices","aboutUs","FixedTabsLayout","secondBody","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["offices","aboutUs","FixedTabsLayout","secondBody","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["offices","aboutUs","FixedTabsLayout","secondBody","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["offices","aboutUs","FixedTabsLayout","secondBody","ExpertBlock","expertList","skills"]}],"namespace":["marketing","mediaComponent","FixedTabsLayout","secondBody","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["offices","aboutUs","FixedTabsLayout","secondBody","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["offices","aboutUs","FixedTabsLayout","secondBody","ExpertBlock","link","url"]}],"namespace":["marketing","mediaComponent","FixedTabsLayout","secondBody","ExpertBlock","link"]}],"namespace":["live","subtitle","FixedTabsLayout","secondBody","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","aboutUs","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["offices","aboutUs","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["offices","aboutUs","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["offices","map","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["offices","map","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["offices","map","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["offices","aboutUs","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["marketing","mediaComponent","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["live","subtitle","FixedTabsLayout","secondBody","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["marketing","mediaComponent","FixedTabsLayout","secondBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["marketing","mediaComponent","FixedTabsLayout","secondBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["marketing","mediaComponent","FixedTabsLayout","secondBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["marketing","mediaComponent","FixedTabsLayout","secondBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["marketing","mediaComponent","FixedTabsLayout","secondBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["marketing","mediaComponent","FixedTabsLayout","secondBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["marketing","mediaComponent","FixedTabsLayout","secondBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["marketing","mediaComponent","FixedTabsLayout","secondBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["marketing","mediaComponent","FixedTabsLayout","secondBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["marketing","mediaComponent","FixedTabsLayout","secondBody","CustomImage","sizes"]}],"namespace":["live","subtitle","FixedTabsLayout","secondBody","CustomImage"]}],"namespace":["industry","_body","FixedTabsLayout","secondBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["industry","_body","FixedTabsLayout"]},{"label":"Google Maps","name":"GoogleMaps","ui":{"previewSrc":"/images/thumbs/tina/google-maps.jpg"},"fields":[{"type":"string","label":"URL","name":"embedUrl","required":true,"namespace":["industry","_body","GoogleMaps","embedUrl"],"searchable":true,"uid":false},{"type":"string","label":"Width","name":"embedWidth","namespace":["industry","_body","GoogleMaps","embedWidth"],"searchable":true,"uid":false},{"type":"string","label":"Height","name":"embedHeight","namespace":["industry","_body","GoogleMaps","embedHeight"],"searchable":true,"uid":false}],"namespace":["industry","_body","GoogleMaps"]},{"label":"Grid Layout","name":"GridLayout","ui":{"previewSrc":"/images/thumbs/tina/grid-layout.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["industry","_body","GridLayout","title"],"searchable":true,"uid":false},{"type":"object","list":true,"label":"Grid Items","name":"grids","ui":{},"fields":[{"type":"string","label":"Grid Title","name":"gridTitle","namespace":["live","subtitle","GridLayout","grids","gridTitle"]},{"type":"boolean","label":"Show Grid Title","name":"showGridTitle","namespace":["live","subtitle","GridLayout","grids","showGridTitle"]},{"type":"boolean","label":"Centered Grid Title","name":"centeredGridTitle","namespace":["live","subtitle","GridLayout","grids","centeredGridTitle"]},{"type":"boolean","label":"Show Header Divider","name":"showHeaderDivider","namespace":["live","subtitle","GridLayout","grids","showHeaderDivider"]},{"type":"boolean","label":"Offset Grid Start","name":"offsetGridStart","namespace":["live","subtitle","GridLayout","grids","offsetGridStart"]},{"type":"object","label":"Blocks","name":"blocks","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["marketing","mediaComponent","GridLayout","grids","blocks","title"]},{"type":"boolean","label":"Show Title","name":"showTitle","namespace":["marketing","mediaComponent","GridLayout","grids","blocks","showTitle"]},{"type":"image","label":"Image","name":"image","uploadDir":{"namespace":["page","beforeBody","GridLayout","grids","blocks","image","uploadDir"]},"namespace":["marketing","mediaComponent","GridLayout","grids","blocks","image"]},{"type":"image","label":"Related Image","name":"relatedImage","uploadDir":{"namespace":["page","beforeBody","GridLayout","grids","blocks","relatedImage","uploadDir"]},"namespace":["marketing","mediaComponent","GridLayout","grids","blocks","relatedImage"]},{"type":"rich-text","name":"linkContent","label":"Link Content","templates":[{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["offices","map","GridLayout","grids","blocks","linkContent","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["offices","map","GridLayout","grids","blocks","linkContent","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["offices","map","GridLayout","grids","blocks","linkContent","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["offices","map","GridLayout","grids","blocks","linkContent","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["offices","map","GridLayout","grids","blocks","linkContent","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["offices","map","GridLayout","grids","blocks","linkContent","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["offices","map","GridLayout","grids","blocks","linkContent","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["offices","map","GridLayout","grids","blocks","linkContent","UtilityButton","openInNewTab"]}],"namespace":["offices","aboutUs","GridLayout","grids","blocks","linkContent","UtilityButton"]}],"namespace":["marketing","mediaComponent","GridLayout","grids","blocks","linkContent"]}],"namespace":["live","subtitle","GridLayout","grids","blocks"]}],"namespace":["industry","_body","GridLayout","grids"],"searchable":true,"uid":false}],"namespace":["industry","_body","GridLayout"]},{"name":"Hero","label":"Hero","ui":{"previewSrc":"/blocks/hero.png","defaultItem":{"tagline":"Here's some text above the other text","headline":"This Big Text is Totally Awesome","text":"Phasellus scelerisque, libero eu finibus rutrum, risus risus accumsan libero, nec molestie urna dui a leo."}},"fields":[{"type":"string","label":"Tagline","name":"tagline","namespace":["industry","_body","Hero","tagline"],"searchable":true,"uid":false},{"type":"string","label":"Headline","name":"headline","namespace":["industry","_body","Hero","headline"],"searchable":true,"uid":false},{"label":"Text","name":"text","type":"rich-text","namespace":["industry","_body","Hero","text"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"label":"Actions","name":"actions","type":"object","list":true,"ui":{"defaultItem":{"label":"Action Label","type":"button","icon":true,"link":"/"}},"fields":[{"label":"Label","name":"label","type":"string","namespace":["live","subtitle","Hero","actions","label"]},{"label":"Type","name":"type","type":"string","options":[{"label":"Button","value":"button"},{"label":"Link","value":"link"}],"namespace":["live","subtitle","Hero","actions","type"]},{"label":"Icon","name":"icon","type":"boolean","namespace":["live","subtitle","Hero","actions","icon"]},{"label":"Link","name":"link","type":"string","namespace":["live","subtitle","Hero","actions","link"]}],"namespace":["industry","_body","Hero","actions"],"searchable":true,"uid":false},{"type":"object","label":"Image","name":"image","fields":[{"name":"src","label":"Image Source","type":"image","namespace":["live","subtitle","Hero","image","src"]},{"name":"alt","label":"Alt Text","type":"string","namespace":["live","subtitle","Hero","image","alt"]}],"namespace":["industry","_body","Hero","image"],"searchable":true,"uid":false},{"type":"string","label":"Color","name":"color","options":[{"label":"Default","value":"default"},{"label":"Tint","value":"tint"},{"label":"Primary","value":"primary"}],"namespace":["industry","_body","Hero","color"],"searchable":true,"uid":false}],"namespace":["industry","_body","Hero"]},{"name":"HorizontalCard","label":"Horizontal Card","ui":{"previewSrc":"/images/thumbs/tina/horizontal-card.jpg"},"fields":[{"type":"object","label":"Cards","name":"cardList","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["live","subtitle","HorizontalCard","cardList","title"]},{"type":"rich-text","label":"Content","name":"content","namespace":["live","subtitle","HorizontalCard","cardList","content"]},{"type":"image","label":"Thumbnail","name":"thumbnail","uploadDir":{"namespace":["page","beforeBody","HorizontalCard","cardList","thumbnail","uploadDir"]},"namespace":["live","subtitle","HorizontalCard","cardList","thumbnail"]},{"type":"string","label":"Link","name":"link","namespace":["live","subtitle","HorizontalCard","cardList","link"]}],"namespace":["industry","_body","HorizontalCard","cardList"],"searchable":true,"uid":false},{"type":"object","label":"Button","name":"button","fields":[{"type":"string","label":"Text","name":"text","namespace":["live","subtitle","HorizontalCard","button","text"]},{"type":"string","label":"Link","name":"link","namespace":["live","subtitle","HorizontalCard","button","link"]}],"namespace":["industry","_body","HorizontalCard","button"],"searchable":true,"uid":false}],"namespace":["industry","_body","HorizontalCard"]},{"name":"InternalCarousel","label":"Internal Carousel","ui":{"previewSrc":"/images/thumbs/tina/internal-carousel.jpg"},"fields":[{"label":"Images","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Image description"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["live","subtitle","InternalCarousel","items","label"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","InternalCarousel","items","imgSrc","uploadDir"]},"namespace":["live","subtitle","InternalCarousel","items","imgSrc"]}],"namespace":["industry","_body","InternalCarousel","items"],"searchable":true,"uid":false},{"type":"string","label":"Header","name":"header","namespace":["industry","_body","InternalCarousel","header"],"searchable":true,"uid":false},{"type":"rich-text","label":"Text","name":"paragraph","isBody":false,"namespace":["industry","_body","InternalCarousel","paragraph"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Website","name":"website","namespace":["industry","_body","InternalCarousel","website"],"searchable":true,"uid":false},{"type":"object","label":"Technologies","name":"technologies","list":true,"ui":{},"fields":[{"type":"string","label":"Name","name":"name","namespace":["live","subtitle","InternalCarousel","technologies","name"]}],"namespace":["industry","_body","InternalCarousel","technologies"],"searchable":true,"uid":false},{"type":"string","label":"Case Study","name":"caseStudyUrl","namespace":["industry","_body","InternalCarousel","caseStudyUrl"],"searchable":true,"uid":false},{"type":"string","label":"Video URL","name":"videoUrl","namespace":["industry","_body","InternalCarousel","videoUrl"],"searchable":true,"uid":false}],"namespace":["industry","_body","InternalCarousel"]},{"label":"Join As Presenter","name":"joinAsPresenter","fields":[{"label":"Learn More Link","name":"link","type":"string","namespace":["industry","_body","joinAsPresenter","link"],"searchable":true,"uid":false},{"label":"Image","name":"img","type":"image","namespace":["industry","_body","joinAsPresenter","img"],"searchable":false,"uid":false}],"namespace":["industry","_body","joinAsPresenter"]},{"label":"Join Github","name":"joinGithub","ui":{"previewSrc":"/images/thumbs/tina/join-github.jpg"},"fields":[{"label":"Title","name":"title","type":"string","namespace":["industry","_body","joinGithub","title"],"searchable":true,"uid":false},{"label":"Join Github Link","name":"link","type":"string","namespace":["industry","_body","joinGithub","link"],"searchable":true,"uid":false}],"namespace":["industry","_body","joinGithub"]},{"name":"JotFormEmbed","label":"JotForm Embed","ui":{"previewSrc":"/images/thumbs/tina/jotform-embed.jpg"},"fields":[{"type":"string","name":"jotFormId","label":"JotForm Id","required":true,"namespace":["industry","_body","JotFormEmbed","jotFormId"],"searchable":true,"uid":false},{"type":"string","label":"Button Text","name":"buttonText","namespace":["industry","_body","JotFormEmbed","buttonText"],"searchable":true,"uid":false},{"type":"string","name":"containerClass","label":"Container Class","namespace":["industry","_body","JotFormEmbed","containerClass"],"searchable":true,"uid":false},{"type":"string","label":"Button Class","name":"buttonClass","namespace":["industry","_body","JotFormEmbed","buttonClass"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","namespace":["industry","_body","JotFormEmbed","animated"],"searchable":true,"uid":false}],"namespace":["industry","_body","JotFormEmbed"]},{"name":"LatestTech","label":"Latest Tech","ui":{"previewSrc":"/images/thumbs/tina/latest-tech.jpg"},"fields":[{"type":"reference","description":"Select a config file including a set of badges","collections":["userGroupGlobal"],"label":"Badges","name":"badges","namespace":["industry","_body","LatestTech","badges"],"searchable":true,"uid":false}],"namespace":["industry","_body","LatestTech"]},{"name":"LocationBlock","label":"Locations","ui":{"previewSrc":"/images/thumbs/tina/locations.jpg"},"fields":[{"type":"string","name":"title","label":"Title","namespace":["industry","_body","LocationBlock","title"],"searchable":true,"uid":false},{"type":"object","label":"Location List","name":"locationList","list":true,"ui":{},"fields":[{"type":"reference","collections":["locations"],"label":"Location","name":"location","namespace":["live","subtitle","LocationBlock","locationList","location"]}],"namespace":["industry","_body","LocationBlock","locationList"],"searchable":true,"uid":false},{"type":"object","name":"chapelWebsite","label":"Chapel Website","fields":[{"type":"string","name":"title","label":"Text","namespace":["live","subtitle","LocationBlock","chapelWebsite","title"]},{"type":"string","name":"URL","label":"URL","namespace":["live","subtitle","LocationBlock","chapelWebsite","URL"]}],"namespace":["industry","_body","LocationBlock","chapelWebsite"],"searchable":true,"uid":false}],"namespace":["industry","_body","LocationBlock"]},{"name":"NewslettersTable","label":"Newsletters Table","ui":{"previewSrc":"/images/thumbs/tina/newsletters-table.jpg"},"fields":[{"type":"string","label":"Header text","name":"headerText","namespace":["industry","_body","NewslettersTable","headerText"],"searchable":true,"uid":false}],"namespace":["industry","_body","NewslettersTable"]},{"label":"Organizer","name":"organizer","fields":[{"type":"image","label":"Profile Image","name":"profileImg","namespace":["industry","_body","organizer","profileImg"],"searchable":false,"uid":false},{"type":"string","label":"Profile Link","name":"profileLink","namespace":["industry","_body","organizer","profileLink"],"searchable":true,"uid":false},{"type":"string","label":"Name","name":"name","namespace":["industry","_body","organizer","name"],"searchable":true,"uid":false},{"type":"string","label":"Position","name":"position","namespace":["industry","_body","organizer","position"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","namespace":["industry","_body","organizer","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["industry","_body","organizer"]},{"label":"Payment Block","name":"paymentBlock","ui":{"previewSrc":"/images/thumbs/tina/payment-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["industry","_body","paymentBlock","title"],"searchable":true,"uid":false},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["industry","_body","paymentBlock","subTitle"],"searchable":true,"uid":false},{"type":"reference","label":"Payment Links","name":"payments","collections":["paymentDetails"],"namespace":["industry","_body","paymentBlock","payments"],"searchable":true,"uid":false},{"type":"rich-text","label":"Footer","name":"footer","namespace":["industry","_body","paymentBlock","footer"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"image","label":"Credit Cards Image","name":"creditImgSrc","namespace":["industry","_body","paymentBlock","creditImgSrc"],"searchable":false,"uid":false},{"type":"string","label":"Alt Text","name":"altTxt","namespace":["industry","_body","paymentBlock","altTxt"],"searchable":true,"uid":false}],"namespace":["industry","_body","paymentBlock"]},{"name":"PresenterBlock","label":"Presenters","ui":{"previewSrc":"/images/thumbs/tina/presenters.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["industry","_body","PresenterBlock","header"],"searchable":true,"uid":false},{"type":"object","name":"presenterList","label":"Presenters","list":true,"ui":{},"fields":[{"type":"reference","name":"presenter","label":"Presenters","collections":["presenter"],"namespace":["live","subtitle","PresenterBlock","presenterList","presenter"]}],"namespace":["industry","_body","PresenterBlock","presenterList"],"searchable":true,"uid":false},{"type":"object","label":"Other Events","name":"otherEvent","fields":[{"type":"string","label":"Title","name":"title","namespace":["live","subtitle","PresenterBlock","otherEvent","title"]},{"type":"string","label":"URL","name":"eventURL","namespace":["live","subtitle","PresenterBlock","otherEvent","eventURL"]}],"namespace":["industry","_body","PresenterBlock","otherEvent"],"searchable":true,"uid":false}],"namespace":["industry","_body","PresenterBlock"]},{"label":"Recurring Event","name":"RecurringEvent","ui":{"previewSrc":"/images/thumbs/tina/recurring-event.jpg"},"fields":[{"type":"string","label":"Apply Link Redirect","name":"applyLinkRedirect","namespace":["industry","_body","RecurringEvent","applyLinkRedirect"],"searchable":true,"uid":false},{"type":"string","label":"Day","name":"day","options":[{"label":"Monday","value":"monday"},{"label":"Tuesday","value":"tuesday"},{"label":"Wednesday","value":"wednesday"},{"label":"Thursday","value":"thursday"},{"label":"Friday","value":"friday"},{"label":"Saturday","value":"saturday"},{"label":"Sunday","value":"sunday"}],"required":true,"namespace":["industry","_body","RecurringEvent","day"],"searchable":true,"uid":false}],"namespace":["industry","_body","RecurringEvent"]},{"name":"SectionHeader","label":"Section Header","ui":{"previewSrc":"/images/thumbs/tina/section-header.jpg"},"fields":[{"type":"string","label":"Header Text","name":"headerText","namespace":["industry","_body","SectionHeader","headerText"],"searchable":true,"uid":false}],"namespace":["industry","_body","SectionHeader"]},{"name":"ServiceCards","label":"Service Cards","ui":{"previewSrc":"/images/thumbs/tina/services-cards.jpg"},"fields":[{"type":"string","label":"Big Cards Label","name":"bigCardsLabel","namespace":["industry","_body","ServiceCards","bigCardsLabel"],"searchable":true,"uid":false},{"label":"Big Cards","name":"bigCards","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["live","subtitle","ServiceCards","bigCards","title"]},{"type":"string","label":"Description","component":"textarea","name":"description","namespace":["live","subtitle","ServiceCards","bigCards","description"]},{"type":"string","label":"URL","name":"link","namespace":["live","subtitle","ServiceCards","bigCards","link"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Red","value":"red"},{"label":"Light Gray","value":"lightgray"},{"label":"Medium Gray","value":"mediumgray"},{"label":"Dark Gray","value":"darkgray"}],"namespace":["live","subtitle","ServiceCards","bigCards","color"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","ServiceCards","bigCards","imgSrc","uploadDir"]},"namespace":["live","subtitle","ServiceCards","bigCards","imgSrc"]}],"namespace":["industry","_body","ServiceCards","bigCards"],"searchable":true,"uid":false},{"type":"string","label":"Small Cards Label","name":"smallCardsLabel","namespace":["industry","_body","ServiceCards","smallCardsLabel"],"searchable":true,"uid":false},{"label":"Small Cards","name":"smallCards","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["live","subtitle","ServiceCards","smallCards","title"]},{"type":"string","label":"URL","name":"link","namespace":["live","subtitle","ServiceCards","smallCards","link"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Red","value":"red"},{"label":"Light Gray","value":"lightgray"},{"label":"Medium Gray","value":"mediumgray"},{"label":"Dark Gray","value":"darkgray"}],"namespace":["live","subtitle","ServiceCards","smallCards","color"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","ServiceCards","smallCards","imgSrc","uploadDir"]},"namespace":["live","subtitle","ServiceCards","smallCards","imgSrc"]},{"type":"boolean","label":"External Page","description":"Select this if the link is not part of the website. This includes SSW.Rules, and SSW.People links","name":"isExternal","namespace":["live","subtitle","ServiceCards","smallCards","isExternal"]}],"namespace":["industry","_body","ServiceCards","smallCards"],"searchable":true,"uid":false},{"label":"Links","name":"links","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["live","subtitle","ServiceCards","links","label"]},{"type":"string","label":"URL","name":"link","namespace":["live","subtitle","ServiceCards","links","link"]}],"namespace":["industry","_body","ServiceCards","links"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["industry","_body","ServiceCards","backgroundColor"],"searchable":true,"uid":false}],"namespace":["industry","_body","ServiceCards"]},{"label":"Table Layout","name":"TableLayout","ui":{"previewSrc":"/images/thumbs/tina/table-layout.jpg"},"fields":[{"label":"Table Style","name":"tableStyle","type":"string","options":["none","basicBorder","styled","benefits"],"namespace":["industry","_body","TableLayout","tableStyle"],"searchable":true,"uid":false},{"label":"First column bolded + left aligned","name":"firstColBold","type":"boolean","required":false,"namespace":["industry","_body","TableLayout","firstColBold"],"searchable":true,"uid":false},{"type":"string","label":"Table Headers","name":"headers","list":true,"namespace":["industry","_body","TableLayout","headers"],"searchable":true,"uid":false},{"type":"object","label":"Rows","name":"rows","list":true,"fields":[{"type":"object","label":"Cells","name":"cells","list":true,"fields":[{"type":"string","label":"Value","name":"cellValue","required":true,"component":{"namespace":["page","beforeBody","TableLayout","rows","cells","cellValue",""]},"namespace":["marketing","mediaComponent","TableLayout","rows","cells","cellValue"]}],"ui":{},"namespace":["live","subtitle","TableLayout","rows","cells"]},{"type":"boolean","label":"Is Heading","name":"isHeader","required":false,"namespace":["live","subtitle","TableLayout","rows","isHeader"]}],"ui":{},"namespace":["industry","_body","TableLayout","rows"],"searchable":true,"uid":false}],"namespace":["industry","_body","TableLayout"]},{"name":"TestimonialsList","label":"Testimonials List","ui":{"previewSrc":"/images/thumbs/tina/testimonials.jpg"},"fields":[{"type":"object","label":"Exclude Categories","name":"excludedCategories","ui":{},"list":true,"fields":[{"type":"reference","label":"Category Name","name":"categoryName","collections":["testimonialCategories"],"namespace":["live","subtitle","TestimonialsList","excludedCategories","categoryName"]}],"namespace":["industry","_body","TestimonialsList","excludedCategories"],"searchable":true,"uid":false}],"namespace":["industry","_body","TestimonialsList"]},{"label":"Training Information","name":"TrainingInformation","ui":{"previewSrc":"/images/thumbs/tina/training-information.jpg"},"fields":[{"type":"object","label":"Training Information Items","name":"trainingInformationItems","list":true,"fields":[{"type":"string","label":"Header","name":"header","namespace":["live","subtitle","TrainingInformation","trainingInformationItems","header"]},{"type":"rich-text","label":"Body","name":"body","templates":[{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["offices","aboutUs","TrainingInformation","trainingInformationItems","body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["offices","aboutUs","TrainingInformation","trainingInformationItems","body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["offices","aboutUs","TrainingInformation","trainingInformationItems","body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["offices","aboutUs","TrainingInformation","trainingInformationItems","body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["offices","aboutUs","TrainingInformation","trainingInformationItems","body","VerticalListItem","afterBody"]}],"namespace":["marketing","mediaComponent","TrainingInformation","trainingInformationItems","body","VerticalListItem"]},{"label":"Recurring Event","name":"RecurringEvent","ui":{"previewSrc":"/images/thumbs/tina/recurring-event.jpg"},"fields":[{"type":"string","label":"Apply Link Redirect","name":"applyLinkRedirect","namespace":["offices","aboutUs","TrainingInformation","trainingInformationItems","body","RecurringEvent","applyLinkRedirect"]},{"type":"string","label":"Day","name":"day","options":[{"label":"Monday","value":"monday"},{"label":"Tuesday","value":"tuesday"},{"label":"Wednesday","value":"wednesday"},{"label":"Thursday","value":"thursday"},{"label":"Friday","value":"friday"},{"label":"Saturday","value":"saturday"},{"label":"Sunday","value":"sunday"}],"required":true,"namespace":["offices","aboutUs","TrainingInformation","trainingInformationItems","body","RecurringEvent","day"]}],"namespace":["marketing","mediaComponent","TrainingInformation","trainingInformationItems","body","RecurringEvent"]}],"namespace":["live","subtitle","TrainingInformation","trainingInformationItems","body"]}],"namespace":["industry","_body","TrainingInformation","trainingInformationItems"],"searchable":true,"uid":false}],"namespace":["industry","_body","TrainingInformation"]},{"label":"Training Learning Outcomes","name":"TrainingLearningOutcome","ui":{"previewSrc":"/images/thumbs/tina/training-learning-outcomes.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["industry","_body","TrainingLearningOutcome","header"],"searchable":true,"uid":false},{"type":"object","label":"List Items","name":"listItems","list":true,"fields":[{"type":"string","label":"Title","name":"title","namespace":["live","subtitle","TrainingLearningOutcome","listItems","title"]},{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["live","subtitle","TrainingLearningOutcome","listItems","content"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","TrainingLearningOutcome","listItems","icon","uploadDir"]},"namespace":["live","subtitle","TrainingLearningOutcome","listItems","icon"]}],"namespace":["industry","_body","TrainingLearningOutcome","listItems"],"searchable":true,"uid":false}],"namespace":["industry","_body","TrainingLearningOutcome"]},{"label":"Tweet Embed","name":"TweetEmbed","ui":{"previewSrc":"/images/thumbs/tina/tweet-embed.jpg"},"fields":[{"type":"string","name":"url","label":"Tweet URL","required":true,"namespace":["industry","_body","TweetEmbed","url"],"searchable":true,"uid":false}],"namespace":["industry","_body","TweetEmbed"]},{"name":"UpcomingEvents","label":"Upcoming Events","ui":{"previewSrc":"/images/thumbs/tina/upcoming-events.jpg","defaultItem":{"title":"Upcoming Events","numberOfEvents":30}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["industry","_body","UpcomingEvents","title"],"searchable":true,"uid":false},{"type":"number","label":"Number of Events","name":"numberOfEvents","namespace":["industry","_body","UpcomingEvents","numberOfEvents"],"searchable":true,"uid":false}],"namespace":["industry","_body","UpcomingEvents"]},{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["industry","_body","UtilityButton","buttonText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"link","required":false,"namespace":["industry","_body","UtilityButton","link"],"searchable":true,"uid":false},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["industry","_body","UtilityButton","size"],"searchable":true,"uid":false},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["industry","_body","UtilityButton","btnIcon"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["industry","_body","UtilityButton","animated"],"searchable":true,"uid":false},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["industry","_body","UtilityButton","uncentered"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["industry","_body","UtilityButton","removeTopMargin"],"searchable":true,"uid":false},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["industry","_body","UtilityButton","openInNewTab"],"searchable":true,"uid":false}],"namespace":["industry","_body","UtilityButton"]},{"name":"VerticalImageLayout","label":"Vertical Image Layout","fields":[{"type":"image","label":"Image","name":"imageSrc","uploadDir":{"namespace":["page","beforeBody","VerticalImageLayout","imageSrc","uploadDir"]},"namespace":["industry","_body","VerticalImageLayout","imageSrc"],"searchable":false,"uid":false},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["industry","_body","VerticalImageLayout","altText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"imageLink","namespace":["industry","_body","VerticalImageLayout","imageLink"],"searchable":true,"uid":false},{"type":"number","label":"Height","name":"height","required":true,"namespace":["industry","_body","VerticalImageLayout","height"],"searchable":true,"uid":false},{"type":"number","label":"Width","name":"width","required":true,"namespace":["industry","_body","VerticalImageLayout","width"],"searchable":true,"uid":false},{"type":"rich-text","label":"Message","name":"message","required":true,"namespace":["industry","_body","VerticalImageLayout","message"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["industry","_body","VerticalImageLayout","sizes"],"searchable":true,"uid":false}],"namespace":["industry","_body","VerticalImageLayout"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["industry","_body","VerticalListItem","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"number","label":"Index number","name":"index","namespace":["industry","_body","VerticalListItem","index"],"searchable":true,"uid":false},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["industry","_body","VerticalListItem","icon"],"searchable":false,"uid":false},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["industry","_body","VerticalListItem","iconScale"],"searchable":true,"uid":false},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["industry","_body","VerticalListItem","afterBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["industry","_body","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["industry","_body","VideoEmbed","url"],"searchable":true,"uid":false},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["industry","_body","VideoEmbed","videoWidth"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["industry","_body","VideoEmbed","removeMargin"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["industry","_body","VideoEmbed","uncentre"],"searchable":true,"uid":false},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["industry","_body","VideoEmbed","overflow"],"searchable":true,"uid":false},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["industry","_body","VideoEmbed","caption"],"searchable":true,"uid":false},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["industry","_body","VideoEmbed","duration"],"searchable":true,"uid":false}],"namespace":["industry","_body","VideoEmbed"]},{"name":"InlineJotForm","label":"In-line JotForm","ui":{"previewSrc":"/images/thumbs/tina/inline-jot-form.jpg"},"fields":[{"type":"string","name":"title","label":"Title","description":"Optional title for JotForm","namespace":["industry","_body","InlineJotForm","title"],"searchable":true,"uid":false},{"type":"string","name":"jotFormId","label":"JotForm ID","required":true,"namespace":["industry","_body","InlineJotForm","jotFormId"],"searchable":true,"uid":false},{"type":"string","name":"additionalClasses","label":"Additional classnames","description":"Optional styling for iframe element only","namespace":["industry","_body","InlineJotForm","additionalClasses"],"searchable":true,"uid":false}],"namespace":["industry","_body","InlineJotForm"]},{"name":"SolutionsRow","label":"Industry Solutions Row","fields":[{"type":"image","label":"1st Card Image","name":"imgSrc1","uploadDir":{"namespace":["industry","_body","SolutionsRow","imgSrc1","uploadDir"]},"namespace":["industry","_body","SolutionsRow","imgSrc1"],"searchable":false,"uid":false},{"type":"string","label":"1st Header","name":"header1","namespace":["industry","_body","SolutionsRow","header1"],"searchable":true,"uid":false},{"type":"rich-text","label":"1st Body","name":"body1","namespace":["industry","_body","SolutionsRow","body1"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"image","label":"2nd Card Image","name":"imgSrc2","uploadDir":{"namespace":["industry","_body","SolutionsRow","imgSrc2","uploadDir"]},"namespace":["industry","_body","SolutionsRow","imgSrc2"],"searchable":false,"uid":false},{"type":"string","label":"2nd Header","name":"header2","namespace":["industry","_body","SolutionsRow","header2"],"searchable":true,"uid":false},{"type":"rich-text","label":"2nd Body","name":"body2","namespace":["industry","_body","SolutionsRow","body2"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"image","label":"3rd Card Image","name":"imgSrc3","uploadDir":{"namespace":["industry","_body","SolutionsRow","imgSrc3","uploadDir"]},"namespace":["industry","_body","SolutionsRow","imgSrc3"],"searchable":false,"uid":false},{"type":"string","label":"3rd Header","name":"header3","namespace":["industry","_body","SolutionsRow","header3"],"searchable":true,"uid":false},{"type":"rich-text","label":"3rd Body","name":"body3","namespace":["industry","_body","SolutionsRow","body3"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["industry","_body","SolutionsRow"]},{"name":"Whitepaper","label":"Whitepaper","fields":[{"type":"string","label":"Title","name":"title","required":true,"namespace":["industry","_body","Whitepaper","title"],"searchable":true,"uid":false},{"type":"string","label":"Description","name":"description","required":true,"namespace":["industry","_body","Whitepaper","description"],"searchable":true,"uid":false},{"type":"string","label":"Button Text","name":"buttonText","required":true,"namespace":["industry","_body","Whitepaper","buttonText"],"searchable":true,"uid":false},{"type":"image","label":"Whitepaper File","name":"whitepaperFile","required":true,"namespace":["industry","_body","Whitepaper","whitepaperFile"],"searchable":false,"uid":false}],"namespace":["industry","_body","Whitepaper"]},{"name":"BookingForm","label":"Consulting Enquiry Form","fields":[{"type":"string","label":"Placeholder","name":"placeholder","ui":{},"namespace":["industry","_body","BookingForm","placeholder"],"searchable":true,"uid":false}],"namespace":["industry","_body","BookingForm"]},{"name":"ContactUs","label":"Contact Us","fields":[{"type":"string","label":"Button Text","name":"buttonText","namespace":["industry","_body","ContactUs","buttonText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"link","namespace":["industry","_body","ContactUs","link"],"searchable":true,"uid":false}],"namespace":["industry","_body","ContactUs"]}],"isBody":true,"namespace":["industry","_body"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["industry"]},{"label":"Live - Pages","name":"live","path":"content/live","format":"mdx","ui":{"allowedActions":{"create":false,"delete":false}},"fields":[{"type":"object","label":"SEO Values","name":"seo","fields":[{"type":"string","label":"Title (70 characters)","name":"title","ui":{},"namespace":["live","seo","title"],"searchable":true,"uid":false},{"type":"string","label":"Description (150 characters)","name":"description","component":"textarea","ui":{},"namespace":["live","seo","description"],"searchable":true,"uid":false},{"type":"string","label":"Canonical URL","name":"canonical","namespace":["live","seo","canonical"],"searchable":true,"uid":false},{"type":"boolean","name":"showBreadcrumb","label":"Show Breadcrumb","namespace":["live","seo","showBreadcrumb"],"searchable":true,"uid":false},{"label":"Images","name":"images","list":true,"type":"object","ui":{"defaultItem":{"url":"/images/ssw-default-og.jpg","width":1200,"height":630,"alt":"SSW Consulting - Enterprise Software Development"}},"fields":[{"type":"image","label":"Image Url","name":"url","require":true,"namespace":["officeIndex","seo","images","url"],"searchable":false,"uid":false},{"type":"number","label":"Width (px)","name":"width","namespace":["officeIndex","seo","images","width"],"searchable":true,"uid":false},{"type":"number","label":"Height (px)","name":"height","namespace":["officeIndex","seo","images","height"],"searchable":true,"uid":false},{"type":"string","label":"Image Alt Text","name":"alt","namespace":["officeIndex","seo","images","alt"],"searchable":true,"uid":false}],"namespace":["live","seo","images"],"searchable":true,"uid":false}],"namespace":["live","seo"],"searchable":true,"uid":false},{"type":"string","name":"title","label":"Title","namespace":["live","title"],"searchable":true,"uid":false},{"type":"rich-text","isBody":true,"name":"subtitle","label":"Subtitle","templates":[{"name":"AboutUs","label":"About Us","ui":{"previewSrc":"/images/thumbs/tina/about-us.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["live","subtitle","AboutUs","backgroundColor"],"searchable":true,"uid":false},{"type":"boolean","label":"Show Map","name":"showMap","required":false,"namespace":["live","subtitle","AboutUs","showMap"],"searchable":true,"uid":false}],"namespace":["live","subtitle","AboutUs"]},{"label":"Agenda","name":"Agenda","ui":{"previewSrc":"/images/thumbs/tina/agenda.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["live","subtitle","Agenda","header"],"searchable":true,"uid":false},{"type":"string","label":"Header Color","name":"textColor","options":[{"label":"Red","value":"red"},{"label":"Gray","value":"gray"},{"label":"Default","value":"default"}],"namespace":["live","subtitle","Agenda","textColor"],"searchable":true,"uid":false},{"type":"object","label":"Agenda Items","name":"agendaItemList","ui":{},"list":true,"fields":[{"type":"string","label":"Placeholder Text","name":"placeholder","namespace":["marketing","mediaComponent","Agenda","agendaItemList","placeholder"]},{"type":"rich-text","label":"Body","name":"body","templates":[{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["offices","map","Agenda","agendaItemList","body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["offices","map","Agenda","agendaItemList","body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["offices","map","Agenda","agendaItemList","body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["offices","map","Agenda","agendaItemList","body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["offices","map","Agenda","agendaItemList","body","VerticalListItem","afterBody"]}],"namespace":["offices","aboutUs","Agenda","agendaItemList","body","VerticalListItem"]}],"namespace":["marketing","mediaComponent","Agenda","agendaItemList","body"]}],"namespace":["live","subtitle","Agenda","agendaItemList"],"searchable":true,"uid":false}],"namespace":["live","subtitle","Agenda"]},{"label":"Agreement Form","name":"AgreementForm","ui":{"previewSrc":"/images/thumbs/tina/agreement-form.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["live","subtitle","AgreementForm","backgroundColor"],"searchable":true,"uid":false},{"type":"object","label":"Form fields","name":"fields","list":true,"fields":[{"type":"string","label":"ID","name":"id","required":true,"namespace":["marketing","mediaComponent","AgreementForm","fields","id"]},{"type":"string","label":"Label","name":"label","required":true,"namespace":["marketing","mediaComponent","AgreementForm","fields","label"]},{"type":"string","label":"Placeholder","name":"placeholder","namespace":["marketing","mediaComponent","AgreementForm","fields","placeholder"]},{"type":"boolean","label":"Resizeable","name":"resizeable","required":true,"namespace":["marketing","mediaComponent","AgreementForm","fields","resizeable"]}],"namespace":["live","subtitle","AgreementForm","fields"],"searchable":true,"uid":false}],"namespace":["live","subtitle","AgreementForm"]},{"label":"Interest Form","name":"InterestForm","ui":{"previewSrc":"/images/thumbs/tina/interest-form.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["live","subtitle","InterestForm","buttonText"],"searchable":true,"uid":false}],"namespace":["live","subtitle","InterestForm"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["live","subtitle","BookingButton","buttonText"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","namespace":["live","subtitle","BookingButton","animated"],"searchable":true,"uid":false},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["live","subtitle","BookingButton","buttonSubtitle"],"searchable":true,"uid":false}],"namespace":["live","subtitle","BookingButton"]},{"name":"BuiltOnAzure","label":"Built on Azure","ui":{"previewSrc":"/images/thumbs/tina/built-on-azure.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["live","subtitle","BuiltOnAzure","backgroundColor"],"searchable":true,"uid":false}],"namespace":["live","subtitle","BuiltOnAzure"]},{"name":"Carousel","label":"Carousel","ui":{"previewSrc":"/images/thumbs/tina/carousel.jpg"},"fields":[{"label":"Items","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Item description","link":"/","openIn":"sameWindow"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["marketing","mediaComponent","Carousel","items","label"]},{"type":"string","label":"URL","name":"link","description":"If link contains ssw.com.au, you can skip the full URL and just use the path. e.g. /services","namespace":["marketing","mediaComponent","Carousel","items","link"]},{"type":"string","label":"Open in","name":"openIn","description":"If it is external link, please select 'New window' option.","options":[{"label":"Same window","value":"sameWindow"},{"label":"Modal","value":"modal"},{"label":"New window","value":"newWindow"}],"namespace":["marketing","mediaComponent","Carousel","items","openIn"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","Carousel","items","imgSrc","uploadDir"]},"namespace":["marketing","mediaComponent","Carousel","items","imgSrc"]}],"namespace":["live","subtitle","Carousel","items"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["live","subtitle","Carousel","backgroundColor"],"searchable":true,"uid":false},{"type":"number","label":"Delay (Seconds)","name":"delay","required":true,"namespace":["live","subtitle","Carousel","delay"],"searchable":true,"uid":false},{"type":"boolean","label":"Show on mobile devices","name":"showOnMobileDevices","namespace":["live","subtitle","Carousel","showOnMobileDevices"],"searchable":true,"uid":false}],"namespace":["live","subtitle","Carousel"]},{"name":"Citation","label":"Citation","fields":[{"type":"string","label":"author","name":"author","namespace":["live","subtitle","Citation","author"],"searchable":true,"uid":false},{"type":"string","label":"article","name":"article","required":true,"namespace":["live","subtitle","Citation","article"],"searchable":true,"uid":false}],"namespace":["live","subtitle","Citation"]},{"label":"Client List","name":"ClientList","ui":{"previewSrc":"/images/thumbs/tina/clients-list.jpg"},"fields":[{"type":"object","name":"categories","label":"Categories","list":true,"fields":[{"type":"reference","name":"category","label":"Category","collections":["clientCategories"],"namespace":["marketing","mediaComponent","ClientList","categories","category"]}],"ui":{},"namespace":["live","subtitle","ClientList","categories"],"searchable":true,"uid":false},{"type":"object","name":"clients","label":"Clients list","list":true,"ui":{"previewSrc":"/images/thumbs/tina/clients-list.jpg"},"fields":[{"type":"string","name":"name","label":"Name","namespace":["marketing","mediaComponent","ClientList","clients","name"]},{"type":"image","name":"logo","label":"Logo","namespace":["marketing","mediaComponent","ClientList","clients","logo"]},{"type":"string","name":"logoUrl","label":"Logo URL","namespace":["marketing","mediaComponent","ClientList","clients","logoUrl"]},{"type":"rich-text","name":"content","label":"Content","templates":[{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["offices","map","ClientList","clients","content","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["offices","map","ClientList","clients","content","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["offices","map","ClientList","clients","content","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["offices","map","ClientList","clients","content","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["offices","map","ClientList","clients","content","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["offices","map","ClientList","clients","content","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["offices","map","ClientList","clients","content","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["offices","map","ClientList","clients","content","UtilityButton","openInNewTab"]}],"namespace":["offices","aboutUs","ClientList","clients","content","UtilityButton"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","map","ClientList","clients","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","map","ClientList","clients","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","map","ClientList","clients","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","map","ClientList","clients","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","map","ClientList","clients","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","map","ClientList","clients","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","map","ClientList","clients","content","VideoEmbed","duration"]}],"namespace":["offices","aboutUs","ClientList","clients","content","VideoEmbed"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","map","ClientList","clients","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","map","ClientList","clients","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","map","ClientList","clients","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","map","ClientList","clients","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","map","ClientList","clients","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","map","ClientList","clients","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","map","ClientList","clients","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","map","ClientList","clients","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","map","ClientList","clients","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","map","ClientList","clients","content","CustomImage","sizes"]}],"namespace":["offices","aboutUs","ClientList","clients","content","CustomImage"]},{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["offices","map","ClientList","clients","content","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["offices","map","ClientList","clients","content","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","parking","ClientList","clients","content","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","parking","ClientList","clients","content","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","parking","ClientList","clients","content","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","parking","ClientList","clients","content","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","parking","ClientList","clients","content","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","parking","ClientList","clients","content","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","parking","ClientList","clients","content","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","parking","ClientList","clients","content","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","parking","ClientList","clients","content","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","parking","ClientList","clients","content","ContentCard","content","CustomImage","sizes"]}],"namespace":["offices","directions","ClientList","clients","content","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["offices","parking","ClientList","clients","content","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["offices","parking","ClientList","clients","content","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["offices","parking","ClientList","clients","content","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["offices","parking","ClientList","clients","content","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["offices","parking","ClientList","clients","content","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["offices","directions","ClientList","clients","content","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","parking","ClientList","clients","content","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","parking","ClientList","clients","content","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","parking","ClientList","clients","content","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","parking","ClientList","clients","content","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","parking","ClientList","clients","content","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","parking","ClientList","clients","content","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","parking","ClientList","clients","content","ContentCard","content","VideoEmbed","duration"]}],"namespace":["offices","directions","ClientList","clients","content","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","parking","ClientList","clients","content","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["offices","parking","ClientList","clients","content","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","publicTransport","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["offices","publicTransport","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","publicTransport","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["offices","publicTransport","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["offices","publicTransport","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["offices","parking","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["offices","directions","ClientList","clients","content","ContentCard","content","ColorBlock"]}],"namespace":["offices","map","ClientList","clients","content","ContentCard","content"]}],"namespace":["offices","aboutUs","ClientList","clients","content","ContentCard"]}],"namespace":["marketing","mediaComponent","ClientList","clients","content"]},{"type":"string","name":"caseStudyUrl","label":"Case study URL","namespace":["marketing","mediaComponent","ClientList","clients","caseStudyUrl"]},{"type":"object","name":"categories","label":"Categories","list":true,"ui":{},"fields":[{"type":"reference","name":"category","label":"Category","collections":["clientCategories"],"namespace":["offices","aboutUs","ClientList","clients","categories","category"]}],"namespace":["marketing","mediaComponent","ClientList","clients","categories"]}],"namespace":["live","subtitle","ClientList","clients"],"searchable":true,"uid":false}],"namespace":["live","subtitle","ClientList"]},{"name":"ClientLogos","label":"Client Logos","ui":{"previewSrc":"/images/thumbs/tina/client-logos.jpg"},"fields":[{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["live","subtitle","ClientLogos","altText"],"searchable":true,"uid":false}],"namespace":["live","subtitle","ClientLogos"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["live","subtitle","ColorBlock","title"],"searchable":true,"uid":false},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["live","subtitle","ColorBlock","subTitle"],"searchable":true,"uid":false},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["marketing","mediaComponent","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["marketing","mediaComponent","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["marketing","mediaComponent","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["marketing","mediaComponent","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["marketing","mediaComponent","ColorBlock","colorRow","caption"]}],"namespace":["live","subtitle","ColorBlock","colorRow"],"searchable":true,"uid":false}],"namespace":["live","subtitle","ColorBlock"]},{"name":"ColorPalette","label":"Color Palette","ui":{"previewSrc":"/images/thumbs/tina/color-palette.jpg"},"fields":[{"type":"string","label":"Name","name":"name","namespace":["live","subtitle","ColorPalette","name"],"searchable":true,"uid":false}],"namespace":["live","subtitle","ColorPalette"]},{"name":"Content","label":"Content","ui":{"previewSrc":"/images/thumbs/tina/content.jpg","defaultItem":{"body":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["live","subtitle","Content","title"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","aboutUs","Content","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","aboutUs","Content","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","aboutUs","Content","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","aboutUs","Content","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","aboutUs","Content","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","aboutUs","Content","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","aboutUs","Content","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","aboutUs","Content","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","aboutUs","Content","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","aboutUs","Content","content","CustomImage","sizes"]}],"namespace":["marketing","mediaComponent","Content","content","CustomImage"]},{"name":"ClientLogos","label":"Client Logos","ui":{"previewSrc":"/images/thumbs/tina/client-logos.jpg"},"fields":[{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","aboutUs","Content","content","ClientLogos","altText"]}],"namespace":["marketing","mediaComponent","Content","content","ClientLogos"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","aboutUs","Content","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","aboutUs","Content","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","aboutUs","Content","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","aboutUs","Content","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","aboutUs","Content","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","aboutUs","Content","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","aboutUs","Content","content","VideoEmbed","duration"]}],"namespace":["marketing","mediaComponent","Content","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","aboutUs","Content","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["offices","aboutUs","Content","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","map","Content","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["offices","map","Content","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","map","Content","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["offices","map","Content","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["offices","map","Content","content","ColorBlock","colorRow","caption"]}],"namespace":["offices","aboutUs","Content","content","ColorBlock","colorRow"]}],"namespace":["marketing","mediaComponent","Content","content","ColorBlock"]}],"namespace":["live","subtitle","Content","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Container Padding","name":"paddingClass","options":["Mobile: No Padding","Mobile: No Top and Horizontal Padding"],"namespace":["live","subtitle","Content","paddingClass"],"searchable":true,"uid":false},{"type":"string","label":"Text size","name":"size","options":[{"label":"small","value":"sm"},{"label":"normal","value":"base"},{"label":"large","value":"lg"},{"label":"extra large","value":"xl"},{"label":"2x large","value":"2xl"}],"namespace":["live","subtitle","Content","size"],"searchable":true,"uid":false},{"type":"string","label":"Align","name":"align","options":[{"label":"Left","value":"left"},{"label":"Center","value":"center"},{"label":"Right","value":"right"}],"namespace":["live","subtitle","Content","align"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["live","subtitle","Content","backgroundColor"],"searchable":true,"uid":false}],"namespace":["live","subtitle","Content"]},{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["live","subtitle","ContentCard","prose"],"searchable":true,"uid":false},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["live","subtitle","ContentCard","centerAlignedText"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","aboutUs","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","aboutUs","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","aboutUs","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","aboutUs","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","aboutUs","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","aboutUs","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","aboutUs","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","aboutUs","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","aboutUs","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","aboutUs","ContentCard","content","CustomImage","sizes"]}],"namespace":["marketing","mediaComponent","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["offices","aboutUs","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["offices","aboutUs","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["offices","aboutUs","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["offices","aboutUs","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["offices","aboutUs","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["marketing","mediaComponent","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","aboutUs","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","aboutUs","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","aboutUs","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","aboutUs","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","aboutUs","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","aboutUs","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","aboutUs","ContentCard","content","VideoEmbed","duration"]}],"namespace":["marketing","mediaComponent","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","aboutUs","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["offices","aboutUs","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","map","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["offices","map","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","map","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["offices","map","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["offices","map","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["offices","aboutUs","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["marketing","mediaComponent","ContentCard","content","ColorBlock"]}],"namespace":["live","subtitle","ContentCard","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["live","subtitle","ContentCard"]},{"name":"CustomDownloadButton","label":"Custom Download Button","ui":{"previewSrc":"/images/thumbs/tina/custom-download-button.jpg"},"fields":[{"type":"string","label":"Text","name":"btnText","namespace":["live","subtitle","CustomDownloadButton","btnText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"btnLink","namespace":["live","subtitle","CustomDownloadButton","btnLink"],"searchable":true,"uid":false}],"namespace":["live","subtitle","CustomDownloadButton"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["live","subtitle","CustomImage","src"],"searchable":false,"uid":false},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["live","subtitle","CustomImage","altText"],"searchable":true,"uid":false},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["live","subtitle","CustomImage","alignment"],"searchable":true,"uid":false},{"type":"number","label":"Height","name":"height","required":true,"namespace":["live","subtitle","CustomImage","height"],"searchable":true,"uid":false},{"type":"number","label":"Width","name":"width","required":true,"namespace":["live","subtitle","CustomImage","width"],"searchable":true,"uid":false},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["live","subtitle","CustomImage","link"],"searchable":true,"uid":false},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["live","subtitle","CustomImage","customClass"],"searchable":true,"uid":false},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["live","subtitle","CustomImage","caption"],"searchable":true,"uid":false},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["live","subtitle","CustomImage","captionColor"],"searchable":true,"uid":false},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["live","subtitle","CustomImage","sizes"],"searchable":true,"uid":false}],"namespace":["live","subtitle","CustomImage"]},{"name":"DomainFromQuery","label":"Domain from query","ui":{"previewSrc":"/images/thumbs/tina/domain-from-query.jpg"},"fields":[{"name":"title","label":"Title","type":"string","description":"This is a H1 heading","namespace":["live","subtitle","DomainFromQuery","title"],"searchable":true,"uid":false},{"name":"showDomain","label":"Show domain name","type":"boolean","description":"Query param in URL must have key of 'domain'","namespace":["live","subtitle","DomainFromQuery","showDomain"],"searchable":true,"uid":false}],"namespace":["live","subtitle","DomainFromQuery"]},{"name":"DownloadBlock","label":"Download Block","ui":{"previewSrc":"/images/thumbs/tina/download-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["live","subtitle","DownloadBlock","title"],"searchable":true,"uid":false},{"type":"object","label":"Downloads","name":"downloads","ui":{},"list":true,"fields":[{"type":"string","label":"Header","name":"header","namespace":["marketing","mediaComponent","DownloadBlock","downloads","header"]},{"type":"image","label":"Image","name":"img","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","img","uploadDir"]},"namespace":["marketing","mediaComponent","DownloadBlock","downloads","img"]},{"type":"string","label":"Image Background","name":"imgBackground","options":["black","grey","white","darkgrey","darkgreen"],"namespace":["marketing","mediaComponent","DownloadBlock","downloads","imgBackground"]},{"type":"string","label":"First Link Text","name":"firstLinkText","description":"Defaults to PNG","namespace":["marketing","mediaComponent","DownloadBlock","downloads","firstLinkText"]},{"type":"image","label":"First Link","name":"firstLink","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","firstLink","uploadDir"]},"namespace":["marketing","mediaComponent","DownloadBlock","downloads","firstLink"]},{"type":"string","label":"Second Link Text","name":"secondLinkText","description":"Defaults to PDF","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","secondLinkText","uploadDir"]},"namespace":["marketing","mediaComponent","DownloadBlock","downloads","secondLinkText"]},{"type":"image","label":"Second Link","name":"secondLink","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","secondLink","uploadDir"]},"namespace":["marketing","mediaComponent","DownloadBlock","downloads","secondLink"]}],"namespace":["live","subtitle","DownloadBlock","downloads"],"searchable":true,"uid":false},{"type":"boolean","label":"Bottom border","name":"bottomBorder","namespace":["live","subtitle","DownloadBlock","bottomBorder"],"searchable":true,"uid":false}],"namespace":["live","subtitle","DownloadBlock"]},{"name":"DynamicColumns","label":"Dynamic Column Layout","fields":[{"type":"rich-text","label":"Column text body","name":"colBody","required":true,"namespace":["live","subtitle","DynamicColumns","colBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"number","label":"Number of columns","name":"colCount","required":true,"ui":{},"namespace":["live","subtitle","DynamicColumns","colCount"],"searchable":true,"uid":false}],"namespace":["live","subtitle","DynamicColumns"]},{"name":"EventBooking","label":"Events Booking","ui":{"previewSrc":"/images/thumbs/tina/events-booking.jpg"},"fields":[{"type":"number","label":"Duration (In Days)","name":"eventDurationInDays","required":true,"namespace":["live","subtitle","EventBooking","eventDurationInDays"],"searchable":true,"uid":false},{"type":"number","label":"Price","name":"price","required":true,"namespace":["live","subtitle","EventBooking","price"],"searchable":true,"uid":false},{"type":"number","label":"Discount Price","name":"discountPrice","namespace":["live","subtitle","EventBooking","discountPrice"],"searchable":true,"uid":false},{"type":"string","name":"gstText","label":"Select GST Option","options":["inc GST","+ GST"],"required":true,"namespace":["live","subtitle","EventBooking","gstText"],"searchable":true,"uid":false},{"type":"string","label":"Discount Note","name":"discountNote","namespace":["live","subtitle","EventBooking","discountNote"],"searchable":true,"uid":false},{"type":"object","label":"Event","name":"eventList","ui":{},"list":true,"fields":[{"type":"string","label":"City","name":"city","namespace":["marketing","mediaComponent","EventBooking","eventList","city"]},{"type":"datetime","label":"Start Date","name":"date","ui":{},"namespace":["marketing","mediaComponent","EventBooking","eventList","date"]},{"type":"string","label":"Booking URL","name":"bookingURL","namespace":["marketing","mediaComponent","EventBooking","eventList","bookingURL"]},{"type":"reference","label":"Location","name":"location","collections":["locations"],"namespace":["marketing","mediaComponent","EventBooking","eventList","location"]}],"namespace":["live","subtitle","EventBooking","eventList"],"searchable":true,"uid":false}],"namespace":["live","subtitle","EventBooking"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["offices","aboutUs","EventLink","content","Flag","country"]}],"namespace":["marketing","mediaComponent","EventLink","content","Flag"]}],"namespace":["live","subtitle","EventLink","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Link","name":"link","namespace":["live","subtitle","EventLink","link"],"searchable":true,"uid":false},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["live","subtitle","EventLink","eventThumbnail"],"searchable":false,"uid":false},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["live","subtitle","EventLink","thumbnailAlt"],"searchable":true,"uid":false}],"namespace":["live","subtitle","EventLink"]},{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["live","subtitle","Flag","country"],"searchable":true,"uid":false}],"namespace":["live","subtitle","Flag"]},{"name":"FixedColumns","label":"Fixed Column Layout (2 columns)","ui":{"previewSrc":"/images/thumbs/tina/fixed-columns.jpg"},"fields":[{"type":"rich-text","label":"Header Section (Optional)","name":"headerSection","namespace":["live","subtitle","FixedColumns","headerSection"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"First column text","name":"firstColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["offices","aboutUs","FixedColumns","firstColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["offices","aboutUs","FixedColumns","firstColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","directions","FixedColumns","firstColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","directions","FixedColumns","firstColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","directions","FixedColumns","firstColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","directions","FixedColumns","firstColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","directions","FixedColumns","firstColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","directions","FixedColumns","firstColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","directions","FixedColumns","firstColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","directions","FixedColumns","firstColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","directions","FixedColumns","firstColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","directions","FixedColumns","firstColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["offices","map","FixedColumns","firstColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["offices","directions","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["offices","directions","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["offices","directions","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["offices","directions","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["offices","directions","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["offices","map","FixedColumns","firstColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","directions","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","directions","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","directions","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","directions","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","directions","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","directions","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","directions","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["offices","map","FixedColumns","firstColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","directions","FixedColumns","firstColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["offices","directions","FixedColumns","firstColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","parking","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["offices","parking","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","parking","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["offices","parking","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["offices","parking","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["offices","directions","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["offices","map","FixedColumns","firstColBody","ContentCard","content","ColorBlock"]}],"namespace":["offices","aboutUs","FixedColumns","firstColBody","ContentCard","content"]}],"namespace":["marketing","mediaComponent","FixedColumns","firstColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","aboutUs","FixedColumns","firstColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","aboutUs","FixedColumns","firstColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","aboutUs","FixedColumns","firstColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","aboutUs","FixedColumns","firstColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","aboutUs","FixedColumns","firstColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","aboutUs","FixedColumns","firstColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","aboutUs","FixedColumns","firstColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","aboutUs","FixedColumns","firstColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","aboutUs","FixedColumns","firstColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","aboutUs","FixedColumns","firstColBody","CustomImage","sizes"]}],"namespace":["marketing","mediaComponent","FixedColumns","firstColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["offices","directions","FixedColumns","firstColBody","EventLink","content","Flag","country"]}],"namespace":["offices","map","FixedColumns","firstColBody","EventLink","content","Flag"]}],"namespace":["offices","aboutUs","FixedColumns","firstColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["offices","aboutUs","FixedColumns","firstColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["offices","aboutUs","FixedColumns","firstColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["offices","aboutUs","FixedColumns","firstColBody","EventLink","thumbnailAlt"]}],"namespace":["marketing","mediaComponent","FixedColumns","firstColBody","EventLink"]}],"namespace":["live","subtitle","FixedColumns","firstColBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"Second column text","name":"secondColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["offices","aboutUs","FixedColumns","secondColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["offices","aboutUs","FixedColumns","secondColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","directions","FixedColumns","secondColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","directions","FixedColumns","secondColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","directions","FixedColumns","secondColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","directions","FixedColumns","secondColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","directions","FixedColumns","secondColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","directions","FixedColumns","secondColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","directions","FixedColumns","secondColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","directions","FixedColumns","secondColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","directions","FixedColumns","secondColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","directions","FixedColumns","secondColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["offices","map","FixedColumns","secondColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["offices","directions","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["offices","directions","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["offices","directions","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["offices","directions","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["offices","directions","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["offices","map","FixedColumns","secondColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","directions","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","directions","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","directions","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","directions","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","directions","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","directions","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","directions","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["offices","map","FixedColumns","secondColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","directions","FixedColumns","secondColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["offices","directions","FixedColumns","secondColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","parking","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["offices","parking","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","parking","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["offices","parking","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["offices","parking","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["offices","directions","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["offices","map","FixedColumns","secondColBody","ContentCard","content","ColorBlock"]}],"namespace":["offices","aboutUs","FixedColumns","secondColBody","ContentCard","content"]}],"namespace":["marketing","mediaComponent","FixedColumns","secondColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","aboutUs","FixedColumns","secondColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","aboutUs","FixedColumns","secondColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","aboutUs","FixedColumns","secondColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","aboutUs","FixedColumns","secondColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","aboutUs","FixedColumns","secondColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","aboutUs","FixedColumns","secondColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","aboutUs","FixedColumns","secondColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","aboutUs","FixedColumns","secondColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","aboutUs","FixedColumns","secondColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","aboutUs","FixedColumns","secondColBody","CustomImage","sizes"]}],"namespace":["marketing","mediaComponent","FixedColumns","secondColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["offices","directions","FixedColumns","secondColBody","EventLink","content","Flag","country"]}],"namespace":["offices","map","FixedColumns","secondColBody","EventLink","content","Flag"]}],"namespace":["offices","aboutUs","FixedColumns","secondColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["offices","aboutUs","FixedColumns","secondColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["offices","aboutUs","FixedColumns","secondColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["offices","aboutUs","FixedColumns","secondColBody","EventLink","thumbnailAlt"]}],"namespace":["marketing","mediaComponent","FixedColumns","secondColBody","EventLink"]}],"namespace":["live","subtitle","FixedColumns","secondColBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["live","subtitle","FixedColumns"]},{"name":"FixedTabsLayout","label":"Fixed Tabs Layout","ui":{"previewSrc":"/images/thumbs/tina/fixed-tabs-layout.jpg"},"fields":[{"type":"string","name":"firstTab","label":"First Tab","namespace":["live","subtitle","FixedTabsLayout","firstTab"],"searchable":true,"uid":false},{"type":"rich-text","name":"firstHeading","label":"First Heading","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","aboutUs","FixedTabsLayout","firstHeading","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","aboutUs","FixedTabsLayout","firstHeading","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","aboutUs","FixedTabsLayout","firstHeading","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","aboutUs","FixedTabsLayout","firstHeading","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","aboutUs","FixedTabsLayout","firstHeading","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","aboutUs","FixedTabsLayout","firstHeading","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","aboutUs","FixedTabsLayout","firstHeading","VideoEmbed","duration"]}],"namespace":["marketing","mediaComponent","FixedTabsLayout","firstHeading","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["offices","aboutUs","FixedTabsLayout","firstHeading","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["offices","aboutUs","FixedTabsLayout","firstHeading","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["offices","aboutUs","FixedTabsLayout","firstHeading","BookingButton","buttonSubtitle"]}],"namespace":["marketing","mediaComponent","FixedTabsLayout","firstHeading","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["offices","aboutUs","FixedTabsLayout","firstHeading","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["offices","map","FixedTabsLayout","firstHeading","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["offices","map","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["offices","map","FixedTabsLayout","firstHeading","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["offices","map","FixedTabsLayout","firstHeading","ExpertBlock","expertList","skills"]}],"namespace":["offices","aboutUs","FixedTabsLayout","firstHeading","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["offices","map","FixedTabsLayout","firstHeading","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["offices","map","FixedTabsLayout","firstHeading","ExpertBlock","link","url"]}],"namespace":["offices","aboutUs","FixedTabsLayout","firstHeading","ExpertBlock","link"]}],"namespace":["marketing","mediaComponent","FixedTabsLayout","firstHeading","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","map","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["offices","map","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["offices","map","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["offices","directions","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["offices","directions","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["offices","directions","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["offices","map","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["offices","aboutUs","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["marketing","mediaComponent","FixedTabsLayout","firstHeading","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","aboutUs","FixedTabsLayout","firstHeading","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","aboutUs","FixedTabsLayout","firstHeading","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","aboutUs","FixedTabsLayout","firstHeading","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","aboutUs","FixedTabsLayout","firstHeading","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","aboutUs","FixedTabsLayout","firstHeading","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","aboutUs","FixedTabsLayout","firstHeading","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","aboutUs","FixedTabsLayout","firstHeading","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","aboutUs","FixedTabsLayout","firstHeading","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","aboutUs","FixedTabsLayout","firstHeading","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","aboutUs","FixedTabsLayout","firstHeading","CustomImage","sizes"]}],"namespace":["marketing","mediaComponent","FixedTabsLayout","firstHeading","CustomImage"]}],"namespace":["live","subtitle","FixedTabsLayout","firstHeading"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","name":"firstBody","label":"First Body","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","aboutUs","FixedTabsLayout","firstBody","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","aboutUs","FixedTabsLayout","firstBody","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","aboutUs","FixedTabsLayout","firstBody","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","aboutUs","FixedTabsLayout","firstBody","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","aboutUs","FixedTabsLayout","firstBody","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","aboutUs","FixedTabsLayout","firstBody","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","aboutUs","FixedTabsLayout","firstBody","VideoEmbed","duration"]}],"namespace":["marketing","mediaComponent","FixedTabsLayout","firstBody","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["offices","aboutUs","FixedTabsLayout","firstBody","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["offices","aboutUs","FixedTabsLayout","firstBody","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["offices","aboutUs","FixedTabsLayout","firstBody","BookingButton","buttonSubtitle"]}],"namespace":["marketing","mediaComponent","FixedTabsLayout","firstBody","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["offices","aboutUs","FixedTabsLayout","firstBody","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["offices","map","FixedTabsLayout","firstBody","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["offices","map","FixedTabsLayout","firstBody","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["offices","map","FixedTabsLayout","firstBody","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["offices","map","FixedTabsLayout","firstBody","ExpertBlock","expertList","skills"]}],"namespace":["offices","aboutUs","FixedTabsLayout","firstBody","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["offices","map","FixedTabsLayout","firstBody","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["offices","map","FixedTabsLayout","firstBody","ExpertBlock","link","url"]}],"namespace":["offices","aboutUs","FixedTabsLayout","firstBody","ExpertBlock","link"]}],"namespace":["marketing","mediaComponent","FixedTabsLayout","firstBody","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","map","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["offices","map","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["offices","map","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["offices","directions","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["offices","directions","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["offices","directions","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["offices","map","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["offices","aboutUs","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["marketing","mediaComponent","FixedTabsLayout","firstBody","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","aboutUs","FixedTabsLayout","firstBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","aboutUs","FixedTabsLayout","firstBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","aboutUs","FixedTabsLayout","firstBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","aboutUs","FixedTabsLayout","firstBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","aboutUs","FixedTabsLayout","firstBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","aboutUs","FixedTabsLayout","firstBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","aboutUs","FixedTabsLayout","firstBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","aboutUs","FixedTabsLayout","firstBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","aboutUs","FixedTabsLayout","firstBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","aboutUs","FixedTabsLayout","firstBody","CustomImage","sizes"]}],"namespace":["marketing","mediaComponent","FixedTabsLayout","firstBody","CustomImage"]}],"namespace":["live","subtitle","FixedTabsLayout","firstBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","name":"secondTab","label":"Second Tab","namespace":["live","subtitle","FixedTabsLayout","secondTab"],"searchable":true,"uid":false},{"type":"rich-text","name":"secondHeading","label":"Second Heading","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","aboutUs","FixedTabsLayout","secondHeading","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","aboutUs","FixedTabsLayout","secondHeading","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","aboutUs","FixedTabsLayout","secondHeading","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","aboutUs","FixedTabsLayout","secondHeading","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","aboutUs","FixedTabsLayout","secondHeading","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","aboutUs","FixedTabsLayout","secondHeading","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","aboutUs","FixedTabsLayout","secondHeading","VideoEmbed","duration"]}],"namespace":["marketing","mediaComponent","FixedTabsLayout","secondHeading","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["offices","aboutUs","FixedTabsLayout","secondHeading","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["offices","aboutUs","FixedTabsLayout","secondHeading","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["offices","aboutUs","FixedTabsLayout","secondHeading","BookingButton","buttonSubtitle"]}],"namespace":["marketing","mediaComponent","FixedTabsLayout","secondHeading","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["offices","aboutUs","FixedTabsLayout","secondHeading","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["offices","map","FixedTabsLayout","secondHeading","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["offices","map","FixedTabsLayout","secondHeading","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["offices","map","FixedTabsLayout","secondHeading","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["offices","map","FixedTabsLayout","secondHeading","ExpertBlock","expertList","skills"]}],"namespace":["offices","aboutUs","FixedTabsLayout","secondHeading","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["offices","map","FixedTabsLayout","secondHeading","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["offices","map","FixedTabsLayout","secondHeading","ExpertBlock","link","url"]}],"namespace":["offices","aboutUs","FixedTabsLayout","secondHeading","ExpertBlock","link"]}],"namespace":["marketing","mediaComponent","FixedTabsLayout","secondHeading","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","map","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["offices","map","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["offices","map","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["offices","directions","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["offices","directions","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["offices","directions","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["offices","map","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["offices","aboutUs","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["marketing","mediaComponent","FixedTabsLayout","secondHeading","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","aboutUs","FixedTabsLayout","secondHeading","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","aboutUs","FixedTabsLayout","secondHeading","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","aboutUs","FixedTabsLayout","secondHeading","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","aboutUs","FixedTabsLayout","secondHeading","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","aboutUs","FixedTabsLayout","secondHeading","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","aboutUs","FixedTabsLayout","secondHeading","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","aboutUs","FixedTabsLayout","secondHeading","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","aboutUs","FixedTabsLayout","secondHeading","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","aboutUs","FixedTabsLayout","secondHeading","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","aboutUs","FixedTabsLayout","secondHeading","CustomImage","sizes"]}],"namespace":["marketing","mediaComponent","FixedTabsLayout","secondHeading","CustomImage"]}],"namespace":["live","subtitle","FixedTabsLayout","secondHeading"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","name":"secondBody","label":"Second Body","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","aboutUs","FixedTabsLayout","secondBody","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","aboutUs","FixedTabsLayout","secondBody","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","aboutUs","FixedTabsLayout","secondBody","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","aboutUs","FixedTabsLayout","secondBody","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","aboutUs","FixedTabsLayout","secondBody","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","aboutUs","FixedTabsLayout","secondBody","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","aboutUs","FixedTabsLayout","secondBody","VideoEmbed","duration"]}],"namespace":["marketing","mediaComponent","FixedTabsLayout","secondBody","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["offices","aboutUs","FixedTabsLayout","secondBody","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["offices","aboutUs","FixedTabsLayout","secondBody","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["offices","aboutUs","FixedTabsLayout","secondBody","BookingButton","buttonSubtitle"]}],"namespace":["marketing","mediaComponent","FixedTabsLayout","secondBody","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["offices","aboutUs","FixedTabsLayout","secondBody","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["offices","map","FixedTabsLayout","secondBody","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["offices","map","FixedTabsLayout","secondBody","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["offices","map","FixedTabsLayout","secondBody","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["offices","map","FixedTabsLayout","secondBody","ExpertBlock","expertList","skills"]}],"namespace":["offices","aboutUs","FixedTabsLayout","secondBody","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["offices","map","FixedTabsLayout","secondBody","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["offices","map","FixedTabsLayout","secondBody","ExpertBlock","link","url"]}],"namespace":["offices","aboutUs","FixedTabsLayout","secondBody","ExpertBlock","link"]}],"namespace":["marketing","mediaComponent","FixedTabsLayout","secondBody","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","map","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["offices","map","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["offices","map","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["offices","directions","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["offices","directions","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["offices","directions","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["offices","map","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["offices","aboutUs","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["marketing","mediaComponent","FixedTabsLayout","secondBody","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","aboutUs","FixedTabsLayout","secondBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","aboutUs","FixedTabsLayout","secondBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","aboutUs","FixedTabsLayout","secondBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","aboutUs","FixedTabsLayout","secondBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","aboutUs","FixedTabsLayout","secondBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","aboutUs","FixedTabsLayout","secondBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","aboutUs","FixedTabsLayout","secondBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","aboutUs","FixedTabsLayout","secondBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","aboutUs","FixedTabsLayout","secondBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","aboutUs","FixedTabsLayout","secondBody","CustomImage","sizes"]}],"namespace":["marketing","mediaComponent","FixedTabsLayout","secondBody","CustomImage"]}],"namespace":["live","subtitle","FixedTabsLayout","secondBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["live","subtitle","FixedTabsLayout"]},{"label":"Google Maps","name":"GoogleMaps","ui":{"previewSrc":"/images/thumbs/tina/google-maps.jpg"},"fields":[{"type":"string","label":"URL","name":"embedUrl","required":true,"namespace":["live","subtitle","GoogleMaps","embedUrl"],"searchable":true,"uid":false},{"type":"string","label":"Width","name":"embedWidth","namespace":["live","subtitle","GoogleMaps","embedWidth"],"searchable":true,"uid":false},{"type":"string","label":"Height","name":"embedHeight","namespace":["live","subtitle","GoogleMaps","embedHeight"],"searchable":true,"uid":false}],"namespace":["live","subtitle","GoogleMaps"]},{"label":"Grid Layout","name":"GridLayout","ui":{"previewSrc":"/images/thumbs/tina/grid-layout.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["live","subtitle","GridLayout","title"],"searchable":true,"uid":false},{"type":"object","list":true,"label":"Grid Items","name":"grids","ui":{},"fields":[{"type":"string","label":"Grid Title","name":"gridTitle","namespace":["marketing","mediaComponent","GridLayout","grids","gridTitle"]},{"type":"boolean","label":"Show Grid Title","name":"showGridTitle","namespace":["marketing","mediaComponent","GridLayout","grids","showGridTitle"]},{"type":"boolean","label":"Centered Grid Title","name":"centeredGridTitle","namespace":["marketing","mediaComponent","GridLayout","grids","centeredGridTitle"]},{"type":"boolean","label":"Show Header Divider","name":"showHeaderDivider","namespace":["marketing","mediaComponent","GridLayout","grids","showHeaderDivider"]},{"type":"boolean","label":"Offset Grid Start","name":"offsetGridStart","namespace":["marketing","mediaComponent","GridLayout","grids","offsetGridStart"]},{"type":"object","label":"Blocks","name":"blocks","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","aboutUs","GridLayout","grids","blocks","title"]},{"type":"boolean","label":"Show Title","name":"showTitle","namespace":["offices","aboutUs","GridLayout","grids","blocks","showTitle"]},{"type":"image","label":"Image","name":"image","uploadDir":{"namespace":["page","beforeBody","GridLayout","grids","blocks","image","uploadDir"]},"namespace":["offices","aboutUs","GridLayout","grids","blocks","image"]},{"type":"image","label":"Related Image","name":"relatedImage","uploadDir":{"namespace":["page","beforeBody","GridLayout","grids","blocks","relatedImage","uploadDir"]},"namespace":["offices","aboutUs","GridLayout","grids","blocks","relatedImage"]},{"type":"rich-text","name":"linkContent","label":"Link Content","templates":[{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["offices","directions","GridLayout","grids","blocks","linkContent","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["offices","directions","GridLayout","grids","blocks","linkContent","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["offices","directions","GridLayout","grids","blocks","linkContent","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["offices","directions","GridLayout","grids","blocks","linkContent","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["offices","directions","GridLayout","grids","blocks","linkContent","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["offices","directions","GridLayout","grids","blocks","linkContent","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["offices","directions","GridLayout","grids","blocks","linkContent","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["offices","directions","GridLayout","grids","blocks","linkContent","UtilityButton","openInNewTab"]}],"namespace":["offices","map","GridLayout","grids","blocks","linkContent","UtilityButton"]}],"namespace":["offices","aboutUs","GridLayout","grids","blocks","linkContent"]}],"namespace":["marketing","mediaComponent","GridLayout","grids","blocks"]}],"namespace":["live","subtitle","GridLayout","grids"],"searchable":true,"uid":false}],"namespace":["live","subtitle","GridLayout"]},{"name":"Hero","label":"Hero","ui":{"previewSrc":"/blocks/hero.png","defaultItem":{"tagline":"Here's some text above the other text","headline":"This Big Text is Totally Awesome","text":"Phasellus scelerisque, libero eu finibus rutrum, risus risus accumsan libero, nec molestie urna dui a leo."}},"fields":[{"type":"string","label":"Tagline","name":"tagline","namespace":["live","subtitle","Hero","tagline"],"searchable":true,"uid":false},{"type":"string","label":"Headline","name":"headline","namespace":["live","subtitle","Hero","headline"],"searchable":true,"uid":false},{"label":"Text","name":"text","type":"rich-text","namespace":["live","subtitle","Hero","text"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"label":"Actions","name":"actions","type":"object","list":true,"ui":{"defaultItem":{"label":"Action Label","type":"button","icon":true,"link":"/"}},"fields":[{"label":"Label","name":"label","type":"string","namespace":["marketing","mediaComponent","Hero","actions","label"]},{"label":"Type","name":"type","type":"string","options":[{"label":"Button","value":"button"},{"label":"Link","value":"link"}],"namespace":["marketing","mediaComponent","Hero","actions","type"]},{"label":"Icon","name":"icon","type":"boolean","namespace":["marketing","mediaComponent","Hero","actions","icon"]},{"label":"Link","name":"link","type":"string","namespace":["marketing","mediaComponent","Hero","actions","link"]}],"namespace":["live","subtitle","Hero","actions"],"searchable":true,"uid":false},{"type":"object","label":"Image","name":"image","fields":[{"name":"src","label":"Image Source","type":"image","namespace":["marketing","mediaComponent","Hero","image","src"]},{"name":"alt","label":"Alt Text","type":"string","namespace":["marketing","mediaComponent","Hero","image","alt"]}],"namespace":["live","subtitle","Hero","image"],"searchable":true,"uid":false},{"type":"string","label":"Color","name":"color","options":[{"label":"Default","value":"default"},{"label":"Tint","value":"tint"},{"label":"Primary","value":"primary"}],"namespace":["live","subtitle","Hero","color"],"searchable":true,"uid":false}],"namespace":["live","subtitle","Hero"]},{"name":"HorizontalCard","label":"Horizontal Card","ui":{"previewSrc":"/images/thumbs/tina/horizontal-card.jpg"},"fields":[{"type":"object","label":"Cards","name":"cardList","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["marketing","mediaComponent","HorizontalCard","cardList","title"]},{"type":"rich-text","label":"Content","name":"content","namespace":["marketing","mediaComponent","HorizontalCard","cardList","content"]},{"type":"image","label":"Thumbnail","name":"thumbnail","uploadDir":{"namespace":["page","beforeBody","HorizontalCard","cardList","thumbnail","uploadDir"]},"namespace":["marketing","mediaComponent","HorizontalCard","cardList","thumbnail"]},{"type":"string","label":"Link","name":"link","namespace":["marketing","mediaComponent","HorizontalCard","cardList","link"]}],"namespace":["live","subtitle","HorizontalCard","cardList"],"searchable":true,"uid":false},{"type":"object","label":"Button","name":"button","fields":[{"type":"string","label":"Text","name":"text","namespace":["marketing","mediaComponent","HorizontalCard","button","text"]},{"type":"string","label":"Link","name":"link","namespace":["marketing","mediaComponent","HorizontalCard","button","link"]}],"namespace":["live","subtitle","HorizontalCard","button"],"searchable":true,"uid":false}],"namespace":["live","subtitle","HorizontalCard"]},{"name":"InternalCarousel","label":"Internal Carousel","ui":{"previewSrc":"/images/thumbs/tina/internal-carousel.jpg"},"fields":[{"label":"Images","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Image description"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["marketing","mediaComponent","InternalCarousel","items","label"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","InternalCarousel","items","imgSrc","uploadDir"]},"namespace":["marketing","mediaComponent","InternalCarousel","items","imgSrc"]}],"namespace":["live","subtitle","InternalCarousel","items"],"searchable":true,"uid":false},{"type":"string","label":"Header","name":"header","namespace":["live","subtitle","InternalCarousel","header"],"searchable":true,"uid":false},{"type":"rich-text","label":"Text","name":"paragraph","isBody":false,"namespace":["live","subtitle","InternalCarousel","paragraph"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Website","name":"website","namespace":["live","subtitle","InternalCarousel","website"],"searchable":true,"uid":false},{"type":"object","label":"Technologies","name":"technologies","list":true,"ui":{},"fields":[{"type":"string","label":"Name","name":"name","namespace":["marketing","mediaComponent","InternalCarousel","technologies","name"]}],"namespace":["live","subtitle","InternalCarousel","technologies"],"searchable":true,"uid":false},{"type":"string","label":"Case Study","name":"caseStudyUrl","namespace":["live","subtitle","InternalCarousel","caseStudyUrl"],"searchable":true,"uid":false},{"type":"string","label":"Video URL","name":"videoUrl","namespace":["live","subtitle","InternalCarousel","videoUrl"],"searchable":true,"uid":false}],"namespace":["live","subtitle","InternalCarousel"]},{"label":"Join As Presenter","name":"joinAsPresenter","fields":[{"label":"Learn More Link","name":"link","type":"string","namespace":["live","subtitle","joinAsPresenter","link"],"searchable":true,"uid":false},{"label":"Image","name":"img","type":"image","namespace":["live","subtitle","joinAsPresenter","img"],"searchable":false,"uid":false}],"namespace":["live","subtitle","joinAsPresenter"]},{"label":"Join Github","name":"joinGithub","ui":{"previewSrc":"/images/thumbs/tina/join-github.jpg"},"fields":[{"label":"Title","name":"title","type":"string","namespace":["live","subtitle","joinGithub","title"],"searchable":true,"uid":false},{"label":"Join Github Link","name":"link","type":"string","namespace":["live","subtitle","joinGithub","link"],"searchable":true,"uid":false}],"namespace":["live","subtitle","joinGithub"]},{"name":"JotFormEmbed","label":"JotForm Embed","ui":{"previewSrc":"/images/thumbs/tina/jotform-embed.jpg"},"fields":[{"type":"string","name":"jotFormId","label":"JotForm Id","required":true,"namespace":["live","subtitle","JotFormEmbed","jotFormId"],"searchable":true,"uid":false},{"type":"string","label":"Button Text","name":"buttonText","namespace":["live","subtitle","JotFormEmbed","buttonText"],"searchable":true,"uid":false},{"type":"string","name":"containerClass","label":"Container Class","namespace":["live","subtitle","JotFormEmbed","containerClass"],"searchable":true,"uid":false},{"type":"string","label":"Button Class","name":"buttonClass","namespace":["live","subtitle","JotFormEmbed","buttonClass"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","namespace":["live","subtitle","JotFormEmbed","animated"],"searchable":true,"uid":false}],"namespace":["live","subtitle","JotFormEmbed"]},{"name":"LatestTech","label":"Latest Tech","ui":{"previewSrc":"/images/thumbs/tina/latest-tech.jpg"},"fields":[{"type":"reference","description":"Select a config file including a set of badges","collections":["userGroupGlobal"],"label":"Badges","name":"badges","namespace":["live","subtitle","LatestTech","badges"],"searchable":true,"uid":false}],"namespace":["live","subtitle","LatestTech"]},{"name":"LocationBlock","label":"Locations","ui":{"previewSrc":"/images/thumbs/tina/locations.jpg"},"fields":[{"type":"string","name":"title","label":"Title","namespace":["live","subtitle","LocationBlock","title"],"searchable":true,"uid":false},{"type":"object","label":"Location List","name":"locationList","list":true,"ui":{},"fields":[{"type":"reference","collections":["locations"],"label":"Location","name":"location","namespace":["marketing","mediaComponent","LocationBlock","locationList","location"]}],"namespace":["live","subtitle","LocationBlock","locationList"],"searchable":true,"uid":false},{"type":"object","name":"chapelWebsite","label":"Chapel Website","fields":[{"type":"string","name":"title","label":"Text","namespace":["marketing","mediaComponent","LocationBlock","chapelWebsite","title"]},{"type":"string","name":"URL","label":"URL","namespace":["marketing","mediaComponent","LocationBlock","chapelWebsite","URL"]}],"namespace":["live","subtitle","LocationBlock","chapelWebsite"],"searchable":true,"uid":false}],"namespace":["live","subtitle","LocationBlock"]},{"name":"NewslettersTable","label":"Newsletters Table","ui":{"previewSrc":"/images/thumbs/tina/newsletters-table.jpg"},"fields":[{"type":"string","label":"Header text","name":"headerText","namespace":["live","subtitle","NewslettersTable","headerText"],"searchable":true,"uid":false}],"namespace":["live","subtitle","NewslettersTable"]},{"label":"Organizer","name":"organizer","fields":[{"type":"image","label":"Profile Image","name":"profileImg","namespace":["live","subtitle","organizer","profileImg"],"searchable":false,"uid":false},{"type":"string","label":"Profile Link","name":"profileLink","namespace":["live","subtitle","organizer","profileLink"],"searchable":true,"uid":false},{"type":"string","label":"Name","name":"name","namespace":["live","subtitle","organizer","name"],"searchable":true,"uid":false},{"type":"string","label":"Position","name":"position","namespace":["live","subtitle","organizer","position"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","namespace":["live","subtitle","organizer","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["live","subtitle","organizer"]},{"label":"Payment Block","name":"paymentBlock","ui":{"previewSrc":"/images/thumbs/tina/payment-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["live","subtitle","paymentBlock","title"],"searchable":true,"uid":false},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["live","subtitle","paymentBlock","subTitle"],"searchable":true,"uid":false},{"type":"reference","label":"Payment Links","name":"payments","collections":["paymentDetails"],"namespace":["live","subtitle","paymentBlock","payments"],"searchable":true,"uid":false},{"type":"rich-text","label":"Footer","name":"footer","namespace":["live","subtitle","paymentBlock","footer"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"image","label":"Credit Cards Image","name":"creditImgSrc","namespace":["live","subtitle","paymentBlock","creditImgSrc"],"searchable":false,"uid":false},{"type":"string","label":"Alt Text","name":"altTxt","namespace":["live","subtitle","paymentBlock","altTxt"],"searchable":true,"uid":false}],"namespace":["live","subtitle","paymentBlock"]},{"name":"PresenterBlock","label":"Presenters","ui":{"previewSrc":"/images/thumbs/tina/presenters.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["live","subtitle","PresenterBlock","header"],"searchable":true,"uid":false},{"type":"object","name":"presenterList","label":"Presenters","list":true,"ui":{},"fields":[{"type":"reference","name":"presenter","label":"Presenters","collections":["presenter"],"namespace":["marketing","mediaComponent","PresenterBlock","presenterList","presenter"]}],"namespace":["live","subtitle","PresenterBlock","presenterList"],"searchable":true,"uid":false},{"type":"object","label":"Other Events","name":"otherEvent","fields":[{"type":"string","label":"Title","name":"title","namespace":["marketing","mediaComponent","PresenterBlock","otherEvent","title"]},{"type":"string","label":"URL","name":"eventURL","namespace":["marketing","mediaComponent","PresenterBlock","otherEvent","eventURL"]}],"namespace":["live","subtitle","PresenterBlock","otherEvent"],"searchable":true,"uid":false}],"namespace":["live","subtitle","PresenterBlock"]},{"label":"Recurring Event","name":"RecurringEvent","ui":{"previewSrc":"/images/thumbs/tina/recurring-event.jpg"},"fields":[{"type":"string","label":"Apply Link Redirect","name":"applyLinkRedirect","namespace":["live","subtitle","RecurringEvent","applyLinkRedirect"],"searchable":true,"uid":false},{"type":"string","label":"Day","name":"day","options":[{"label":"Monday","value":"monday"},{"label":"Tuesday","value":"tuesday"},{"label":"Wednesday","value":"wednesday"},{"label":"Thursday","value":"thursday"},{"label":"Friday","value":"friday"},{"label":"Saturday","value":"saturday"},{"label":"Sunday","value":"sunday"}],"required":true,"namespace":["live","subtitle","RecurringEvent","day"],"searchable":true,"uid":false}],"namespace":["live","subtitle","RecurringEvent"]},{"name":"SectionHeader","label":"Section Header","ui":{"previewSrc":"/images/thumbs/tina/section-header.jpg"},"fields":[{"type":"string","label":"Header Text","name":"headerText","namespace":["live","subtitle","SectionHeader","headerText"],"searchable":true,"uid":false}],"namespace":["live","subtitle","SectionHeader"]},{"name":"ServiceCards","label":"Service Cards","ui":{"previewSrc":"/images/thumbs/tina/services-cards.jpg"},"fields":[{"type":"string","label":"Big Cards Label","name":"bigCardsLabel","namespace":["live","subtitle","ServiceCards","bigCardsLabel"],"searchable":true,"uid":false},{"label":"Big Cards","name":"bigCards","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["marketing","mediaComponent","ServiceCards","bigCards","title"]},{"type":"string","label":"Description","component":"textarea","name":"description","namespace":["marketing","mediaComponent","ServiceCards","bigCards","description"]},{"type":"string","label":"URL","name":"link","namespace":["marketing","mediaComponent","ServiceCards","bigCards","link"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Red","value":"red"},{"label":"Light Gray","value":"lightgray"},{"label":"Medium Gray","value":"mediumgray"},{"label":"Dark Gray","value":"darkgray"}],"namespace":["marketing","mediaComponent","ServiceCards","bigCards","color"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","ServiceCards","bigCards","imgSrc","uploadDir"]},"namespace":["marketing","mediaComponent","ServiceCards","bigCards","imgSrc"]}],"namespace":["live","subtitle","ServiceCards","bigCards"],"searchable":true,"uid":false},{"type":"string","label":"Small Cards Label","name":"smallCardsLabel","namespace":["live","subtitle","ServiceCards","smallCardsLabel"],"searchable":true,"uid":false},{"label":"Small Cards","name":"smallCards","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["marketing","mediaComponent","ServiceCards","smallCards","title"]},{"type":"string","label":"URL","name":"link","namespace":["marketing","mediaComponent","ServiceCards","smallCards","link"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Red","value":"red"},{"label":"Light Gray","value":"lightgray"},{"label":"Medium Gray","value":"mediumgray"},{"label":"Dark Gray","value":"darkgray"}],"namespace":["marketing","mediaComponent","ServiceCards","smallCards","color"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","ServiceCards","smallCards","imgSrc","uploadDir"]},"namespace":["marketing","mediaComponent","ServiceCards","smallCards","imgSrc"]},{"type":"boolean","label":"External Page","description":"Select this if the link is not part of the website. This includes SSW.Rules, and SSW.People links","name":"isExternal","namespace":["marketing","mediaComponent","ServiceCards","smallCards","isExternal"]}],"namespace":["live","subtitle","ServiceCards","smallCards"],"searchable":true,"uid":false},{"label":"Links","name":"links","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["marketing","mediaComponent","ServiceCards","links","label"]},{"type":"string","label":"URL","name":"link","namespace":["marketing","mediaComponent","ServiceCards","links","link"]}],"namespace":["live","subtitle","ServiceCards","links"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["live","subtitle","ServiceCards","backgroundColor"],"searchable":true,"uid":false}],"namespace":["live","subtitle","ServiceCards"]},{"label":"Table Layout","name":"TableLayout","ui":{"previewSrc":"/images/thumbs/tina/table-layout.jpg"},"fields":[{"label":"Table Style","name":"tableStyle","type":"string","options":["none","basicBorder","styled","benefits"],"namespace":["live","subtitle","TableLayout","tableStyle"],"searchable":true,"uid":false},{"label":"First column bolded + left aligned","name":"firstColBold","type":"boolean","required":false,"namespace":["live","subtitle","TableLayout","firstColBold"],"searchable":true,"uid":false},{"type":"string","label":"Table Headers","name":"headers","list":true,"namespace":["live","subtitle","TableLayout","headers"],"searchable":true,"uid":false},{"type":"object","label":"Rows","name":"rows","list":true,"fields":[{"type":"object","label":"Cells","name":"cells","list":true,"fields":[{"type":"string","label":"Value","name":"cellValue","required":true,"component":{"namespace":["page","beforeBody","TableLayout","rows","cells","cellValue",""]},"namespace":["offices","aboutUs","TableLayout","rows","cells","cellValue"]}],"ui":{},"namespace":["marketing","mediaComponent","TableLayout","rows","cells"]},{"type":"boolean","label":"Is Heading","name":"isHeader","required":false,"namespace":["marketing","mediaComponent","TableLayout","rows","isHeader"]}],"ui":{},"namespace":["live","subtitle","TableLayout","rows"],"searchable":true,"uid":false}],"namespace":["live","subtitle","TableLayout"]},{"name":"TestimonialsList","label":"Testimonials List","ui":{"previewSrc":"/images/thumbs/tina/testimonials.jpg"},"fields":[{"type":"object","label":"Exclude Categories","name":"excludedCategories","ui":{},"list":true,"fields":[{"type":"reference","label":"Category Name","name":"categoryName","collections":["testimonialCategories"],"namespace":["marketing","mediaComponent","TestimonialsList","excludedCategories","categoryName"]}],"namespace":["live","subtitle","TestimonialsList","excludedCategories"],"searchable":true,"uid":false}],"namespace":["live","subtitle","TestimonialsList"]},{"label":"Training Information","name":"TrainingInformation","ui":{"previewSrc":"/images/thumbs/tina/training-information.jpg"},"fields":[{"type":"object","label":"Training Information Items","name":"trainingInformationItems","list":true,"fields":[{"type":"string","label":"Header","name":"header","namespace":["marketing","mediaComponent","TrainingInformation","trainingInformationItems","header"]},{"type":"rich-text","label":"Body","name":"body","templates":[{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["offices","map","TrainingInformation","trainingInformationItems","body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["offices","map","TrainingInformation","trainingInformationItems","body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["offices","map","TrainingInformation","trainingInformationItems","body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["offices","map","TrainingInformation","trainingInformationItems","body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["offices","map","TrainingInformation","trainingInformationItems","body","VerticalListItem","afterBody"]}],"namespace":["offices","aboutUs","TrainingInformation","trainingInformationItems","body","VerticalListItem"]},{"label":"Recurring Event","name":"RecurringEvent","ui":{"previewSrc":"/images/thumbs/tina/recurring-event.jpg"},"fields":[{"type":"string","label":"Apply Link Redirect","name":"applyLinkRedirect","namespace":["offices","map","TrainingInformation","trainingInformationItems","body","RecurringEvent","applyLinkRedirect"]},{"type":"string","label":"Day","name":"day","options":[{"label":"Monday","value":"monday"},{"label":"Tuesday","value":"tuesday"},{"label":"Wednesday","value":"wednesday"},{"label":"Thursday","value":"thursday"},{"label":"Friday","value":"friday"},{"label":"Saturday","value":"saturday"},{"label":"Sunday","value":"sunday"}],"required":true,"namespace":["offices","map","TrainingInformation","trainingInformationItems","body","RecurringEvent","day"]}],"namespace":["offices","aboutUs","TrainingInformation","trainingInformationItems","body","RecurringEvent"]}],"namespace":["marketing","mediaComponent","TrainingInformation","trainingInformationItems","body"]}],"namespace":["live","subtitle","TrainingInformation","trainingInformationItems"],"searchable":true,"uid":false}],"namespace":["live","subtitle","TrainingInformation"]},{"label":"Training Learning Outcomes","name":"TrainingLearningOutcome","ui":{"previewSrc":"/images/thumbs/tina/training-learning-outcomes.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["live","subtitle","TrainingLearningOutcome","header"],"searchable":true,"uid":false},{"type":"object","label":"List Items","name":"listItems","list":true,"fields":[{"type":"string","label":"Title","name":"title","namespace":["marketing","mediaComponent","TrainingLearningOutcome","listItems","title"]},{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["marketing","mediaComponent","TrainingLearningOutcome","listItems","content"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","TrainingLearningOutcome","listItems","icon","uploadDir"]},"namespace":["marketing","mediaComponent","TrainingLearningOutcome","listItems","icon"]}],"namespace":["live","subtitle","TrainingLearningOutcome","listItems"],"searchable":true,"uid":false}],"namespace":["live","subtitle","TrainingLearningOutcome"]},{"label":"Tweet Embed","name":"TweetEmbed","ui":{"previewSrc":"/images/thumbs/tina/tweet-embed.jpg"},"fields":[{"type":"string","name":"url","label":"Tweet URL","required":true,"namespace":["live","subtitle","TweetEmbed","url"],"searchable":true,"uid":false}],"namespace":["live","subtitle","TweetEmbed"]},{"name":"UpcomingEvents","label":"Upcoming Events","ui":{"previewSrc":"/images/thumbs/tina/upcoming-events.jpg","defaultItem":{"title":"Upcoming Events","numberOfEvents":30}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["live","subtitle","UpcomingEvents","title"],"searchable":true,"uid":false},{"type":"number","label":"Number of Events","name":"numberOfEvents","namespace":["live","subtitle","UpcomingEvents","numberOfEvents"],"searchable":true,"uid":false}],"namespace":["live","subtitle","UpcomingEvents"]},{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["live","subtitle","UtilityButton","buttonText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"link","required":false,"namespace":["live","subtitle","UtilityButton","link"],"searchable":true,"uid":false},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["live","subtitle","UtilityButton","size"],"searchable":true,"uid":false},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["live","subtitle","UtilityButton","btnIcon"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["live","subtitle","UtilityButton","animated"],"searchable":true,"uid":false},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["live","subtitle","UtilityButton","uncentered"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["live","subtitle","UtilityButton","removeTopMargin"],"searchable":true,"uid":false},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["live","subtitle","UtilityButton","openInNewTab"],"searchable":true,"uid":false}],"namespace":["live","subtitle","UtilityButton"]},{"name":"VerticalImageLayout","label":"Vertical Image Layout","fields":[{"type":"image","label":"Image","name":"imageSrc","uploadDir":{"namespace":["page","beforeBody","VerticalImageLayout","imageSrc","uploadDir"]},"namespace":["live","subtitle","VerticalImageLayout","imageSrc"],"searchable":false,"uid":false},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["live","subtitle","VerticalImageLayout","altText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"imageLink","namespace":["live","subtitle","VerticalImageLayout","imageLink"],"searchable":true,"uid":false},{"type":"number","label":"Height","name":"height","required":true,"namespace":["live","subtitle","VerticalImageLayout","height"],"searchable":true,"uid":false},{"type":"number","label":"Width","name":"width","required":true,"namespace":["live","subtitle","VerticalImageLayout","width"],"searchable":true,"uid":false},{"type":"rich-text","label":"Message","name":"message","required":true,"namespace":["live","subtitle","VerticalImageLayout","message"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["live","subtitle","VerticalImageLayout","sizes"],"searchable":true,"uid":false}],"namespace":["live","subtitle","VerticalImageLayout"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["live","subtitle","VerticalListItem","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"number","label":"Index number","name":"index","namespace":["live","subtitle","VerticalListItem","index"],"searchable":true,"uid":false},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["live","subtitle","VerticalListItem","icon"],"searchable":false,"uid":false},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["live","subtitle","VerticalListItem","iconScale"],"searchable":true,"uid":false},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["live","subtitle","VerticalListItem","afterBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["live","subtitle","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["live","subtitle","VideoEmbed","url"],"searchable":true,"uid":false},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["live","subtitle","VideoEmbed","videoWidth"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["live","subtitle","VideoEmbed","removeMargin"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["live","subtitle","VideoEmbed","uncentre"],"searchable":true,"uid":false},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["live","subtitle","VideoEmbed","overflow"],"searchable":true,"uid":false},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["live","subtitle","VideoEmbed","caption"],"searchable":true,"uid":false},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["live","subtitle","VideoEmbed","duration"],"searchable":true,"uid":false}],"namespace":["live","subtitle","VideoEmbed"]},{"name":"InlineJotForm","label":"In-line JotForm","ui":{"previewSrc":"/images/thumbs/tina/inline-jot-form.jpg"},"fields":[{"type":"string","name":"title","label":"Title","description":"Optional title for JotForm","namespace":["live","subtitle","InlineJotForm","title"],"searchable":true,"uid":false},{"type":"string","name":"jotFormId","label":"JotForm ID","required":true,"namespace":["live","subtitle","InlineJotForm","jotFormId"],"searchable":true,"uid":false},{"type":"string","name":"additionalClasses","label":"Additional classnames","description":"Optional styling for iframe element only","namespace":["live","subtitle","InlineJotForm","additionalClasses"],"searchable":true,"uid":false}],"namespace":["live","subtitle","InlineJotForm"]}],"namespace":["live","subtitle"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","name":"nextEvent","label":"Next Event","namespace":["live","nextEvent"],"searchable":true,"uid":false},{"label":"SSW TV Button","name":"sswTvButton","type":"object","fields":[{"label":"Name","name":"name","type":"string","namespace":["live","sswTvButton","name"],"searchable":true,"uid":false},{"label":"Channel Id","name":"channelId","type":"string","namespace":["live","sswTvButton","channelId"],"searchable":true,"uid":false}],"namespace":["live","sswTvButton"],"searchable":true,"uid":false},{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["live","youtubePlaylist","title"],"searchable":true,"uid":false},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["live","youtubePlaylist","playlistId"],"searchable":true,"uid":false},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["live","youtubePlaylist","videosCount"],"searchable":true,"uid":false},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["userGroupGlobal","youtubePlaylist","playlistButton","text"],"searchable":true,"uid":false},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["userGroupGlobal","youtubePlaylist","playlistButton","link"],"searchable":true,"uid":false},{"type":"boolean","name":"animated","label":"Animated?","namespace":["userGroupGlobal","youtubePlaylist","playlistButton","animated"],"searchable":true,"uid":false}],"namespace":["live","youtubePlaylist","playlistButton"],"searchable":true,"uid":false}],"namespace":["live","youtubePlaylist"],"searchable":true,"uid":false}],"namespace":["live"]},{"label":"Marketing - Pages","name":"marketing","path":"content/marketing","format":"mdx","fields":[{"type":"string","name":"tip","label":"Tip","ui":{},"namespace":["marketing","tip"],"searchable":true,"uid":false},{"type":"string","label":"Title","name":"title","required":true,"namespace":["marketing","title"],"searchable":true,"uid":false},{"type":"image","label":"Background image","name":"backgroundImage","required":true,"uploadDir":{"namespace":["marketing","backgroundImage","uploadDir"]},"namespace":["marketing","backgroundImage"],"searchable":false,"uid":false},{"type":"rich-text","label":"Marketing media column","name":"mediaComponent","required":true,"templates":[{"name":"AboutUs","label":"About Us","ui":{"previewSrc":"/images/thumbs/tina/about-us.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["marketing","mediaComponent","AboutUs","backgroundColor"],"searchable":true,"uid":false},{"type":"boolean","label":"Show Map","name":"showMap","required":false,"namespace":["marketing","mediaComponent","AboutUs","showMap"],"searchable":true,"uid":false}],"namespace":["marketing","mediaComponent","AboutUs"]},{"label":"Agenda","name":"Agenda","ui":{"previewSrc":"/images/thumbs/tina/agenda.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["marketing","mediaComponent","Agenda","header"],"searchable":true,"uid":false},{"type":"string","label":"Header Color","name":"textColor","options":[{"label":"Red","value":"red"},{"label":"Gray","value":"gray"},{"label":"Default","value":"default"}],"namespace":["marketing","mediaComponent","Agenda","textColor"],"searchable":true,"uid":false},{"type":"object","label":"Agenda Items","name":"agendaItemList","ui":{},"list":true,"fields":[{"type":"string","label":"Placeholder Text","name":"placeholder","namespace":["offices","aboutUs","Agenda","agendaItemList","placeholder"]},{"type":"rich-text","label":"Body","name":"body","templates":[{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["offices","directions","Agenda","agendaItemList","body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["offices","directions","Agenda","agendaItemList","body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["offices","directions","Agenda","agendaItemList","body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["offices","directions","Agenda","agendaItemList","body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["offices","directions","Agenda","agendaItemList","body","VerticalListItem","afterBody"]}],"namespace":["offices","map","Agenda","agendaItemList","body","VerticalListItem"]}],"namespace":["offices","aboutUs","Agenda","agendaItemList","body"]}],"namespace":["marketing","mediaComponent","Agenda","agendaItemList"],"searchable":true,"uid":false}],"namespace":["marketing","mediaComponent","Agenda"]},{"label":"Agreement Form","name":"AgreementForm","ui":{"previewSrc":"/images/thumbs/tina/agreement-form.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["marketing","mediaComponent","AgreementForm","backgroundColor"],"searchable":true,"uid":false},{"type":"object","label":"Form fields","name":"fields","list":true,"fields":[{"type":"string","label":"ID","name":"id","required":true,"namespace":["offices","aboutUs","AgreementForm","fields","id"]},{"type":"string","label":"Label","name":"label","required":true,"namespace":["offices","aboutUs","AgreementForm","fields","label"]},{"type":"string","label":"Placeholder","name":"placeholder","namespace":["offices","aboutUs","AgreementForm","fields","placeholder"]},{"type":"boolean","label":"Resizeable","name":"resizeable","required":true,"namespace":["offices","aboutUs","AgreementForm","fields","resizeable"]}],"namespace":["marketing","mediaComponent","AgreementForm","fields"],"searchable":true,"uid":false}],"namespace":["marketing","mediaComponent","AgreementForm"]},{"label":"Interest Form","name":"InterestForm","ui":{"previewSrc":"/images/thumbs/tina/interest-form.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["marketing","mediaComponent","InterestForm","buttonText"],"searchable":true,"uid":false}],"namespace":["marketing","mediaComponent","InterestForm"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["marketing","mediaComponent","BookingButton","buttonText"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","namespace":["marketing","mediaComponent","BookingButton","animated"],"searchable":true,"uid":false},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["marketing","mediaComponent","BookingButton","buttonSubtitle"],"searchable":true,"uid":false}],"namespace":["marketing","mediaComponent","BookingButton"]},{"name":"BuiltOnAzure","label":"Built on Azure","ui":{"previewSrc":"/images/thumbs/tina/built-on-azure.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["marketing","mediaComponent","BuiltOnAzure","backgroundColor"],"searchable":true,"uid":false}],"namespace":["marketing","mediaComponent","BuiltOnAzure"]},{"name":"Carousel","label":"Carousel","ui":{"previewSrc":"/images/thumbs/tina/carousel.jpg"},"fields":[{"label":"Items","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Item description","link":"/","openIn":"sameWindow"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["offices","aboutUs","Carousel","items","label"]},{"type":"string","label":"URL","name":"link","description":"If link contains ssw.com.au, you can skip the full URL and just use the path. e.g. /services","namespace":["offices","aboutUs","Carousel","items","link"]},{"type":"string","label":"Open in","name":"openIn","description":"If it is external link, please select 'New window' option.","options":[{"label":"Same window","value":"sameWindow"},{"label":"Modal","value":"modal"},{"label":"New window","value":"newWindow"}],"namespace":["offices","aboutUs","Carousel","items","openIn"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","Carousel","items","imgSrc","uploadDir"]},"namespace":["offices","aboutUs","Carousel","items","imgSrc"]}],"namespace":["marketing","mediaComponent","Carousel","items"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["marketing","mediaComponent","Carousel","backgroundColor"],"searchable":true,"uid":false},{"type":"number","label":"Delay (Seconds)","name":"delay","required":true,"namespace":["marketing","mediaComponent","Carousel","delay"],"searchable":true,"uid":false},{"type":"boolean","label":"Show on mobile devices","name":"showOnMobileDevices","namespace":["marketing","mediaComponent","Carousel","showOnMobileDevices"],"searchable":true,"uid":false}],"namespace":["marketing","mediaComponent","Carousel"]},{"name":"Citation","label":"Citation","fields":[{"type":"string","label":"author","name":"author","namespace":["marketing","mediaComponent","Citation","author"],"searchable":true,"uid":false},{"type":"string","label":"article","name":"article","required":true,"namespace":["marketing","mediaComponent","Citation","article"],"searchable":true,"uid":false}],"namespace":["marketing","mediaComponent","Citation"]},{"label":"Client List","name":"ClientList","ui":{"previewSrc":"/images/thumbs/tina/clients-list.jpg"},"fields":[{"type":"object","name":"categories","label":"Categories","list":true,"fields":[{"type":"reference","name":"category","label":"Category","collections":["clientCategories"],"namespace":["offices","aboutUs","ClientList","categories","category"]}],"ui":{},"namespace":["marketing","mediaComponent","ClientList","categories"],"searchable":true,"uid":false},{"type":"object","name":"clients","label":"Clients list","list":true,"ui":{"previewSrc":"/images/thumbs/tina/clients-list.jpg"},"fields":[{"type":"string","name":"name","label":"Name","namespace":["offices","aboutUs","ClientList","clients","name"]},{"type":"image","name":"logo","label":"Logo","namespace":["offices","aboutUs","ClientList","clients","logo"]},{"type":"string","name":"logoUrl","label":"Logo URL","namespace":["offices","aboutUs","ClientList","clients","logoUrl"]},{"type":"rich-text","name":"content","label":"Content","templates":[{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["offices","directions","ClientList","clients","content","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["offices","directions","ClientList","clients","content","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["offices","directions","ClientList","clients","content","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["offices","directions","ClientList","clients","content","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["offices","directions","ClientList","clients","content","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["offices","directions","ClientList","clients","content","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["offices","directions","ClientList","clients","content","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["offices","directions","ClientList","clients","content","UtilityButton","openInNewTab"]}],"namespace":["offices","map","ClientList","clients","content","UtilityButton"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","directions","ClientList","clients","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","directions","ClientList","clients","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","directions","ClientList","clients","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","directions","ClientList","clients","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","directions","ClientList","clients","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","directions","ClientList","clients","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","directions","ClientList","clients","content","VideoEmbed","duration"]}],"namespace":["offices","map","ClientList","clients","content","VideoEmbed"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","directions","ClientList","clients","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","directions","ClientList","clients","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","directions","ClientList","clients","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","directions","ClientList","clients","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","directions","ClientList","clients","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","directions","ClientList","clients","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","directions","ClientList","clients","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","directions","ClientList","clients","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","directions","ClientList","clients","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","directions","ClientList","clients","content","CustomImage","sizes"]}],"namespace":["offices","map","ClientList","clients","content","CustomImage"]},{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["offices","directions","ClientList","clients","content","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["offices","directions","ClientList","clients","content","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","publicTransport","ClientList","clients","content","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","publicTransport","ClientList","clients","content","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","publicTransport","ClientList","clients","content","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","publicTransport","ClientList","clients","content","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","publicTransport","ClientList","clients","content","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","publicTransport","ClientList","clients","content","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","publicTransport","ClientList","clients","content","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","publicTransport","ClientList","clients","content","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","publicTransport","ClientList","clients","content","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","publicTransport","ClientList","clients","content","ContentCard","content","CustomImage","sizes"]}],"namespace":["offices","parking","ClientList","clients","content","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["offices","publicTransport","ClientList","clients","content","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["offices","publicTransport","ClientList","clients","content","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["offices","publicTransport","ClientList","clients","content","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["offices","publicTransport","ClientList","clients","content","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["offices","publicTransport","ClientList","clients","content","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["offices","parking","ClientList","clients","content","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","publicTransport","ClientList","clients","content","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","publicTransport","ClientList","clients","content","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","publicTransport","ClientList","clients","content","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","publicTransport","ClientList","clients","content","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","publicTransport","ClientList","clients","content","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","publicTransport","ClientList","clients","content","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","publicTransport","ClientList","clients","content","ContentCard","content","VideoEmbed","duration"]}],"namespace":["offices","parking","ClientList","clients","content","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","publicTransport","ClientList","clients","content","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["offices","publicTransport","ClientList","clients","content","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","team","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["offices","team","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","team","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["offices","team","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["offices","team","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["offices","publicTransport","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["offices","parking","ClientList","clients","content","ContentCard","content","ColorBlock"]}],"namespace":["offices","directions","ClientList","clients","content","ContentCard","content"]}],"namespace":["offices","map","ClientList","clients","content","ContentCard"]}],"namespace":["offices","aboutUs","ClientList","clients","content"]},{"type":"string","name":"caseStudyUrl","label":"Case study URL","namespace":["offices","aboutUs","ClientList","clients","caseStudyUrl"]},{"type":"object","name":"categories","label":"Categories","list":true,"ui":{},"fields":[{"type":"reference","name":"category","label":"Category","collections":["clientCategories"],"namespace":["offices","map","ClientList","clients","categories","category"]}],"namespace":["offices","aboutUs","ClientList","clients","categories"]}],"namespace":["marketing","mediaComponent","ClientList","clients"],"searchable":true,"uid":false}],"namespace":["marketing","mediaComponent","ClientList"]},{"name":"ClientLogos","label":"Client Logos","ui":{"previewSrc":"/images/thumbs/tina/client-logos.jpg"},"fields":[{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["marketing","mediaComponent","ClientLogos","altText"],"searchable":true,"uid":false}],"namespace":["marketing","mediaComponent","ClientLogos"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["marketing","mediaComponent","ColorBlock","title"],"searchable":true,"uid":false},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["marketing","mediaComponent","ColorBlock","subTitle"],"searchable":true,"uid":false},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","aboutUs","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["offices","aboutUs","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","aboutUs","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["offices","aboutUs","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["offices","aboutUs","ColorBlock","colorRow","caption"]}],"namespace":["marketing","mediaComponent","ColorBlock","colorRow"],"searchable":true,"uid":false}],"namespace":["marketing","mediaComponent","ColorBlock"]},{"name":"ColorPalette","label":"Color Palette","ui":{"previewSrc":"/images/thumbs/tina/color-palette.jpg"},"fields":[{"type":"string","label":"Name","name":"name","namespace":["marketing","mediaComponent","ColorPalette","name"],"searchable":true,"uid":false}],"namespace":["marketing","mediaComponent","ColorPalette"]},{"name":"Content","label":"Content","ui":{"previewSrc":"/images/thumbs/tina/content.jpg","defaultItem":{"body":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["marketing","mediaComponent","Content","title"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","map","Content","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","map","Content","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","map","Content","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","map","Content","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","map","Content","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","map","Content","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","map","Content","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","map","Content","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","map","Content","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","map","Content","content","CustomImage","sizes"]}],"namespace":["offices","aboutUs","Content","content","CustomImage"]},{"name":"ClientLogos","label":"Client Logos","ui":{"previewSrc":"/images/thumbs/tina/client-logos.jpg"},"fields":[{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","map","Content","content","ClientLogos","altText"]}],"namespace":["offices","aboutUs","Content","content","ClientLogos"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","map","Content","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","map","Content","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","map","Content","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","map","Content","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","map","Content","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","map","Content","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","map","Content","content","VideoEmbed","duration"]}],"namespace":["offices","aboutUs","Content","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","map","Content","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["offices","map","Content","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","directions","Content","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["offices","directions","Content","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","directions","Content","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["offices","directions","Content","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["offices","directions","Content","content","ColorBlock","colorRow","caption"]}],"namespace":["offices","map","Content","content","ColorBlock","colorRow"]}],"namespace":["offices","aboutUs","Content","content","ColorBlock"]}],"namespace":["marketing","mediaComponent","Content","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Container Padding","name":"paddingClass","options":["Mobile: No Padding","Mobile: No Top and Horizontal Padding"],"namespace":["marketing","mediaComponent","Content","paddingClass"],"searchable":true,"uid":false},{"type":"string","label":"Text size","name":"size","options":[{"label":"small","value":"sm"},{"label":"normal","value":"base"},{"label":"large","value":"lg"},{"label":"extra large","value":"xl"},{"label":"2x large","value":"2xl"}],"namespace":["marketing","mediaComponent","Content","size"],"searchable":true,"uid":false},{"type":"string","label":"Align","name":"align","options":[{"label":"Left","value":"left"},{"label":"Center","value":"center"},{"label":"Right","value":"right"}],"namespace":["marketing","mediaComponent","Content","align"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["marketing","mediaComponent","Content","backgroundColor"],"searchable":true,"uid":false}],"namespace":["marketing","mediaComponent","Content"]},{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["marketing","mediaComponent","ContentCard","prose"],"searchable":true,"uid":false},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["marketing","mediaComponent","ContentCard","centerAlignedText"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","map","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","map","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","map","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","map","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","map","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","map","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","map","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","map","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","map","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","map","ContentCard","content","CustomImage","sizes"]}],"namespace":["offices","aboutUs","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["offices","map","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["offices","map","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["offices","map","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["offices","map","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["offices","map","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["offices","aboutUs","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","map","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","map","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","map","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","map","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","map","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","map","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","map","ContentCard","content","VideoEmbed","duration"]}],"namespace":["offices","aboutUs","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","map","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["offices","map","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","directions","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["offices","directions","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","directions","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["offices","directions","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["offices","directions","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["offices","map","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["offices","aboutUs","ContentCard","content","ColorBlock"]}],"namespace":["marketing","mediaComponent","ContentCard","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["marketing","mediaComponent","ContentCard"]},{"name":"CustomDownloadButton","label":"Custom Download Button","ui":{"previewSrc":"/images/thumbs/tina/custom-download-button.jpg"},"fields":[{"type":"string","label":"Text","name":"btnText","namespace":["marketing","mediaComponent","CustomDownloadButton","btnText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"btnLink","namespace":["marketing","mediaComponent","CustomDownloadButton","btnLink"],"searchable":true,"uid":false}],"namespace":["marketing","mediaComponent","CustomDownloadButton"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["marketing","mediaComponent","CustomImage","src"],"searchable":false,"uid":false},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["marketing","mediaComponent","CustomImage","altText"],"searchable":true,"uid":false},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["marketing","mediaComponent","CustomImage","alignment"],"searchable":true,"uid":false},{"type":"number","label":"Height","name":"height","required":true,"namespace":["marketing","mediaComponent","CustomImage","height"],"searchable":true,"uid":false},{"type":"number","label":"Width","name":"width","required":true,"namespace":["marketing","mediaComponent","CustomImage","width"],"searchable":true,"uid":false},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["marketing","mediaComponent","CustomImage","link"],"searchable":true,"uid":false},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["marketing","mediaComponent","CustomImage","customClass"],"searchable":true,"uid":false},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["marketing","mediaComponent","CustomImage","caption"],"searchable":true,"uid":false},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["marketing","mediaComponent","CustomImage","captionColor"],"searchable":true,"uid":false},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["marketing","mediaComponent","CustomImage","sizes"],"searchable":true,"uid":false}],"namespace":["marketing","mediaComponent","CustomImage"]},{"name":"DomainFromQuery","label":"Domain from query","ui":{"previewSrc":"/images/thumbs/tina/domain-from-query.jpg"},"fields":[{"name":"title","label":"Title","type":"string","description":"This is a H1 heading","namespace":["marketing","mediaComponent","DomainFromQuery","title"],"searchable":true,"uid":false},{"name":"showDomain","label":"Show domain name","type":"boolean","description":"Query param in URL must have key of 'domain'","namespace":["marketing","mediaComponent","DomainFromQuery","showDomain"],"searchable":true,"uid":false}],"namespace":["marketing","mediaComponent","DomainFromQuery"]},{"name":"DownloadBlock","label":"Download Block","ui":{"previewSrc":"/images/thumbs/tina/download-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["marketing","mediaComponent","DownloadBlock","title"],"searchable":true,"uid":false},{"type":"object","label":"Downloads","name":"downloads","ui":{},"list":true,"fields":[{"type":"string","label":"Header","name":"header","namespace":["offices","aboutUs","DownloadBlock","downloads","header"]},{"type":"image","label":"Image","name":"img","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","img","uploadDir"]},"namespace":["offices","aboutUs","DownloadBlock","downloads","img"]},{"type":"string","label":"Image Background","name":"imgBackground","options":["black","grey","white","darkgrey","darkgreen"],"namespace":["offices","aboutUs","DownloadBlock","downloads","imgBackground"]},{"type":"string","label":"First Link Text","name":"firstLinkText","description":"Defaults to PNG","namespace":["offices","aboutUs","DownloadBlock","downloads","firstLinkText"]},{"type":"image","label":"First Link","name":"firstLink","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","firstLink","uploadDir"]},"namespace":["offices","aboutUs","DownloadBlock","downloads","firstLink"]},{"type":"string","label":"Second Link Text","name":"secondLinkText","description":"Defaults to PDF","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","secondLinkText","uploadDir"]},"namespace":["offices","aboutUs","DownloadBlock","downloads","secondLinkText"]},{"type":"image","label":"Second Link","name":"secondLink","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","secondLink","uploadDir"]},"namespace":["offices","aboutUs","DownloadBlock","downloads","secondLink"]}],"namespace":["marketing","mediaComponent","DownloadBlock","downloads"],"searchable":true,"uid":false},{"type":"boolean","label":"Bottom border","name":"bottomBorder","namespace":["marketing","mediaComponent","DownloadBlock","bottomBorder"],"searchable":true,"uid":false}],"namespace":["marketing","mediaComponent","DownloadBlock"]},{"name":"DynamicColumns","label":"Dynamic Column Layout","fields":[{"type":"rich-text","label":"Column text body","name":"colBody","required":true,"namespace":["marketing","mediaComponent","DynamicColumns","colBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"number","label":"Number of columns","name":"colCount","required":true,"ui":{},"namespace":["marketing","mediaComponent","DynamicColumns","colCount"],"searchable":true,"uid":false}],"namespace":["marketing","mediaComponent","DynamicColumns"]},{"name":"EventBooking","label":"Events Booking","ui":{"previewSrc":"/images/thumbs/tina/events-booking.jpg"},"fields":[{"type":"number","label":"Duration (In Days)","name":"eventDurationInDays","required":true,"namespace":["marketing","mediaComponent","EventBooking","eventDurationInDays"],"searchable":true,"uid":false},{"type":"number","label":"Price","name":"price","required":true,"namespace":["marketing","mediaComponent","EventBooking","price"],"searchable":true,"uid":false},{"type":"number","label":"Discount Price","name":"discountPrice","namespace":["marketing","mediaComponent","EventBooking","discountPrice"],"searchable":true,"uid":false},{"type":"string","name":"gstText","label":"Select GST Option","options":["inc GST","+ GST"],"required":true,"namespace":["marketing","mediaComponent","EventBooking","gstText"],"searchable":true,"uid":false},{"type":"string","label":"Discount Note","name":"discountNote","namespace":["marketing","mediaComponent","EventBooking","discountNote"],"searchable":true,"uid":false},{"type":"object","label":"Event","name":"eventList","ui":{},"list":true,"fields":[{"type":"string","label":"City","name":"city","namespace":["offices","aboutUs","EventBooking","eventList","city"]},{"type":"datetime","label":"Start Date","name":"date","ui":{},"namespace":["offices","aboutUs","EventBooking","eventList","date"]},{"type":"string","label":"Booking URL","name":"bookingURL","namespace":["offices","aboutUs","EventBooking","eventList","bookingURL"]},{"type":"reference","label":"Location","name":"location","collections":["locations"],"namespace":["offices","aboutUs","EventBooking","eventList","location"]}],"namespace":["marketing","mediaComponent","EventBooking","eventList"],"searchable":true,"uid":false}],"namespace":["marketing","mediaComponent","EventBooking"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["offices","map","EventLink","content","Flag","country"]}],"namespace":["offices","aboutUs","EventLink","content","Flag"]}],"namespace":["marketing","mediaComponent","EventLink","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Link","name":"link","namespace":["marketing","mediaComponent","EventLink","link"],"searchable":true,"uid":false},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["marketing","mediaComponent","EventLink","eventThumbnail"],"searchable":false,"uid":false},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["marketing","mediaComponent","EventLink","thumbnailAlt"],"searchable":true,"uid":false}],"namespace":["marketing","mediaComponent","EventLink"]},{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["marketing","mediaComponent","Flag","country"],"searchable":true,"uid":false}],"namespace":["marketing","mediaComponent","Flag"]},{"name":"FixedColumns","label":"Fixed Column Layout (2 columns)","ui":{"previewSrc":"/images/thumbs/tina/fixed-columns.jpg"},"fields":[{"type":"rich-text","label":"Header Section (Optional)","name":"headerSection","namespace":["marketing","mediaComponent","FixedColumns","headerSection"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"First column text","name":"firstColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["offices","map","FixedColumns","firstColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["offices","map","FixedColumns","firstColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","parking","FixedColumns","firstColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","parking","FixedColumns","firstColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","parking","FixedColumns","firstColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","parking","FixedColumns","firstColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","parking","FixedColumns","firstColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","parking","FixedColumns","firstColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","parking","FixedColumns","firstColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","parking","FixedColumns","firstColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","parking","FixedColumns","firstColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","parking","FixedColumns","firstColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["offices","directions","FixedColumns","firstColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["offices","parking","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["offices","parking","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["offices","parking","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["offices","parking","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["offices","parking","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["offices","directions","FixedColumns","firstColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","parking","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","parking","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","parking","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","parking","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","parking","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","parking","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","parking","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["offices","directions","FixedColumns","firstColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","parking","FixedColumns","firstColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["offices","parking","FixedColumns","firstColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","publicTransport","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["offices","publicTransport","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","publicTransport","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["offices","publicTransport","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["offices","publicTransport","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["offices","parking","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["offices","directions","FixedColumns","firstColBody","ContentCard","content","ColorBlock"]}],"namespace":["offices","map","FixedColumns","firstColBody","ContentCard","content"]}],"namespace":["offices","aboutUs","FixedColumns","firstColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","map","FixedColumns","firstColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","map","FixedColumns","firstColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","map","FixedColumns","firstColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","map","FixedColumns","firstColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","map","FixedColumns","firstColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","map","FixedColumns","firstColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","map","FixedColumns","firstColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","map","FixedColumns","firstColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","map","FixedColumns","firstColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","map","FixedColumns","firstColBody","CustomImage","sizes"]}],"namespace":["offices","aboutUs","FixedColumns","firstColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["offices","parking","FixedColumns","firstColBody","EventLink","content","Flag","country"]}],"namespace":["offices","directions","FixedColumns","firstColBody","EventLink","content","Flag"]}],"namespace":["offices","map","FixedColumns","firstColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["offices","map","FixedColumns","firstColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["offices","map","FixedColumns","firstColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["offices","map","FixedColumns","firstColBody","EventLink","thumbnailAlt"]}],"namespace":["offices","aboutUs","FixedColumns","firstColBody","EventLink"]}],"namespace":["marketing","mediaComponent","FixedColumns","firstColBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"Second column text","name":"secondColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["offices","map","FixedColumns","secondColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["offices","map","FixedColumns","secondColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","parking","FixedColumns","secondColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","parking","FixedColumns","secondColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","parking","FixedColumns","secondColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","parking","FixedColumns","secondColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","parking","FixedColumns","secondColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","parking","FixedColumns","secondColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","parking","FixedColumns","secondColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","parking","FixedColumns","secondColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","parking","FixedColumns","secondColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","parking","FixedColumns","secondColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["offices","directions","FixedColumns","secondColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["offices","parking","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["offices","parking","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["offices","parking","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["offices","parking","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["offices","parking","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["offices","directions","FixedColumns","secondColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","parking","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","parking","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","parking","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","parking","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","parking","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","parking","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","parking","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["offices","directions","FixedColumns","secondColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","parking","FixedColumns","secondColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["offices","parking","FixedColumns","secondColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","publicTransport","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["offices","publicTransport","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","publicTransport","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["offices","publicTransport","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["offices","publicTransport","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["offices","parking","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["offices","directions","FixedColumns","secondColBody","ContentCard","content","ColorBlock"]}],"namespace":["offices","map","FixedColumns","secondColBody","ContentCard","content"]}],"namespace":["offices","aboutUs","FixedColumns","secondColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","map","FixedColumns","secondColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","map","FixedColumns","secondColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","map","FixedColumns","secondColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","map","FixedColumns","secondColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","map","FixedColumns","secondColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","map","FixedColumns","secondColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","map","FixedColumns","secondColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","map","FixedColumns","secondColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","map","FixedColumns","secondColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","map","FixedColumns","secondColBody","CustomImage","sizes"]}],"namespace":["offices","aboutUs","FixedColumns","secondColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["offices","parking","FixedColumns","secondColBody","EventLink","content","Flag","country"]}],"namespace":["offices","directions","FixedColumns","secondColBody","EventLink","content","Flag"]}],"namespace":["offices","map","FixedColumns","secondColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["offices","map","FixedColumns","secondColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["offices","map","FixedColumns","secondColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["offices","map","FixedColumns","secondColBody","EventLink","thumbnailAlt"]}],"namespace":["offices","aboutUs","FixedColumns","secondColBody","EventLink"]}],"namespace":["marketing","mediaComponent","FixedColumns","secondColBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["marketing","mediaComponent","FixedColumns"]},{"name":"FixedTabsLayout","label":"Fixed Tabs Layout","ui":{"previewSrc":"/images/thumbs/tina/fixed-tabs-layout.jpg"},"fields":[{"type":"string","name":"firstTab","label":"First Tab","namespace":["marketing","mediaComponent","FixedTabsLayout","firstTab"],"searchable":true,"uid":false},{"type":"rich-text","name":"firstHeading","label":"First Heading","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","map","FixedTabsLayout","firstHeading","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","map","FixedTabsLayout","firstHeading","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","map","FixedTabsLayout","firstHeading","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","map","FixedTabsLayout","firstHeading","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","map","FixedTabsLayout","firstHeading","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","map","FixedTabsLayout","firstHeading","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","map","FixedTabsLayout","firstHeading","VideoEmbed","duration"]}],"namespace":["offices","aboutUs","FixedTabsLayout","firstHeading","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["offices","map","FixedTabsLayout","firstHeading","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["offices","map","FixedTabsLayout","firstHeading","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["offices","map","FixedTabsLayout","firstHeading","BookingButton","buttonSubtitle"]}],"namespace":["offices","aboutUs","FixedTabsLayout","firstHeading","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["offices","map","FixedTabsLayout","firstHeading","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["offices","directions","FixedTabsLayout","firstHeading","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["offices","directions","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["offices","directions","FixedTabsLayout","firstHeading","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["offices","directions","FixedTabsLayout","firstHeading","ExpertBlock","expertList","skills"]}],"namespace":["offices","map","FixedTabsLayout","firstHeading","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["offices","directions","FixedTabsLayout","firstHeading","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["offices","directions","FixedTabsLayout","firstHeading","ExpertBlock","link","url"]}],"namespace":["offices","map","FixedTabsLayout","firstHeading","ExpertBlock","link"]}],"namespace":["offices","aboutUs","FixedTabsLayout","firstHeading","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","directions","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["offices","directions","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["offices","directions","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["offices","parking","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["offices","parking","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["offices","parking","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["offices","directions","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["offices","map","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["offices","aboutUs","FixedTabsLayout","firstHeading","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","map","FixedTabsLayout","firstHeading","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","map","FixedTabsLayout","firstHeading","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","map","FixedTabsLayout","firstHeading","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","map","FixedTabsLayout","firstHeading","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","map","FixedTabsLayout","firstHeading","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","map","FixedTabsLayout","firstHeading","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","map","FixedTabsLayout","firstHeading","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","map","FixedTabsLayout","firstHeading","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","map","FixedTabsLayout","firstHeading","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","map","FixedTabsLayout","firstHeading","CustomImage","sizes"]}],"namespace":["offices","aboutUs","FixedTabsLayout","firstHeading","CustomImage"]}],"namespace":["marketing","mediaComponent","FixedTabsLayout","firstHeading"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","name":"firstBody","label":"First Body","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","map","FixedTabsLayout","firstBody","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","map","FixedTabsLayout","firstBody","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","map","FixedTabsLayout","firstBody","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","map","FixedTabsLayout","firstBody","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","map","FixedTabsLayout","firstBody","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","map","FixedTabsLayout","firstBody","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","map","FixedTabsLayout","firstBody","VideoEmbed","duration"]}],"namespace":["offices","aboutUs","FixedTabsLayout","firstBody","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["offices","map","FixedTabsLayout","firstBody","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["offices","map","FixedTabsLayout","firstBody","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["offices","map","FixedTabsLayout","firstBody","BookingButton","buttonSubtitle"]}],"namespace":["offices","aboutUs","FixedTabsLayout","firstBody","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["offices","map","FixedTabsLayout","firstBody","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["offices","directions","FixedTabsLayout","firstBody","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["offices","directions","FixedTabsLayout","firstBody","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["offices","directions","FixedTabsLayout","firstBody","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["offices","directions","FixedTabsLayout","firstBody","ExpertBlock","expertList","skills"]}],"namespace":["offices","map","FixedTabsLayout","firstBody","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["offices","directions","FixedTabsLayout","firstBody","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["offices","directions","FixedTabsLayout","firstBody","ExpertBlock","link","url"]}],"namespace":["offices","map","FixedTabsLayout","firstBody","ExpertBlock","link"]}],"namespace":["offices","aboutUs","FixedTabsLayout","firstBody","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","directions","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["offices","directions","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["offices","directions","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["offices","parking","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["offices","parking","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["offices","parking","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["offices","directions","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["offices","map","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["offices","aboutUs","FixedTabsLayout","firstBody","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","map","FixedTabsLayout","firstBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","map","FixedTabsLayout","firstBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","map","FixedTabsLayout","firstBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","map","FixedTabsLayout","firstBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","map","FixedTabsLayout","firstBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","map","FixedTabsLayout","firstBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","map","FixedTabsLayout","firstBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","map","FixedTabsLayout","firstBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","map","FixedTabsLayout","firstBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","map","FixedTabsLayout","firstBody","CustomImage","sizes"]}],"namespace":["offices","aboutUs","FixedTabsLayout","firstBody","CustomImage"]}],"namespace":["marketing","mediaComponent","FixedTabsLayout","firstBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","name":"secondTab","label":"Second Tab","namespace":["marketing","mediaComponent","FixedTabsLayout","secondTab"],"searchable":true,"uid":false},{"type":"rich-text","name":"secondHeading","label":"Second Heading","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","map","FixedTabsLayout","secondHeading","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","map","FixedTabsLayout","secondHeading","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","map","FixedTabsLayout","secondHeading","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","map","FixedTabsLayout","secondHeading","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","map","FixedTabsLayout","secondHeading","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","map","FixedTabsLayout","secondHeading","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","map","FixedTabsLayout","secondHeading","VideoEmbed","duration"]}],"namespace":["offices","aboutUs","FixedTabsLayout","secondHeading","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["offices","map","FixedTabsLayout","secondHeading","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["offices","map","FixedTabsLayout","secondHeading","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["offices","map","FixedTabsLayout","secondHeading","BookingButton","buttonSubtitle"]}],"namespace":["offices","aboutUs","FixedTabsLayout","secondHeading","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["offices","map","FixedTabsLayout","secondHeading","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["offices","directions","FixedTabsLayout","secondHeading","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["offices","directions","FixedTabsLayout","secondHeading","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["offices","directions","FixedTabsLayout","secondHeading","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["offices","directions","FixedTabsLayout","secondHeading","ExpertBlock","expertList","skills"]}],"namespace":["offices","map","FixedTabsLayout","secondHeading","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["offices","directions","FixedTabsLayout","secondHeading","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["offices","directions","FixedTabsLayout","secondHeading","ExpertBlock","link","url"]}],"namespace":["offices","map","FixedTabsLayout","secondHeading","ExpertBlock","link"]}],"namespace":["offices","aboutUs","FixedTabsLayout","secondHeading","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","directions","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["offices","directions","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["offices","directions","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["offices","parking","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["offices","parking","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["offices","parking","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["offices","directions","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["offices","map","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["offices","aboutUs","FixedTabsLayout","secondHeading","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","map","FixedTabsLayout","secondHeading","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","map","FixedTabsLayout","secondHeading","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","map","FixedTabsLayout","secondHeading","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","map","FixedTabsLayout","secondHeading","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","map","FixedTabsLayout","secondHeading","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","map","FixedTabsLayout","secondHeading","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","map","FixedTabsLayout","secondHeading","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","map","FixedTabsLayout","secondHeading","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","map","FixedTabsLayout","secondHeading","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","map","FixedTabsLayout","secondHeading","CustomImage","sizes"]}],"namespace":["offices","aboutUs","FixedTabsLayout","secondHeading","CustomImage"]}],"namespace":["marketing","mediaComponent","FixedTabsLayout","secondHeading"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","name":"secondBody","label":"Second Body","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","map","FixedTabsLayout","secondBody","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","map","FixedTabsLayout","secondBody","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","map","FixedTabsLayout","secondBody","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","map","FixedTabsLayout","secondBody","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","map","FixedTabsLayout","secondBody","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","map","FixedTabsLayout","secondBody","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","map","FixedTabsLayout","secondBody","VideoEmbed","duration"]}],"namespace":["offices","aboutUs","FixedTabsLayout","secondBody","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["offices","map","FixedTabsLayout","secondBody","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["offices","map","FixedTabsLayout","secondBody","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["offices","map","FixedTabsLayout","secondBody","BookingButton","buttonSubtitle"]}],"namespace":["offices","aboutUs","FixedTabsLayout","secondBody","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["offices","map","FixedTabsLayout","secondBody","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["offices","directions","FixedTabsLayout","secondBody","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["offices","directions","FixedTabsLayout","secondBody","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["offices","directions","FixedTabsLayout","secondBody","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["offices","directions","FixedTabsLayout","secondBody","ExpertBlock","expertList","skills"]}],"namespace":["offices","map","FixedTabsLayout","secondBody","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["offices","directions","FixedTabsLayout","secondBody","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["offices","directions","FixedTabsLayout","secondBody","ExpertBlock","link","url"]}],"namespace":["offices","map","FixedTabsLayout","secondBody","ExpertBlock","link"]}],"namespace":["offices","aboutUs","FixedTabsLayout","secondBody","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","directions","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["offices","directions","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["offices","directions","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["offices","parking","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["offices","parking","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["offices","parking","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["offices","directions","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["offices","map","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["offices","aboutUs","FixedTabsLayout","secondBody","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","map","FixedTabsLayout","secondBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","map","FixedTabsLayout","secondBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","map","FixedTabsLayout","secondBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","map","FixedTabsLayout","secondBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","map","FixedTabsLayout","secondBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","map","FixedTabsLayout","secondBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","map","FixedTabsLayout","secondBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","map","FixedTabsLayout","secondBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","map","FixedTabsLayout","secondBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","map","FixedTabsLayout","secondBody","CustomImage","sizes"]}],"namespace":["offices","aboutUs","FixedTabsLayout","secondBody","CustomImage"]}],"namespace":["marketing","mediaComponent","FixedTabsLayout","secondBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["marketing","mediaComponent","FixedTabsLayout"]},{"label":"Google Maps","name":"GoogleMaps","ui":{"previewSrc":"/images/thumbs/tina/google-maps.jpg"},"fields":[{"type":"string","label":"URL","name":"embedUrl","required":true,"namespace":["marketing","mediaComponent","GoogleMaps","embedUrl"],"searchable":true,"uid":false},{"type":"string","label":"Width","name":"embedWidth","namespace":["marketing","mediaComponent","GoogleMaps","embedWidth"],"searchable":true,"uid":false},{"type":"string","label":"Height","name":"embedHeight","namespace":["marketing","mediaComponent","GoogleMaps","embedHeight"],"searchable":true,"uid":false}],"namespace":["marketing","mediaComponent","GoogleMaps"]},{"label":"Grid Layout","name":"GridLayout","ui":{"previewSrc":"/images/thumbs/tina/grid-layout.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["marketing","mediaComponent","GridLayout","title"],"searchable":true,"uid":false},{"type":"object","list":true,"label":"Grid Items","name":"grids","ui":{},"fields":[{"type":"string","label":"Grid Title","name":"gridTitle","namespace":["offices","aboutUs","GridLayout","grids","gridTitle"]},{"type":"boolean","label":"Show Grid Title","name":"showGridTitle","namespace":["offices","aboutUs","GridLayout","grids","showGridTitle"]},{"type":"boolean","label":"Centered Grid Title","name":"centeredGridTitle","namespace":["offices","aboutUs","GridLayout","grids","centeredGridTitle"]},{"type":"boolean","label":"Show Header Divider","name":"showHeaderDivider","namespace":["offices","aboutUs","GridLayout","grids","showHeaderDivider"]},{"type":"boolean","label":"Offset Grid Start","name":"offsetGridStart","namespace":["offices","aboutUs","GridLayout","grids","offsetGridStart"]},{"type":"object","label":"Blocks","name":"blocks","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","map","GridLayout","grids","blocks","title"]},{"type":"boolean","label":"Show Title","name":"showTitle","namespace":["offices","map","GridLayout","grids","blocks","showTitle"]},{"type":"image","label":"Image","name":"image","uploadDir":{"namespace":["page","beforeBody","GridLayout","grids","blocks","image","uploadDir"]},"namespace":["offices","map","GridLayout","grids","blocks","image"]},{"type":"image","label":"Related Image","name":"relatedImage","uploadDir":{"namespace":["page","beforeBody","GridLayout","grids","blocks","relatedImage","uploadDir"]},"namespace":["offices","map","GridLayout","grids","blocks","relatedImage"]},{"type":"rich-text","name":"linkContent","label":"Link Content","templates":[{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["offices","parking","GridLayout","grids","blocks","linkContent","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["offices","parking","GridLayout","grids","blocks","linkContent","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["offices","parking","GridLayout","grids","blocks","linkContent","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["offices","parking","GridLayout","grids","blocks","linkContent","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["offices","parking","GridLayout","grids","blocks","linkContent","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["offices","parking","GridLayout","grids","blocks","linkContent","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["offices","parking","GridLayout","grids","blocks","linkContent","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["offices","parking","GridLayout","grids","blocks","linkContent","UtilityButton","openInNewTab"]}],"namespace":["offices","directions","GridLayout","grids","blocks","linkContent","UtilityButton"]}],"namespace":["offices","map","GridLayout","grids","blocks","linkContent"]}],"namespace":["offices","aboutUs","GridLayout","grids","blocks"]}],"namespace":["marketing","mediaComponent","GridLayout","grids"],"searchable":true,"uid":false}],"namespace":["marketing","mediaComponent","GridLayout"]},{"name":"Hero","label":"Hero","ui":{"previewSrc":"/blocks/hero.png","defaultItem":{"tagline":"Here's some text above the other text","headline":"This Big Text is Totally Awesome","text":"Phasellus scelerisque, libero eu finibus rutrum, risus risus accumsan libero, nec molestie urna dui a leo."}},"fields":[{"type":"string","label":"Tagline","name":"tagline","namespace":["marketing","mediaComponent","Hero","tagline"],"searchable":true,"uid":false},{"type":"string","label":"Headline","name":"headline","namespace":["marketing","mediaComponent","Hero","headline"],"searchable":true,"uid":false},{"label":"Text","name":"text","type":"rich-text","namespace":["marketing","mediaComponent","Hero","text"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"label":"Actions","name":"actions","type":"object","list":true,"ui":{"defaultItem":{"label":"Action Label","type":"button","icon":true,"link":"/"}},"fields":[{"label":"Label","name":"label","type":"string","namespace":["offices","aboutUs","Hero","actions","label"]},{"label":"Type","name":"type","type":"string","options":[{"label":"Button","value":"button"},{"label":"Link","value":"link"}],"namespace":["offices","aboutUs","Hero","actions","type"]},{"label":"Icon","name":"icon","type":"boolean","namespace":["offices","aboutUs","Hero","actions","icon"]},{"label":"Link","name":"link","type":"string","namespace":["offices","aboutUs","Hero","actions","link"]}],"namespace":["marketing","mediaComponent","Hero","actions"],"searchable":true,"uid":false},{"type":"object","label":"Image","name":"image","fields":[{"name":"src","label":"Image Source","type":"image","namespace":["offices","aboutUs","Hero","image","src"]},{"name":"alt","label":"Alt Text","type":"string","namespace":["offices","aboutUs","Hero","image","alt"]}],"namespace":["marketing","mediaComponent","Hero","image"],"searchable":true,"uid":false},{"type":"string","label":"Color","name":"color","options":[{"label":"Default","value":"default"},{"label":"Tint","value":"tint"},{"label":"Primary","value":"primary"}],"namespace":["marketing","mediaComponent","Hero","color"],"searchable":true,"uid":false}],"namespace":["marketing","mediaComponent","Hero"]},{"name":"HorizontalCard","label":"Horizontal Card","ui":{"previewSrc":"/images/thumbs/tina/horizontal-card.jpg"},"fields":[{"type":"object","label":"Cards","name":"cardList","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","aboutUs","HorizontalCard","cardList","title"]},{"type":"rich-text","label":"Content","name":"content","namespace":["offices","aboutUs","HorizontalCard","cardList","content"]},{"type":"image","label":"Thumbnail","name":"thumbnail","uploadDir":{"namespace":["page","beforeBody","HorizontalCard","cardList","thumbnail","uploadDir"]},"namespace":["offices","aboutUs","HorizontalCard","cardList","thumbnail"]},{"type":"string","label":"Link","name":"link","namespace":["offices","aboutUs","HorizontalCard","cardList","link"]}],"namespace":["marketing","mediaComponent","HorizontalCard","cardList"],"searchable":true,"uid":false},{"type":"object","label":"Button","name":"button","fields":[{"type":"string","label":"Text","name":"text","namespace":["offices","aboutUs","HorizontalCard","button","text"]},{"type":"string","label":"Link","name":"link","namespace":["offices","aboutUs","HorizontalCard","button","link"]}],"namespace":["marketing","mediaComponent","HorizontalCard","button"],"searchable":true,"uid":false}],"namespace":["marketing","mediaComponent","HorizontalCard"]},{"name":"InternalCarousel","label":"Internal Carousel","ui":{"previewSrc":"/images/thumbs/tina/internal-carousel.jpg"},"fields":[{"label":"Images","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Image description"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["offices","aboutUs","InternalCarousel","items","label"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","InternalCarousel","items","imgSrc","uploadDir"]},"namespace":["offices","aboutUs","InternalCarousel","items","imgSrc"]}],"namespace":["marketing","mediaComponent","InternalCarousel","items"],"searchable":true,"uid":false},{"type":"string","label":"Header","name":"header","namespace":["marketing","mediaComponent","InternalCarousel","header"],"searchable":true,"uid":false},{"type":"rich-text","label":"Text","name":"paragraph","isBody":false,"namespace":["marketing","mediaComponent","InternalCarousel","paragraph"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Website","name":"website","namespace":["marketing","mediaComponent","InternalCarousel","website"],"searchable":true,"uid":false},{"type":"object","label":"Technologies","name":"technologies","list":true,"ui":{},"fields":[{"type":"string","label":"Name","name":"name","namespace":["offices","aboutUs","InternalCarousel","technologies","name"]}],"namespace":["marketing","mediaComponent","InternalCarousel","technologies"],"searchable":true,"uid":false},{"type":"string","label":"Case Study","name":"caseStudyUrl","namespace":["marketing","mediaComponent","InternalCarousel","caseStudyUrl"],"searchable":true,"uid":false},{"type":"string","label":"Video URL","name":"videoUrl","namespace":["marketing","mediaComponent","InternalCarousel","videoUrl"],"searchable":true,"uid":false}],"namespace":["marketing","mediaComponent","InternalCarousel"]},{"label":"Join As Presenter","name":"joinAsPresenter","fields":[{"label":"Learn More Link","name":"link","type":"string","namespace":["marketing","mediaComponent","joinAsPresenter","link"],"searchable":true,"uid":false},{"label":"Image","name":"img","type":"image","namespace":["marketing","mediaComponent","joinAsPresenter","img"],"searchable":false,"uid":false}],"namespace":["marketing","mediaComponent","joinAsPresenter"]},{"label":"Join Github","name":"joinGithub","ui":{"previewSrc":"/images/thumbs/tina/join-github.jpg"},"fields":[{"label":"Title","name":"title","type":"string","namespace":["marketing","mediaComponent","joinGithub","title"],"searchable":true,"uid":false},{"label":"Join Github Link","name":"link","type":"string","namespace":["marketing","mediaComponent","joinGithub","link"],"searchable":true,"uid":false}],"namespace":["marketing","mediaComponent","joinGithub"]},{"name":"JotFormEmbed","label":"JotForm Embed","ui":{"previewSrc":"/images/thumbs/tina/jotform-embed.jpg"},"fields":[{"type":"string","name":"jotFormId","label":"JotForm Id","required":true,"namespace":["marketing","mediaComponent","JotFormEmbed","jotFormId"],"searchable":true,"uid":false},{"type":"string","label":"Button Text","name":"buttonText","namespace":["marketing","mediaComponent","JotFormEmbed","buttonText"],"searchable":true,"uid":false},{"type":"string","name":"containerClass","label":"Container Class","namespace":["marketing","mediaComponent","JotFormEmbed","containerClass"],"searchable":true,"uid":false},{"type":"string","label":"Button Class","name":"buttonClass","namespace":["marketing","mediaComponent","JotFormEmbed","buttonClass"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","namespace":["marketing","mediaComponent","JotFormEmbed","animated"],"searchable":true,"uid":false}],"namespace":["marketing","mediaComponent","JotFormEmbed"]},{"name":"LatestTech","label":"Latest Tech","ui":{"previewSrc":"/images/thumbs/tina/latest-tech.jpg"},"fields":[{"type":"reference","description":"Select a config file including a set of badges","collections":["userGroupGlobal"],"label":"Badges","name":"badges","namespace":["marketing","mediaComponent","LatestTech","badges"],"searchable":true,"uid":false}],"namespace":["marketing","mediaComponent","LatestTech"]},{"name":"LocationBlock","label":"Locations","ui":{"previewSrc":"/images/thumbs/tina/locations.jpg"},"fields":[{"type":"string","name":"title","label":"Title","namespace":["marketing","mediaComponent","LocationBlock","title"],"searchable":true,"uid":false},{"type":"object","label":"Location List","name":"locationList","list":true,"ui":{},"fields":[{"type":"reference","collections":["locations"],"label":"Location","name":"location","namespace":["offices","aboutUs","LocationBlock","locationList","location"]}],"namespace":["marketing","mediaComponent","LocationBlock","locationList"],"searchable":true,"uid":false},{"type":"object","name":"chapelWebsite","label":"Chapel Website","fields":[{"type":"string","name":"title","label":"Text","namespace":["offices","aboutUs","LocationBlock","chapelWebsite","title"]},{"type":"string","name":"URL","label":"URL","namespace":["offices","aboutUs","LocationBlock","chapelWebsite","URL"]}],"namespace":["marketing","mediaComponent","LocationBlock","chapelWebsite"],"searchable":true,"uid":false}],"namespace":["marketing","mediaComponent","LocationBlock"]},{"name":"NewslettersTable","label":"Newsletters Table","ui":{"previewSrc":"/images/thumbs/tina/newsletters-table.jpg"},"fields":[{"type":"string","label":"Header text","name":"headerText","namespace":["marketing","mediaComponent","NewslettersTable","headerText"],"searchable":true,"uid":false}],"namespace":["marketing","mediaComponent","NewslettersTable"]},{"label":"Organizer","name":"organizer","fields":[{"type":"image","label":"Profile Image","name":"profileImg","namespace":["marketing","mediaComponent","organizer","profileImg"],"searchable":false,"uid":false},{"type":"string","label":"Profile Link","name":"profileLink","namespace":["marketing","mediaComponent","organizer","profileLink"],"searchable":true,"uid":false},{"type":"string","label":"Name","name":"name","namespace":["marketing","mediaComponent","organizer","name"],"searchable":true,"uid":false},{"type":"string","label":"Position","name":"position","namespace":["marketing","mediaComponent","organizer","position"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","namespace":["marketing","mediaComponent","organizer","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["marketing","mediaComponent","organizer"]},{"label":"Payment Block","name":"paymentBlock","ui":{"previewSrc":"/images/thumbs/tina/payment-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["marketing","mediaComponent","paymentBlock","title"],"searchable":true,"uid":false},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["marketing","mediaComponent","paymentBlock","subTitle"],"searchable":true,"uid":false},{"type":"reference","label":"Payment Links","name":"payments","collections":["paymentDetails"],"namespace":["marketing","mediaComponent","paymentBlock","payments"],"searchable":true,"uid":false},{"type":"rich-text","label":"Footer","name":"footer","namespace":["marketing","mediaComponent","paymentBlock","footer"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"image","label":"Credit Cards Image","name":"creditImgSrc","namespace":["marketing","mediaComponent","paymentBlock","creditImgSrc"],"searchable":false,"uid":false},{"type":"string","label":"Alt Text","name":"altTxt","namespace":["marketing","mediaComponent","paymentBlock","altTxt"],"searchable":true,"uid":false}],"namespace":["marketing","mediaComponent","paymentBlock"]},{"name":"PresenterBlock","label":"Presenters","ui":{"previewSrc":"/images/thumbs/tina/presenters.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["marketing","mediaComponent","PresenterBlock","header"],"searchable":true,"uid":false},{"type":"object","name":"presenterList","label":"Presenters","list":true,"ui":{},"fields":[{"type":"reference","name":"presenter","label":"Presenters","collections":["presenter"],"namespace":["offices","aboutUs","PresenterBlock","presenterList","presenter"]}],"namespace":["marketing","mediaComponent","PresenterBlock","presenterList"],"searchable":true,"uid":false},{"type":"object","label":"Other Events","name":"otherEvent","fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","aboutUs","PresenterBlock","otherEvent","title"]},{"type":"string","label":"URL","name":"eventURL","namespace":["offices","aboutUs","PresenterBlock","otherEvent","eventURL"]}],"namespace":["marketing","mediaComponent","PresenterBlock","otherEvent"],"searchable":true,"uid":false}],"namespace":["marketing","mediaComponent","PresenterBlock"]},{"label":"Recurring Event","name":"RecurringEvent","ui":{"previewSrc":"/images/thumbs/tina/recurring-event.jpg"},"fields":[{"type":"string","label":"Apply Link Redirect","name":"applyLinkRedirect","namespace":["marketing","mediaComponent","RecurringEvent","applyLinkRedirect"],"searchable":true,"uid":false},{"type":"string","label":"Day","name":"day","options":[{"label":"Monday","value":"monday"},{"label":"Tuesday","value":"tuesday"},{"label":"Wednesday","value":"wednesday"},{"label":"Thursday","value":"thursday"},{"label":"Friday","value":"friday"},{"label":"Saturday","value":"saturday"},{"label":"Sunday","value":"sunday"}],"required":true,"namespace":["marketing","mediaComponent","RecurringEvent","day"],"searchable":true,"uid":false}],"namespace":["marketing","mediaComponent","RecurringEvent"]},{"name":"SectionHeader","label":"Section Header","ui":{"previewSrc":"/images/thumbs/tina/section-header.jpg"},"fields":[{"type":"string","label":"Header Text","name":"headerText","namespace":["marketing","mediaComponent","SectionHeader","headerText"],"searchable":true,"uid":false}],"namespace":["marketing","mediaComponent","SectionHeader"]},{"name":"ServiceCards","label":"Service Cards","ui":{"previewSrc":"/images/thumbs/tina/services-cards.jpg"},"fields":[{"type":"string","label":"Big Cards Label","name":"bigCardsLabel","namespace":["marketing","mediaComponent","ServiceCards","bigCardsLabel"],"searchable":true,"uid":false},{"label":"Big Cards","name":"bigCards","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","aboutUs","ServiceCards","bigCards","title"]},{"type":"string","label":"Description","component":"textarea","name":"description","namespace":["offices","aboutUs","ServiceCards","bigCards","description"]},{"type":"string","label":"URL","name":"link","namespace":["offices","aboutUs","ServiceCards","bigCards","link"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Red","value":"red"},{"label":"Light Gray","value":"lightgray"},{"label":"Medium Gray","value":"mediumgray"},{"label":"Dark Gray","value":"darkgray"}],"namespace":["offices","aboutUs","ServiceCards","bigCards","color"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","ServiceCards","bigCards","imgSrc","uploadDir"]},"namespace":["offices","aboutUs","ServiceCards","bigCards","imgSrc"]}],"namespace":["marketing","mediaComponent","ServiceCards","bigCards"],"searchable":true,"uid":false},{"type":"string","label":"Small Cards Label","name":"smallCardsLabel","namespace":["marketing","mediaComponent","ServiceCards","smallCardsLabel"],"searchable":true,"uid":false},{"label":"Small Cards","name":"smallCards","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","aboutUs","ServiceCards","smallCards","title"]},{"type":"string","label":"URL","name":"link","namespace":["offices","aboutUs","ServiceCards","smallCards","link"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Red","value":"red"},{"label":"Light Gray","value":"lightgray"},{"label":"Medium Gray","value":"mediumgray"},{"label":"Dark Gray","value":"darkgray"}],"namespace":["offices","aboutUs","ServiceCards","smallCards","color"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","ServiceCards","smallCards","imgSrc","uploadDir"]},"namespace":["offices","aboutUs","ServiceCards","smallCards","imgSrc"]},{"type":"boolean","label":"External Page","description":"Select this if the link is not part of the website. This includes SSW.Rules, and SSW.People links","name":"isExternal","namespace":["offices","aboutUs","ServiceCards","smallCards","isExternal"]}],"namespace":["marketing","mediaComponent","ServiceCards","smallCards"],"searchable":true,"uid":false},{"label":"Links","name":"links","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["offices","aboutUs","ServiceCards","links","label"]},{"type":"string","label":"URL","name":"link","namespace":["offices","aboutUs","ServiceCards","links","link"]}],"namespace":["marketing","mediaComponent","ServiceCards","links"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["marketing","mediaComponent","ServiceCards","backgroundColor"],"searchable":true,"uid":false}],"namespace":["marketing","mediaComponent","ServiceCards"]},{"label":"Table Layout","name":"TableLayout","ui":{"previewSrc":"/images/thumbs/tina/table-layout.jpg"},"fields":[{"label":"Table Style","name":"tableStyle","type":"string","options":["none","basicBorder","styled","benefits"],"namespace":["marketing","mediaComponent","TableLayout","tableStyle"],"searchable":true,"uid":false},{"label":"First column bolded + left aligned","name":"firstColBold","type":"boolean","required":false,"namespace":["marketing","mediaComponent","TableLayout","firstColBold"],"searchable":true,"uid":false},{"type":"string","label":"Table Headers","name":"headers","list":true,"namespace":["marketing","mediaComponent","TableLayout","headers"],"searchable":true,"uid":false},{"type":"object","label":"Rows","name":"rows","list":true,"fields":[{"type":"object","label":"Cells","name":"cells","list":true,"fields":[{"type":"string","label":"Value","name":"cellValue","required":true,"component":{"namespace":["page","beforeBody","TableLayout","rows","cells","cellValue",""]},"namespace":["offices","map","TableLayout","rows","cells","cellValue"]}],"ui":{},"namespace":["offices","aboutUs","TableLayout","rows","cells"]},{"type":"boolean","label":"Is Heading","name":"isHeader","required":false,"namespace":["offices","aboutUs","TableLayout","rows","isHeader"]}],"ui":{},"namespace":["marketing","mediaComponent","TableLayout","rows"],"searchable":true,"uid":false}],"namespace":["marketing","mediaComponent","TableLayout"]},{"name":"TestimonialsList","label":"Testimonials List","ui":{"previewSrc":"/images/thumbs/tina/testimonials.jpg"},"fields":[{"type":"object","label":"Exclude Categories","name":"excludedCategories","ui":{},"list":true,"fields":[{"type":"reference","label":"Category Name","name":"categoryName","collections":["testimonialCategories"],"namespace":["offices","aboutUs","TestimonialsList","excludedCategories","categoryName"]}],"namespace":["marketing","mediaComponent","TestimonialsList","excludedCategories"],"searchable":true,"uid":false}],"namespace":["marketing","mediaComponent","TestimonialsList"]},{"label":"Training Information","name":"TrainingInformation","ui":{"previewSrc":"/images/thumbs/tina/training-information.jpg"},"fields":[{"type":"object","label":"Training Information Items","name":"trainingInformationItems","list":true,"fields":[{"type":"string","label":"Header","name":"header","namespace":["offices","aboutUs","TrainingInformation","trainingInformationItems","header"]},{"type":"rich-text","label":"Body","name":"body","templates":[{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["offices","directions","TrainingInformation","trainingInformationItems","body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["offices","directions","TrainingInformation","trainingInformationItems","body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["offices","directions","TrainingInformation","trainingInformationItems","body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["offices","directions","TrainingInformation","trainingInformationItems","body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["offices","directions","TrainingInformation","trainingInformationItems","body","VerticalListItem","afterBody"]}],"namespace":["offices","map","TrainingInformation","trainingInformationItems","body","VerticalListItem"]},{"label":"Recurring Event","name":"RecurringEvent","ui":{"previewSrc":"/images/thumbs/tina/recurring-event.jpg"},"fields":[{"type":"string","label":"Apply Link Redirect","name":"applyLinkRedirect","namespace":["offices","directions","TrainingInformation","trainingInformationItems","body","RecurringEvent","applyLinkRedirect"]},{"type":"string","label":"Day","name":"day","options":[{"label":"Monday","value":"monday"},{"label":"Tuesday","value":"tuesday"},{"label":"Wednesday","value":"wednesday"},{"label":"Thursday","value":"thursday"},{"label":"Friday","value":"friday"},{"label":"Saturday","value":"saturday"},{"label":"Sunday","value":"sunday"}],"required":true,"namespace":["offices","directions","TrainingInformation","trainingInformationItems","body","RecurringEvent","day"]}],"namespace":["offices","map","TrainingInformation","trainingInformationItems","body","RecurringEvent"]}],"namespace":["offices","aboutUs","TrainingInformation","trainingInformationItems","body"]}],"namespace":["marketing","mediaComponent","TrainingInformation","trainingInformationItems"],"searchable":true,"uid":false}],"namespace":["marketing","mediaComponent","TrainingInformation"]},{"label":"Training Learning Outcomes","name":"TrainingLearningOutcome","ui":{"previewSrc":"/images/thumbs/tina/training-learning-outcomes.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["marketing","mediaComponent","TrainingLearningOutcome","header"],"searchable":true,"uid":false},{"type":"object","label":"List Items","name":"listItems","list":true,"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","aboutUs","TrainingLearningOutcome","listItems","title"]},{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["offices","aboutUs","TrainingLearningOutcome","listItems","content"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","TrainingLearningOutcome","listItems","icon","uploadDir"]},"namespace":["offices","aboutUs","TrainingLearningOutcome","listItems","icon"]}],"namespace":["marketing","mediaComponent","TrainingLearningOutcome","listItems"],"searchable":true,"uid":false}],"namespace":["marketing","mediaComponent","TrainingLearningOutcome"]},{"label":"Tweet Embed","name":"TweetEmbed","ui":{"previewSrc":"/images/thumbs/tina/tweet-embed.jpg"},"fields":[{"type":"string","name":"url","label":"Tweet URL","required":true,"namespace":["marketing","mediaComponent","TweetEmbed","url"],"searchable":true,"uid":false}],"namespace":["marketing","mediaComponent","TweetEmbed"]},{"name":"UpcomingEvents","label":"Upcoming Events","ui":{"previewSrc":"/images/thumbs/tina/upcoming-events.jpg","defaultItem":{"title":"Upcoming Events","numberOfEvents":30}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["marketing","mediaComponent","UpcomingEvents","title"],"searchable":true,"uid":false},{"type":"number","label":"Number of Events","name":"numberOfEvents","namespace":["marketing","mediaComponent","UpcomingEvents","numberOfEvents"],"searchable":true,"uid":false}],"namespace":["marketing","mediaComponent","UpcomingEvents"]},{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["marketing","mediaComponent","UtilityButton","buttonText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"link","required":false,"namespace":["marketing","mediaComponent","UtilityButton","link"],"searchable":true,"uid":false},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["marketing","mediaComponent","UtilityButton","size"],"searchable":true,"uid":false},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["marketing","mediaComponent","UtilityButton","btnIcon"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["marketing","mediaComponent","UtilityButton","animated"],"searchable":true,"uid":false},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["marketing","mediaComponent","UtilityButton","uncentered"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["marketing","mediaComponent","UtilityButton","removeTopMargin"],"searchable":true,"uid":false},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["marketing","mediaComponent","UtilityButton","openInNewTab"],"searchable":true,"uid":false}],"namespace":["marketing","mediaComponent","UtilityButton"]},{"name":"VerticalImageLayout","label":"Vertical Image Layout","fields":[{"type":"image","label":"Image","name":"imageSrc","uploadDir":{"namespace":["page","beforeBody","VerticalImageLayout","imageSrc","uploadDir"]},"namespace":["marketing","mediaComponent","VerticalImageLayout","imageSrc"],"searchable":false,"uid":false},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["marketing","mediaComponent","VerticalImageLayout","altText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"imageLink","namespace":["marketing","mediaComponent","VerticalImageLayout","imageLink"],"searchable":true,"uid":false},{"type":"number","label":"Height","name":"height","required":true,"namespace":["marketing","mediaComponent","VerticalImageLayout","height"],"searchable":true,"uid":false},{"type":"number","label":"Width","name":"width","required":true,"namespace":["marketing","mediaComponent","VerticalImageLayout","width"],"searchable":true,"uid":false},{"type":"rich-text","label":"Message","name":"message","required":true,"namespace":["marketing","mediaComponent","VerticalImageLayout","message"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["marketing","mediaComponent","VerticalImageLayout","sizes"],"searchable":true,"uid":false}],"namespace":["marketing","mediaComponent","VerticalImageLayout"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["marketing","mediaComponent","VerticalListItem","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"number","label":"Index number","name":"index","namespace":["marketing","mediaComponent","VerticalListItem","index"],"searchable":true,"uid":false},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["marketing","mediaComponent","VerticalListItem","icon"],"searchable":false,"uid":false},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["marketing","mediaComponent","VerticalListItem","iconScale"],"searchable":true,"uid":false},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["marketing","mediaComponent","VerticalListItem","afterBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["marketing","mediaComponent","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["marketing","mediaComponent","VideoEmbed","url"],"searchable":true,"uid":false},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["marketing","mediaComponent","VideoEmbed","videoWidth"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["marketing","mediaComponent","VideoEmbed","removeMargin"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["marketing","mediaComponent","VideoEmbed","uncentre"],"searchable":true,"uid":false},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["marketing","mediaComponent","VideoEmbed","overflow"],"searchable":true,"uid":false},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["marketing","mediaComponent","VideoEmbed","caption"],"searchable":true,"uid":false},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["marketing","mediaComponent","VideoEmbed","duration"],"searchable":true,"uid":false}],"namespace":["marketing","mediaComponent","VideoEmbed"]},{"name":"InlineJotForm","label":"In-line JotForm","ui":{"previewSrc":"/images/thumbs/tina/inline-jot-form.jpg"},"fields":[{"type":"string","name":"title","label":"Title","description":"Optional title for JotForm","namespace":["marketing","mediaComponent","InlineJotForm","title"],"searchable":true,"uid":false},{"type":"string","name":"jotFormId","label":"JotForm ID","required":true,"namespace":["marketing","mediaComponent","InlineJotForm","jotFormId"],"searchable":true,"uid":false},{"type":"string","name":"additionalClasses","label":"Additional classnames","description":"Optional styling for iframe element only","namespace":["marketing","mediaComponent","InlineJotForm","additionalClasses"],"searchable":true,"uid":false}],"namespace":["marketing","mediaComponent","InlineJotForm"]}],"namespace":["marketing","mediaComponent"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"Body","name":"body","isBody":true,"namespace":["marketing","body"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Text side","name":"textSide","options":["left","right"],"required":true,"namespace":["marketing","textSide"],"searchable":true,"uid":false}],"namespace":["marketing"]},{"label":"Newsletters","name":"newsletters","path":"content/newsletters","format":"json","fields":[{"type":"string","name":"tip","label":"Tip","ui":{},"namespace":["newsletters","tip"],"searchable":true,"uid":false},{"type":"string","label":"Year","name":"newsletters_year","namespace":["newsletters","newsletters_year"],"searchable":true,"uid":false},{"type":"object","label":"Newsletters","name":"newsletters","list":true,"ui":{},"fields":[{"type":"number","name":"month","label":"Month","required":true,"namespace":["newsletters","newsletters","month"],"searchable":true,"uid":false},{"type":"image","name":"file","label":"HTML File","required":true,"uploadDir":{"namespace":["newsletters","newsletters","file","uploadDir"]},"namespace":["newsletters","newsletters","file"],"searchable":false,"uid":false},{"type":"image","name":"images","label":"Images (optional)","list":true,"description":"Must be saved in images/Newsletters. Only add images that have not been used before. There is no need to add images to the /images/newsletters directory if they have already been used in a previous newsletter","uploadDir":{"namespace":["newsletters","newsletters","images","uploadDir"]},"namespace":["newsletters","newsletters","images"],"searchable":false,"uid":false},{"type":"string","name":"description","label":"Description","required":true,"namespace":["newsletters","newsletters","description"],"searchable":true,"uid":false}],"namespace":["newsletters","newsletters"],"searchable":true,"uid":false}],"namespace":["newsletters"]},{"label":"Offices - Index","name":"officeIndex","path":"content/office/index","format":"json","ui":{"allowedActions":{"create":false,"delete":false}},"fields":[{"type":"object","label":"SEO Values","name":"seo","fields":[{"type":"string","label":"Title (70 characters)","name":"title","ui":{},"namespace":["officeIndex","seo","title"],"searchable":true,"uid":false},{"type":"string","label":"Description (150 characters)","name":"description","component":"textarea","ui":{},"namespace":["officeIndex","seo","description"],"searchable":true,"uid":false},{"type":"string","label":"Canonical URL","name":"canonical","namespace":["officeIndex","seo","canonical"],"searchable":true,"uid":false},{"type":"boolean","name":"showBreadcrumb","label":"Show Breadcrumb","namespace":["officeIndex","seo","showBreadcrumb"],"searchable":true,"uid":false},{"label":"Images","name":"images","list":true,"type":"object","ui":{"defaultItem":{"url":"/images/ssw-default-og.jpg","width":1200,"height":630,"alt":"SSW Consulting - Enterprise Software Development"}},"fields":[{"type":"image","label":"Image Url","name":"url","require":true,"namespace":["offices","seo","images","url"],"searchable":false,"uid":false},{"type":"number","label":"Width (px)","name":"width","namespace":["offices","seo","images","width"],"searchable":true,"uid":false},{"type":"number","label":"Height (px)","name":"height","namespace":["offices","seo","images","height"],"searchable":true,"uid":false},{"type":"string","label":"Image Alt Text","name":"alt","namespace":["offices","seo","images","alt"],"searchable":true,"uid":false}],"namespace":["officeIndex","seo","images"],"searchable":true,"uid":false}],"namespace":["officeIndex","seo"],"searchable":true,"uid":false},{"type":"object","label":"Offices Index Page","name":"officesIndex","list":true,"ui":{},"fields":[{"type":"reference","label":"Office","name":"office","collections":["offices"],"required":true,"namespace":["officeIndex","officesIndex","office"],"searchable":true,"uid":false}],"namespace":["officeIndex","officesIndex"],"searchable":true,"uid":false}],"namespace":["officeIndex"]},{"label":"Offices - Pages","name":"offices","format":"mdx","path":"content/offices","ui":{},"fields":[{"type":"string","name":"tip","label":"Tip","ui":{},"namespace":["offices","tip"],"searchable":true,"uid":false},{"type":"object","label":"SEO Values","name":"seo","fields":[{"type":"string","label":"Title (70 characters)","name":"title","ui":{},"namespace":["offices","seo","title"],"searchable":true,"uid":false},{"type":"string","label":"Description (150 characters)","name":"description","component":"textarea","ui":{},"namespace":["offices","seo","description"],"searchable":true,"uid":false},{"type":"string","label":"Canonical URL","name":"canonical","namespace":["offices","seo","canonical"],"searchable":true,"uid":false},{"type":"boolean","name":"showBreadcrumb","label":"Show Breadcrumb","namespace":["offices","seo","showBreadcrumb"],"searchable":true,"uid":false},{"label":"Images","name":"images","list":true,"type":"object","ui":{"defaultItem":{"url":"/images/ssw-default-og.jpg","width":1200,"height":630,"alt":"SSW Consulting - Enterprise Software Development"}},"fields":[{"type":"image","label":"Image Url","name":"url","require":true,"namespace":["partnerIndex","seo","images","url"],"searchable":false,"uid":false},{"type":"number","label":"Width (px)","name":"width","namespace":["partnerIndex","seo","images","width"],"searchable":true,"uid":false},{"type":"number","label":"Height (px)","name":"height","namespace":["partnerIndex","seo","images","height"],"searchable":true,"uid":false},{"type":"string","label":"Image Alt Text","name":"alt","namespace":["partnerIndex","seo","images","alt"],"searchable":true,"uid":false}],"namespace":["offices","seo","images"],"searchable":true,"uid":false}],"namespace":["offices","seo"],"searchable":true,"uid":false},{"type":"image","label":"Cover Image","name":"coverImg","uploadDir":{"namespace":["offices","coverImg","uploadDir"]},"namespace":["offices","coverImg"],"searchable":false,"uid":false},{"type":"image","label":"Thumbnail","name":"thumbnail","uploadDir":{"namespace":["offices","thumbnail","uploadDir"]},"namespace":["offices","thumbnail"],"searchable":false,"uid":false},{"type":"image","label":"Sidebar Image","name":"sideImg","uploadDir":{"namespace":["offices","sideImg","uploadDir"]},"namespace":["offices","sideImg"],"searchable":false,"uid":false},{"type":"string","name":"name","label":"Name","required":true,"namespace":["offices","name"],"searchable":true,"uid":false},{"type":"string","name":"streetAddress","label":"Street Address","required":true,"namespace":["offices","streetAddress"],"searchable":true,"uid":false},{"type":"string","name":"suburb","label":"Suburb","required":true,"namespace":["offices","suburb"],"searchable":true,"uid":false},{"type":"string","name":"addressLocality","label":"Address Locality","required":true,"namespace":["offices","addressLocality"],"searchable":true,"uid":false},{"type":"string","name":"addressRegion","label":"Address Region","required":true,"namespace":["offices","addressRegion"],"searchable":true,"uid":false},{"type":"string","name":"addressCountry","label":"Address Country","options":["Australia","China","France"],"required":true,"namespace":["offices","addressCountry"],"searchable":true,"uid":false},{"type":"number","name":"postalCode","label":"Post Code","required":true,"namespace":["offices","postalCode"],"searchable":true,"uid":false},{"type":"string","name":"phone","label":"Phone","required":true,"namespace":["offices","phone"],"searchable":true,"uid":false},{"type":"string","label":"Chapel Link","name":"chapelLink","required":false,"namespace":["offices","chapelLink"],"searchable":true,"uid":false},{"type":"string","name":"hours","label":"Hours","namespace":["offices","hours"],"searchable":true,"uid":false},{"type":"string","name":"days","label":"Days","namespace":["offices","days"],"searchable":true,"uid":false},{"type":"object","name":"sidebarSecondaryPlace","label":"Sidebar secondary place URL","fields":[{"type":"string","name":"name","label":"Name","namespace":["offices","sidebarSecondaryPlace","name"],"searchable":true,"uid":false},{"type":"string","name":"url","label":"URL","namespace":["offices","sidebarSecondaryPlace","url"],"searchable":true,"uid":false}],"namespace":["offices","sidebarSecondaryPlace"],"searchable":true,"uid":false},{"type":"rich-text","label":"About Us","name":"aboutUs","templates":[{"name":"AboutUs","label":"About Us","ui":{"previewSrc":"/images/thumbs/tina/about-us.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["offices","aboutUs","AboutUs","backgroundColor"],"searchable":true,"uid":false},{"type":"boolean","label":"Show Map","name":"showMap","required":false,"namespace":["offices","aboutUs","AboutUs","showMap"],"searchable":true,"uid":false}],"namespace":["offices","aboutUs","AboutUs"]},{"label":"Agenda","name":"Agenda","ui":{"previewSrc":"/images/thumbs/tina/agenda.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["offices","aboutUs","Agenda","header"],"searchable":true,"uid":false},{"type":"string","label":"Header Color","name":"textColor","options":[{"label":"Red","value":"red"},{"label":"Gray","value":"gray"},{"label":"Default","value":"default"}],"namespace":["offices","aboutUs","Agenda","textColor"],"searchable":true,"uid":false},{"type":"object","label":"Agenda Items","name":"agendaItemList","ui":{},"list":true,"fields":[{"type":"string","label":"Placeholder Text","name":"placeholder","namespace":["offices","map","Agenda","agendaItemList","placeholder"]},{"type":"rich-text","label":"Body","name":"body","templates":[{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["offices","parking","Agenda","agendaItemList","body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["offices","parking","Agenda","agendaItemList","body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["offices","parking","Agenda","agendaItemList","body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["offices","parking","Agenda","agendaItemList","body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["offices","parking","Agenda","agendaItemList","body","VerticalListItem","afterBody"]}],"namespace":["offices","directions","Agenda","agendaItemList","body","VerticalListItem"]}],"namespace":["offices","map","Agenda","agendaItemList","body"]}],"namespace":["offices","aboutUs","Agenda","agendaItemList"],"searchable":true,"uid":false}],"namespace":["offices","aboutUs","Agenda"]},{"label":"Agreement Form","name":"AgreementForm","ui":{"previewSrc":"/images/thumbs/tina/agreement-form.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["offices","aboutUs","AgreementForm","backgroundColor"],"searchable":true,"uid":false},{"type":"object","label":"Form fields","name":"fields","list":true,"fields":[{"type":"string","label":"ID","name":"id","required":true,"namespace":["offices","map","AgreementForm","fields","id"]},{"type":"string","label":"Label","name":"label","required":true,"namespace":["offices","map","AgreementForm","fields","label"]},{"type":"string","label":"Placeholder","name":"placeholder","namespace":["offices","map","AgreementForm","fields","placeholder"]},{"type":"boolean","label":"Resizeable","name":"resizeable","required":true,"namespace":["offices","map","AgreementForm","fields","resizeable"]}],"namespace":["offices","aboutUs","AgreementForm","fields"],"searchable":true,"uid":false}],"namespace":["offices","aboutUs","AgreementForm"]},{"label":"Interest Form","name":"InterestForm","ui":{"previewSrc":"/images/thumbs/tina/interest-form.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["offices","aboutUs","InterestForm","buttonText"],"searchable":true,"uid":false}],"namespace":["offices","aboutUs","InterestForm"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["offices","aboutUs","BookingButton","buttonText"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","namespace":["offices","aboutUs","BookingButton","animated"],"searchable":true,"uid":false},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["offices","aboutUs","BookingButton","buttonSubtitle"],"searchable":true,"uid":false}],"namespace":["offices","aboutUs","BookingButton"]},{"name":"BuiltOnAzure","label":"Built on Azure","ui":{"previewSrc":"/images/thumbs/tina/built-on-azure.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["offices","aboutUs","BuiltOnAzure","backgroundColor"],"searchable":true,"uid":false}],"namespace":["offices","aboutUs","BuiltOnAzure"]},{"name":"Carousel","label":"Carousel","ui":{"previewSrc":"/images/thumbs/tina/carousel.jpg"},"fields":[{"label":"Items","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Item description","link":"/","openIn":"sameWindow"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["offices","map","Carousel","items","label"]},{"type":"string","label":"URL","name":"link","description":"If link contains ssw.com.au, you can skip the full URL and just use the path. e.g. /services","namespace":["offices","map","Carousel","items","link"]},{"type":"string","label":"Open in","name":"openIn","description":"If it is external link, please select 'New window' option.","options":[{"label":"Same window","value":"sameWindow"},{"label":"Modal","value":"modal"},{"label":"New window","value":"newWindow"}],"namespace":["offices","map","Carousel","items","openIn"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","Carousel","items","imgSrc","uploadDir"]},"namespace":["offices","map","Carousel","items","imgSrc"]}],"namespace":["offices","aboutUs","Carousel","items"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["offices","aboutUs","Carousel","backgroundColor"],"searchable":true,"uid":false},{"type":"number","label":"Delay (Seconds)","name":"delay","required":true,"namespace":["offices","aboutUs","Carousel","delay"],"searchable":true,"uid":false},{"type":"boolean","label":"Show on mobile devices","name":"showOnMobileDevices","namespace":["offices","aboutUs","Carousel","showOnMobileDevices"],"searchable":true,"uid":false}],"namespace":["offices","aboutUs","Carousel"]},{"name":"Citation","label":"Citation","fields":[{"type":"string","label":"author","name":"author","namespace":["offices","aboutUs","Citation","author"],"searchable":true,"uid":false},{"type":"string","label":"article","name":"article","required":true,"namespace":["offices","aboutUs","Citation","article"],"searchable":true,"uid":false}],"namespace":["offices","aboutUs","Citation"]},{"label":"Client List","name":"ClientList","ui":{"previewSrc":"/images/thumbs/tina/clients-list.jpg"},"fields":[{"type":"object","name":"categories","label":"Categories","list":true,"fields":[{"type":"reference","name":"category","label":"Category","collections":["clientCategories"],"namespace":["offices","map","ClientList","categories","category"]}],"ui":{},"namespace":["offices","aboutUs","ClientList","categories"],"searchable":true,"uid":false},{"type":"object","name":"clients","label":"Clients list","list":true,"ui":{"previewSrc":"/images/thumbs/tina/clients-list.jpg"},"fields":[{"type":"string","name":"name","label":"Name","namespace":["offices","map","ClientList","clients","name"]},{"type":"image","name":"logo","label":"Logo","namespace":["offices","map","ClientList","clients","logo"]},{"type":"string","name":"logoUrl","label":"Logo URL","namespace":["offices","map","ClientList","clients","logoUrl"]},{"type":"rich-text","name":"content","label":"Content","templates":[{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["offices","parking","ClientList","clients","content","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["offices","parking","ClientList","clients","content","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["offices","parking","ClientList","clients","content","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["offices","parking","ClientList","clients","content","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["offices","parking","ClientList","clients","content","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["offices","parking","ClientList","clients","content","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["offices","parking","ClientList","clients","content","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["offices","parking","ClientList","clients","content","UtilityButton","openInNewTab"]}],"namespace":["offices","directions","ClientList","clients","content","UtilityButton"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","parking","ClientList","clients","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","parking","ClientList","clients","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","parking","ClientList","clients","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","parking","ClientList","clients","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","parking","ClientList","clients","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","parking","ClientList","clients","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","parking","ClientList","clients","content","VideoEmbed","duration"]}],"namespace":["offices","directions","ClientList","clients","content","VideoEmbed"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","parking","ClientList","clients","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","parking","ClientList","clients","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","parking","ClientList","clients","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","parking","ClientList","clients","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","parking","ClientList","clients","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","parking","ClientList","clients","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","parking","ClientList","clients","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","parking","ClientList","clients","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","parking","ClientList","clients","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","parking","ClientList","clients","content","CustomImage","sizes"]}],"namespace":["offices","directions","ClientList","clients","content","CustomImage"]},{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["offices","parking","ClientList","clients","content","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["offices","parking","ClientList","clients","content","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","team","ClientList","clients","content","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","team","ClientList","clients","content","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","team","ClientList","clients","content","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","team","ClientList","clients","content","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","team","ClientList","clients","content","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","team","ClientList","clients","content","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","team","ClientList","clients","content","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","team","ClientList","clients","content","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","team","ClientList","clients","content","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","team","ClientList","clients","content","ContentCard","content","CustomImage","sizes"]}],"namespace":["offices","publicTransport","ClientList","clients","content","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["offices","team","ClientList","clients","content","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["offices","team","ClientList","clients","content","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["offices","team","ClientList","clients","content","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["offices","team","ClientList","clients","content","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["offices","team","ClientList","clients","content","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["offices","publicTransport","ClientList","clients","content","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","team","ClientList","clients","content","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","team","ClientList","clients","content","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","team","ClientList","clients","content","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","team","ClientList","clients","content","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","team","ClientList","clients","content","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","team","ClientList","clients","content","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","team","ClientList","clients","content","ContentCard","content","VideoEmbed","duration"]}],"namespace":["offices","publicTransport","ClientList","clients","content","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","team","ClientList","clients","content","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["offices","team","ClientList","clients","content","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","photos","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["offices","photos","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","photos","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["offices","photos","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["offices","photos","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["offices","team","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["offices","publicTransport","ClientList","clients","content","ContentCard","content","ColorBlock"]}],"namespace":["offices","parking","ClientList","clients","content","ContentCard","content"]}],"namespace":["offices","directions","ClientList","clients","content","ContentCard"]}],"namespace":["offices","map","ClientList","clients","content"]},{"type":"string","name":"caseStudyUrl","label":"Case study URL","namespace":["offices","map","ClientList","clients","caseStudyUrl"]},{"type":"object","name":"categories","label":"Categories","list":true,"ui":{},"fields":[{"type":"reference","name":"category","label":"Category","collections":["clientCategories"],"namespace":["offices","directions","ClientList","clients","categories","category"]}],"namespace":["offices","map","ClientList","clients","categories"]}],"namespace":["offices","aboutUs","ClientList","clients"],"searchable":true,"uid":false}],"namespace":["offices","aboutUs","ClientList"]},{"name":"ClientLogos","label":"Client Logos","ui":{"previewSrc":"/images/thumbs/tina/client-logos.jpg"},"fields":[{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","aboutUs","ClientLogos","altText"],"searchable":true,"uid":false}],"namespace":["offices","aboutUs","ClientLogos"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","aboutUs","ColorBlock","title"],"searchable":true,"uid":false},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["offices","aboutUs","ColorBlock","subTitle"],"searchable":true,"uid":false},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","map","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["offices","map","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","map","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["offices","map","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["offices","map","ColorBlock","colorRow","caption"]}],"namespace":["offices","aboutUs","ColorBlock","colorRow"],"searchable":true,"uid":false}],"namespace":["offices","aboutUs","ColorBlock"]},{"name":"ColorPalette","label":"Color Palette","ui":{"previewSrc":"/images/thumbs/tina/color-palette.jpg"},"fields":[{"type":"string","label":"Name","name":"name","namespace":["offices","aboutUs","ColorPalette","name"],"searchable":true,"uid":false}],"namespace":["offices","aboutUs","ColorPalette"]},{"name":"Content","label":"Content","ui":{"previewSrc":"/images/thumbs/tina/content.jpg","defaultItem":{"body":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","aboutUs","Content","title"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","directions","Content","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","directions","Content","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","directions","Content","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","directions","Content","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","directions","Content","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","directions","Content","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","directions","Content","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","directions","Content","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","directions","Content","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","directions","Content","content","CustomImage","sizes"]}],"namespace":["offices","map","Content","content","CustomImage"]},{"name":"ClientLogos","label":"Client Logos","ui":{"previewSrc":"/images/thumbs/tina/client-logos.jpg"},"fields":[{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","directions","Content","content","ClientLogos","altText"]}],"namespace":["offices","map","Content","content","ClientLogos"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","directions","Content","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","directions","Content","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","directions","Content","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","directions","Content","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","directions","Content","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","directions","Content","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","directions","Content","content","VideoEmbed","duration"]}],"namespace":["offices","map","Content","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","directions","Content","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["offices","directions","Content","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","parking","Content","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["offices","parking","Content","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","parking","Content","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["offices","parking","Content","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["offices","parking","Content","content","ColorBlock","colorRow","caption"]}],"namespace":["offices","directions","Content","content","ColorBlock","colorRow"]}],"namespace":["offices","map","Content","content","ColorBlock"]}],"namespace":["offices","aboutUs","Content","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Container Padding","name":"paddingClass","options":["Mobile: No Padding","Mobile: No Top and Horizontal Padding"],"namespace":["offices","aboutUs","Content","paddingClass"],"searchable":true,"uid":false},{"type":"string","label":"Text size","name":"size","options":[{"label":"small","value":"sm"},{"label":"normal","value":"base"},{"label":"large","value":"lg"},{"label":"extra large","value":"xl"},{"label":"2x large","value":"2xl"}],"namespace":["offices","aboutUs","Content","size"],"searchable":true,"uid":false},{"type":"string","label":"Align","name":"align","options":[{"label":"Left","value":"left"},{"label":"Center","value":"center"},{"label":"Right","value":"right"}],"namespace":["offices","aboutUs","Content","align"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["offices","aboutUs","Content","backgroundColor"],"searchable":true,"uid":false}],"namespace":["offices","aboutUs","Content"]},{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["offices","aboutUs","ContentCard","prose"],"searchable":true,"uid":false},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["offices","aboutUs","ContentCard","centerAlignedText"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","directions","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","directions","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","directions","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","directions","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","directions","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","directions","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","directions","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","directions","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","directions","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","directions","ContentCard","content","CustomImage","sizes"]}],"namespace":["offices","map","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["offices","directions","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["offices","directions","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["offices","directions","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["offices","directions","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["offices","directions","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["offices","map","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","directions","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","directions","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","directions","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","directions","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","directions","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","directions","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","directions","ContentCard","content","VideoEmbed","duration"]}],"namespace":["offices","map","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","directions","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["offices","directions","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","parking","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["offices","parking","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","parking","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["offices","parking","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["offices","parking","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["offices","directions","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["offices","map","ContentCard","content","ColorBlock"]}],"namespace":["offices","aboutUs","ContentCard","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["offices","aboutUs","ContentCard"]},{"name":"CustomDownloadButton","label":"Custom Download Button","ui":{"previewSrc":"/images/thumbs/tina/custom-download-button.jpg"},"fields":[{"type":"string","label":"Text","name":"btnText","namespace":["offices","aboutUs","CustomDownloadButton","btnText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"btnLink","namespace":["offices","aboutUs","CustomDownloadButton","btnLink"],"searchable":true,"uid":false}],"namespace":["offices","aboutUs","CustomDownloadButton"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","aboutUs","CustomImage","src"],"searchable":false,"uid":false},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","aboutUs","CustomImage","altText"],"searchable":true,"uid":false},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","aboutUs","CustomImage","alignment"],"searchable":true,"uid":false},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","aboutUs","CustomImage","height"],"searchable":true,"uid":false},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","aboutUs","CustomImage","width"],"searchable":true,"uid":false},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","aboutUs","CustomImage","link"],"searchable":true,"uid":false},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","aboutUs","CustomImage","customClass"],"searchable":true,"uid":false},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","aboutUs","CustomImage","caption"],"searchable":true,"uid":false},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","aboutUs","CustomImage","captionColor"],"searchable":true,"uid":false},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","aboutUs","CustomImage","sizes"],"searchable":true,"uid":false}],"namespace":["offices","aboutUs","CustomImage"]},{"name":"DomainFromQuery","label":"Domain from query","ui":{"previewSrc":"/images/thumbs/tina/domain-from-query.jpg"},"fields":[{"name":"title","label":"Title","type":"string","description":"This is a H1 heading","namespace":["offices","aboutUs","DomainFromQuery","title"],"searchable":true,"uid":false},{"name":"showDomain","label":"Show domain name","type":"boolean","description":"Query param in URL must have key of 'domain'","namespace":["offices","aboutUs","DomainFromQuery","showDomain"],"searchable":true,"uid":false}],"namespace":["offices","aboutUs","DomainFromQuery"]},{"name":"DownloadBlock","label":"Download Block","ui":{"previewSrc":"/images/thumbs/tina/download-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","aboutUs","DownloadBlock","title"],"searchable":true,"uid":false},{"type":"object","label":"Downloads","name":"downloads","ui":{},"list":true,"fields":[{"type":"string","label":"Header","name":"header","namespace":["offices","map","DownloadBlock","downloads","header"]},{"type":"image","label":"Image","name":"img","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","img","uploadDir"]},"namespace":["offices","map","DownloadBlock","downloads","img"]},{"type":"string","label":"Image Background","name":"imgBackground","options":["black","grey","white","darkgrey","darkgreen"],"namespace":["offices","map","DownloadBlock","downloads","imgBackground"]},{"type":"string","label":"First Link Text","name":"firstLinkText","description":"Defaults to PNG","namespace":["offices","map","DownloadBlock","downloads","firstLinkText"]},{"type":"image","label":"First Link","name":"firstLink","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","firstLink","uploadDir"]},"namespace":["offices","map","DownloadBlock","downloads","firstLink"]},{"type":"string","label":"Second Link Text","name":"secondLinkText","description":"Defaults to PDF","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","secondLinkText","uploadDir"]},"namespace":["offices","map","DownloadBlock","downloads","secondLinkText"]},{"type":"image","label":"Second Link","name":"secondLink","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","secondLink","uploadDir"]},"namespace":["offices","map","DownloadBlock","downloads","secondLink"]}],"namespace":["offices","aboutUs","DownloadBlock","downloads"],"searchable":true,"uid":false},{"type":"boolean","label":"Bottom border","name":"bottomBorder","namespace":["offices","aboutUs","DownloadBlock","bottomBorder"],"searchable":true,"uid":false}],"namespace":["offices","aboutUs","DownloadBlock"]},{"name":"DynamicColumns","label":"Dynamic Column Layout","fields":[{"type":"rich-text","label":"Column text body","name":"colBody","required":true,"namespace":["offices","aboutUs","DynamicColumns","colBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"number","label":"Number of columns","name":"colCount","required":true,"ui":{},"namespace":["offices","aboutUs","DynamicColumns","colCount"],"searchable":true,"uid":false}],"namespace":["offices","aboutUs","DynamicColumns"]},{"name":"EventBooking","label":"Events Booking","ui":{"previewSrc":"/images/thumbs/tina/events-booking.jpg"},"fields":[{"type":"number","label":"Duration (In Days)","name":"eventDurationInDays","required":true,"namespace":["offices","aboutUs","EventBooking","eventDurationInDays"],"searchable":true,"uid":false},{"type":"number","label":"Price","name":"price","required":true,"namespace":["offices","aboutUs","EventBooking","price"],"searchable":true,"uid":false},{"type":"number","label":"Discount Price","name":"discountPrice","namespace":["offices","aboutUs","EventBooking","discountPrice"],"searchable":true,"uid":false},{"type":"string","name":"gstText","label":"Select GST Option","options":["inc GST","+ GST"],"required":true,"namespace":["offices","aboutUs","EventBooking","gstText"],"searchable":true,"uid":false},{"type":"string","label":"Discount Note","name":"discountNote","namespace":["offices","aboutUs","EventBooking","discountNote"],"searchable":true,"uid":false},{"type":"object","label":"Event","name":"eventList","ui":{},"list":true,"fields":[{"type":"string","label":"City","name":"city","namespace":["offices","map","EventBooking","eventList","city"]},{"type":"datetime","label":"Start Date","name":"date","ui":{},"namespace":["offices","map","EventBooking","eventList","date"]},{"type":"string","label":"Booking URL","name":"bookingURL","namespace":["offices","map","EventBooking","eventList","bookingURL"]},{"type":"reference","label":"Location","name":"location","collections":["locations"],"namespace":["offices","map","EventBooking","eventList","location"]}],"namespace":["offices","aboutUs","EventBooking","eventList"],"searchable":true,"uid":false}],"namespace":["offices","aboutUs","EventBooking"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["offices","directions","EventLink","content","Flag","country"]}],"namespace":["offices","map","EventLink","content","Flag"]}],"namespace":["offices","aboutUs","EventLink","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Link","name":"link","namespace":["offices","aboutUs","EventLink","link"],"searchable":true,"uid":false},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["offices","aboutUs","EventLink","eventThumbnail"],"searchable":false,"uid":false},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["offices","aboutUs","EventLink","thumbnailAlt"],"searchable":true,"uid":false}],"namespace":["offices","aboutUs","EventLink"]},{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["offices","aboutUs","Flag","country"],"searchable":true,"uid":false}],"namespace":["offices","aboutUs","Flag"]},{"name":"FixedColumns","label":"Fixed Column Layout (2 columns)","ui":{"previewSrc":"/images/thumbs/tina/fixed-columns.jpg"},"fields":[{"type":"rich-text","label":"Header Section (Optional)","name":"headerSection","namespace":["offices","aboutUs","FixedColumns","headerSection"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"First column text","name":"firstColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["offices","directions","FixedColumns","firstColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["offices","directions","FixedColumns","firstColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","publicTransport","FixedColumns","firstColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","publicTransport","FixedColumns","firstColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","publicTransport","FixedColumns","firstColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","publicTransport","FixedColumns","firstColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","publicTransport","FixedColumns","firstColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","publicTransport","FixedColumns","firstColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","publicTransport","FixedColumns","firstColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","publicTransport","FixedColumns","firstColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","publicTransport","FixedColumns","firstColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","publicTransport","FixedColumns","firstColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["offices","parking","FixedColumns","firstColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["offices","publicTransport","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["offices","publicTransport","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["offices","publicTransport","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["offices","publicTransport","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["offices","publicTransport","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["offices","parking","FixedColumns","firstColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","publicTransport","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","publicTransport","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","publicTransport","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","publicTransport","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","publicTransport","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","publicTransport","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","publicTransport","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["offices","parking","FixedColumns","firstColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","publicTransport","FixedColumns","firstColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["offices","publicTransport","FixedColumns","firstColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","team","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["offices","team","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","team","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["offices","team","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["offices","team","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["offices","publicTransport","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["offices","parking","FixedColumns","firstColBody","ContentCard","content","ColorBlock"]}],"namespace":["offices","directions","FixedColumns","firstColBody","ContentCard","content"]}],"namespace":["offices","map","FixedColumns","firstColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","directions","FixedColumns","firstColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","directions","FixedColumns","firstColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","directions","FixedColumns","firstColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","directions","FixedColumns","firstColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","directions","FixedColumns","firstColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","directions","FixedColumns","firstColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","directions","FixedColumns","firstColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","directions","FixedColumns","firstColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","directions","FixedColumns","firstColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","directions","FixedColumns","firstColBody","CustomImage","sizes"]}],"namespace":["offices","map","FixedColumns","firstColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["offices","publicTransport","FixedColumns","firstColBody","EventLink","content","Flag","country"]}],"namespace":["offices","parking","FixedColumns","firstColBody","EventLink","content","Flag"]}],"namespace":["offices","directions","FixedColumns","firstColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["offices","directions","FixedColumns","firstColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["offices","directions","FixedColumns","firstColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["offices","directions","FixedColumns","firstColBody","EventLink","thumbnailAlt"]}],"namespace":["offices","map","FixedColumns","firstColBody","EventLink"]}],"namespace":["offices","aboutUs","FixedColumns","firstColBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"Second column text","name":"secondColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["offices","directions","FixedColumns","secondColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["offices","directions","FixedColumns","secondColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","publicTransport","FixedColumns","secondColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","publicTransport","FixedColumns","secondColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","publicTransport","FixedColumns","secondColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","publicTransport","FixedColumns","secondColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","publicTransport","FixedColumns","secondColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","publicTransport","FixedColumns","secondColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","publicTransport","FixedColumns","secondColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","publicTransport","FixedColumns","secondColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","publicTransport","FixedColumns","secondColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","publicTransport","FixedColumns","secondColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["offices","parking","FixedColumns","secondColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["offices","publicTransport","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["offices","publicTransport","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["offices","publicTransport","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["offices","publicTransport","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["offices","publicTransport","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["offices","parking","FixedColumns","secondColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","publicTransport","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","publicTransport","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","publicTransport","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","publicTransport","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","publicTransport","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","publicTransport","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","publicTransport","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["offices","parking","FixedColumns","secondColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","publicTransport","FixedColumns","secondColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["offices","publicTransport","FixedColumns","secondColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","team","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["offices","team","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","team","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["offices","team","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["offices","team","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["offices","publicTransport","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["offices","parking","FixedColumns","secondColBody","ContentCard","content","ColorBlock"]}],"namespace":["offices","directions","FixedColumns","secondColBody","ContentCard","content"]}],"namespace":["offices","map","FixedColumns","secondColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","directions","FixedColumns","secondColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","directions","FixedColumns","secondColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","directions","FixedColumns","secondColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","directions","FixedColumns","secondColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","directions","FixedColumns","secondColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","directions","FixedColumns","secondColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","directions","FixedColumns","secondColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","directions","FixedColumns","secondColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","directions","FixedColumns","secondColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","directions","FixedColumns","secondColBody","CustomImage","sizes"]}],"namespace":["offices","map","FixedColumns","secondColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["offices","publicTransport","FixedColumns","secondColBody","EventLink","content","Flag","country"]}],"namespace":["offices","parking","FixedColumns","secondColBody","EventLink","content","Flag"]}],"namespace":["offices","directions","FixedColumns","secondColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["offices","directions","FixedColumns","secondColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["offices","directions","FixedColumns","secondColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["offices","directions","FixedColumns","secondColBody","EventLink","thumbnailAlt"]}],"namespace":["offices","map","FixedColumns","secondColBody","EventLink"]}],"namespace":["offices","aboutUs","FixedColumns","secondColBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["offices","aboutUs","FixedColumns"]},{"name":"FixedTabsLayout","label":"Fixed Tabs Layout","ui":{"previewSrc":"/images/thumbs/tina/fixed-tabs-layout.jpg"},"fields":[{"type":"string","name":"firstTab","label":"First Tab","namespace":["offices","aboutUs","FixedTabsLayout","firstTab"],"searchable":true,"uid":false},{"type":"rich-text","name":"firstHeading","label":"First Heading","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","directions","FixedTabsLayout","firstHeading","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","directions","FixedTabsLayout","firstHeading","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","directions","FixedTabsLayout","firstHeading","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","directions","FixedTabsLayout","firstHeading","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","directions","FixedTabsLayout","firstHeading","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","directions","FixedTabsLayout","firstHeading","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","directions","FixedTabsLayout","firstHeading","VideoEmbed","duration"]}],"namespace":["offices","map","FixedTabsLayout","firstHeading","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["offices","directions","FixedTabsLayout","firstHeading","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["offices","directions","FixedTabsLayout","firstHeading","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["offices","directions","FixedTabsLayout","firstHeading","BookingButton","buttonSubtitle"]}],"namespace":["offices","map","FixedTabsLayout","firstHeading","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["offices","directions","FixedTabsLayout","firstHeading","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["offices","parking","FixedTabsLayout","firstHeading","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["offices","parking","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["offices","parking","FixedTabsLayout","firstHeading","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["offices","parking","FixedTabsLayout","firstHeading","ExpertBlock","expertList","skills"]}],"namespace":["offices","directions","FixedTabsLayout","firstHeading","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["offices","parking","FixedTabsLayout","firstHeading","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["offices","parking","FixedTabsLayout","firstHeading","ExpertBlock","link","url"]}],"namespace":["offices","directions","FixedTabsLayout","firstHeading","ExpertBlock","link"]}],"namespace":["offices","map","FixedTabsLayout","firstHeading","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","parking","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["offices","parking","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["offices","parking","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["offices","publicTransport","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["offices","publicTransport","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["offices","publicTransport","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["offices","parking","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["offices","directions","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["offices","map","FixedTabsLayout","firstHeading","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","directions","FixedTabsLayout","firstHeading","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","directions","FixedTabsLayout","firstHeading","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","directions","FixedTabsLayout","firstHeading","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","directions","FixedTabsLayout","firstHeading","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","directions","FixedTabsLayout","firstHeading","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","directions","FixedTabsLayout","firstHeading","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","directions","FixedTabsLayout","firstHeading","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","directions","FixedTabsLayout","firstHeading","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","directions","FixedTabsLayout","firstHeading","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","directions","FixedTabsLayout","firstHeading","CustomImage","sizes"]}],"namespace":["offices","map","FixedTabsLayout","firstHeading","CustomImage"]}],"namespace":["offices","aboutUs","FixedTabsLayout","firstHeading"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","name":"firstBody","label":"First Body","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","directions","FixedTabsLayout","firstBody","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","directions","FixedTabsLayout","firstBody","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","directions","FixedTabsLayout","firstBody","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","directions","FixedTabsLayout","firstBody","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","directions","FixedTabsLayout","firstBody","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","directions","FixedTabsLayout","firstBody","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","directions","FixedTabsLayout","firstBody","VideoEmbed","duration"]}],"namespace":["offices","map","FixedTabsLayout","firstBody","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["offices","directions","FixedTabsLayout","firstBody","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["offices","directions","FixedTabsLayout","firstBody","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["offices","directions","FixedTabsLayout","firstBody","BookingButton","buttonSubtitle"]}],"namespace":["offices","map","FixedTabsLayout","firstBody","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["offices","directions","FixedTabsLayout","firstBody","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["offices","parking","FixedTabsLayout","firstBody","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["offices","parking","FixedTabsLayout","firstBody","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["offices","parking","FixedTabsLayout","firstBody","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["offices","parking","FixedTabsLayout","firstBody","ExpertBlock","expertList","skills"]}],"namespace":["offices","directions","FixedTabsLayout","firstBody","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["offices","parking","FixedTabsLayout","firstBody","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["offices","parking","FixedTabsLayout","firstBody","ExpertBlock","link","url"]}],"namespace":["offices","directions","FixedTabsLayout","firstBody","ExpertBlock","link"]}],"namespace":["offices","map","FixedTabsLayout","firstBody","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","parking","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["offices","parking","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["offices","parking","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["offices","publicTransport","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["offices","publicTransport","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["offices","publicTransport","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["offices","parking","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["offices","directions","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["offices","map","FixedTabsLayout","firstBody","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","directions","FixedTabsLayout","firstBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","directions","FixedTabsLayout","firstBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","directions","FixedTabsLayout","firstBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","directions","FixedTabsLayout","firstBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","directions","FixedTabsLayout","firstBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","directions","FixedTabsLayout","firstBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","directions","FixedTabsLayout","firstBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","directions","FixedTabsLayout","firstBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","directions","FixedTabsLayout","firstBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","directions","FixedTabsLayout","firstBody","CustomImage","sizes"]}],"namespace":["offices","map","FixedTabsLayout","firstBody","CustomImage"]}],"namespace":["offices","aboutUs","FixedTabsLayout","firstBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","name":"secondTab","label":"Second Tab","namespace":["offices","aboutUs","FixedTabsLayout","secondTab"],"searchable":true,"uid":false},{"type":"rich-text","name":"secondHeading","label":"Second Heading","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","directions","FixedTabsLayout","secondHeading","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","directions","FixedTabsLayout","secondHeading","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","directions","FixedTabsLayout","secondHeading","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","directions","FixedTabsLayout","secondHeading","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","directions","FixedTabsLayout","secondHeading","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","directions","FixedTabsLayout","secondHeading","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","directions","FixedTabsLayout","secondHeading","VideoEmbed","duration"]}],"namespace":["offices","map","FixedTabsLayout","secondHeading","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["offices","directions","FixedTabsLayout","secondHeading","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["offices","directions","FixedTabsLayout","secondHeading","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["offices","directions","FixedTabsLayout","secondHeading","BookingButton","buttonSubtitle"]}],"namespace":["offices","map","FixedTabsLayout","secondHeading","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["offices","directions","FixedTabsLayout","secondHeading","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["offices","parking","FixedTabsLayout","secondHeading","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["offices","parking","FixedTabsLayout","secondHeading","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["offices","parking","FixedTabsLayout","secondHeading","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["offices","parking","FixedTabsLayout","secondHeading","ExpertBlock","expertList","skills"]}],"namespace":["offices","directions","FixedTabsLayout","secondHeading","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["offices","parking","FixedTabsLayout","secondHeading","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["offices","parking","FixedTabsLayout","secondHeading","ExpertBlock","link","url"]}],"namespace":["offices","directions","FixedTabsLayout","secondHeading","ExpertBlock","link"]}],"namespace":["offices","map","FixedTabsLayout","secondHeading","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","parking","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["offices","parking","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["offices","parking","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["offices","publicTransport","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["offices","publicTransport","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["offices","publicTransport","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["offices","parking","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["offices","directions","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["offices","map","FixedTabsLayout","secondHeading","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","directions","FixedTabsLayout","secondHeading","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","directions","FixedTabsLayout","secondHeading","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","directions","FixedTabsLayout","secondHeading","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","directions","FixedTabsLayout","secondHeading","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","directions","FixedTabsLayout","secondHeading","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","directions","FixedTabsLayout","secondHeading","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","directions","FixedTabsLayout","secondHeading","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","directions","FixedTabsLayout","secondHeading","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","directions","FixedTabsLayout","secondHeading","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","directions","FixedTabsLayout","secondHeading","CustomImage","sizes"]}],"namespace":["offices","map","FixedTabsLayout","secondHeading","CustomImage"]}],"namespace":["offices","aboutUs","FixedTabsLayout","secondHeading"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","name":"secondBody","label":"Second Body","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","directions","FixedTabsLayout","secondBody","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","directions","FixedTabsLayout","secondBody","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","directions","FixedTabsLayout","secondBody","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","directions","FixedTabsLayout","secondBody","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","directions","FixedTabsLayout","secondBody","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","directions","FixedTabsLayout","secondBody","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","directions","FixedTabsLayout","secondBody","VideoEmbed","duration"]}],"namespace":["offices","map","FixedTabsLayout","secondBody","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["offices","directions","FixedTabsLayout","secondBody","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["offices","directions","FixedTabsLayout","secondBody","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["offices","directions","FixedTabsLayout","secondBody","BookingButton","buttonSubtitle"]}],"namespace":["offices","map","FixedTabsLayout","secondBody","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["offices","directions","FixedTabsLayout","secondBody","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["offices","parking","FixedTabsLayout","secondBody","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["offices","parking","FixedTabsLayout","secondBody","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["offices","parking","FixedTabsLayout","secondBody","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["offices","parking","FixedTabsLayout","secondBody","ExpertBlock","expertList","skills"]}],"namespace":["offices","directions","FixedTabsLayout","secondBody","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["offices","parking","FixedTabsLayout","secondBody","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["offices","parking","FixedTabsLayout","secondBody","ExpertBlock","link","url"]}],"namespace":["offices","directions","FixedTabsLayout","secondBody","ExpertBlock","link"]}],"namespace":["offices","map","FixedTabsLayout","secondBody","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","parking","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["offices","parking","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["offices","parking","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["offices","publicTransport","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["offices","publicTransport","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["offices","publicTransport","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["offices","parking","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["offices","directions","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["offices","map","FixedTabsLayout","secondBody","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","directions","FixedTabsLayout","secondBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","directions","FixedTabsLayout","secondBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","directions","FixedTabsLayout","secondBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","directions","FixedTabsLayout","secondBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","directions","FixedTabsLayout","secondBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","directions","FixedTabsLayout","secondBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","directions","FixedTabsLayout","secondBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","directions","FixedTabsLayout","secondBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","directions","FixedTabsLayout","secondBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","directions","FixedTabsLayout","secondBody","CustomImage","sizes"]}],"namespace":["offices","map","FixedTabsLayout","secondBody","CustomImage"]}],"namespace":["offices","aboutUs","FixedTabsLayout","secondBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["offices","aboutUs","FixedTabsLayout"]},{"label":"Google Maps","name":"GoogleMaps","ui":{"previewSrc":"/images/thumbs/tina/google-maps.jpg"},"fields":[{"type":"string","label":"URL","name":"embedUrl","required":true,"namespace":["offices","aboutUs","GoogleMaps","embedUrl"],"searchable":true,"uid":false},{"type":"string","label":"Width","name":"embedWidth","namespace":["offices","aboutUs","GoogleMaps","embedWidth"],"searchable":true,"uid":false},{"type":"string","label":"Height","name":"embedHeight","namespace":["offices","aboutUs","GoogleMaps","embedHeight"],"searchable":true,"uid":false}],"namespace":["offices","aboutUs","GoogleMaps"]},{"label":"Grid Layout","name":"GridLayout","ui":{"previewSrc":"/images/thumbs/tina/grid-layout.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","aboutUs","GridLayout","title"],"searchable":true,"uid":false},{"type":"object","list":true,"label":"Grid Items","name":"grids","ui":{},"fields":[{"type":"string","label":"Grid Title","name":"gridTitle","namespace":["offices","map","GridLayout","grids","gridTitle"]},{"type":"boolean","label":"Show Grid Title","name":"showGridTitle","namespace":["offices","map","GridLayout","grids","showGridTitle"]},{"type":"boolean","label":"Centered Grid Title","name":"centeredGridTitle","namespace":["offices","map","GridLayout","grids","centeredGridTitle"]},{"type":"boolean","label":"Show Header Divider","name":"showHeaderDivider","namespace":["offices","map","GridLayout","grids","showHeaderDivider"]},{"type":"boolean","label":"Offset Grid Start","name":"offsetGridStart","namespace":["offices","map","GridLayout","grids","offsetGridStart"]},{"type":"object","label":"Blocks","name":"blocks","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","directions","GridLayout","grids","blocks","title"]},{"type":"boolean","label":"Show Title","name":"showTitle","namespace":["offices","directions","GridLayout","grids","blocks","showTitle"]},{"type":"image","label":"Image","name":"image","uploadDir":{"namespace":["page","beforeBody","GridLayout","grids","blocks","image","uploadDir"]},"namespace":["offices","directions","GridLayout","grids","blocks","image"]},{"type":"image","label":"Related Image","name":"relatedImage","uploadDir":{"namespace":["page","beforeBody","GridLayout","grids","blocks","relatedImage","uploadDir"]},"namespace":["offices","directions","GridLayout","grids","blocks","relatedImage"]},{"type":"rich-text","name":"linkContent","label":"Link Content","templates":[{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["offices","publicTransport","GridLayout","grids","blocks","linkContent","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["offices","publicTransport","GridLayout","grids","blocks","linkContent","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["offices","publicTransport","GridLayout","grids","blocks","linkContent","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["offices","publicTransport","GridLayout","grids","blocks","linkContent","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["offices","publicTransport","GridLayout","grids","blocks","linkContent","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["offices","publicTransport","GridLayout","grids","blocks","linkContent","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["offices","publicTransport","GridLayout","grids","blocks","linkContent","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["offices","publicTransport","GridLayout","grids","blocks","linkContent","UtilityButton","openInNewTab"]}],"namespace":["offices","parking","GridLayout","grids","blocks","linkContent","UtilityButton"]}],"namespace":["offices","directions","GridLayout","grids","blocks","linkContent"]}],"namespace":["offices","map","GridLayout","grids","blocks"]}],"namespace":["offices","aboutUs","GridLayout","grids"],"searchable":true,"uid":false}],"namespace":["offices","aboutUs","GridLayout"]},{"name":"Hero","label":"Hero","ui":{"previewSrc":"/blocks/hero.png","defaultItem":{"tagline":"Here's some text above the other text","headline":"This Big Text is Totally Awesome","text":"Phasellus scelerisque, libero eu finibus rutrum, risus risus accumsan libero, nec molestie urna dui a leo."}},"fields":[{"type":"string","label":"Tagline","name":"tagline","namespace":["offices","aboutUs","Hero","tagline"],"searchable":true,"uid":false},{"type":"string","label":"Headline","name":"headline","namespace":["offices","aboutUs","Hero","headline"],"searchable":true,"uid":false},{"label":"Text","name":"text","type":"rich-text","namespace":["offices","aboutUs","Hero","text"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"label":"Actions","name":"actions","type":"object","list":true,"ui":{"defaultItem":{"label":"Action Label","type":"button","icon":true,"link":"/"}},"fields":[{"label":"Label","name":"label","type":"string","namespace":["offices","map","Hero","actions","label"]},{"label":"Type","name":"type","type":"string","options":[{"label":"Button","value":"button"},{"label":"Link","value":"link"}],"namespace":["offices","map","Hero","actions","type"]},{"label":"Icon","name":"icon","type":"boolean","namespace":["offices","map","Hero","actions","icon"]},{"label":"Link","name":"link","type":"string","namespace":["offices","map","Hero","actions","link"]}],"namespace":["offices","aboutUs","Hero","actions"],"searchable":true,"uid":false},{"type":"object","label":"Image","name":"image","fields":[{"name":"src","label":"Image Source","type":"image","namespace":["offices","map","Hero","image","src"]},{"name":"alt","label":"Alt Text","type":"string","namespace":["offices","map","Hero","image","alt"]}],"namespace":["offices","aboutUs","Hero","image"],"searchable":true,"uid":false},{"type":"string","label":"Color","name":"color","options":[{"label":"Default","value":"default"},{"label":"Tint","value":"tint"},{"label":"Primary","value":"primary"}],"namespace":["offices","aboutUs","Hero","color"],"searchable":true,"uid":false}],"namespace":["offices","aboutUs","Hero"]},{"name":"HorizontalCard","label":"Horizontal Card","ui":{"previewSrc":"/images/thumbs/tina/horizontal-card.jpg"},"fields":[{"type":"object","label":"Cards","name":"cardList","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","map","HorizontalCard","cardList","title"]},{"type":"rich-text","label":"Content","name":"content","namespace":["offices","map","HorizontalCard","cardList","content"]},{"type":"image","label":"Thumbnail","name":"thumbnail","uploadDir":{"namespace":["page","beforeBody","HorizontalCard","cardList","thumbnail","uploadDir"]},"namespace":["offices","map","HorizontalCard","cardList","thumbnail"]},{"type":"string","label":"Link","name":"link","namespace":["offices","map","HorizontalCard","cardList","link"]}],"namespace":["offices","aboutUs","HorizontalCard","cardList"],"searchable":true,"uid":false},{"type":"object","label":"Button","name":"button","fields":[{"type":"string","label":"Text","name":"text","namespace":["offices","map","HorizontalCard","button","text"]},{"type":"string","label":"Link","name":"link","namespace":["offices","map","HorizontalCard","button","link"]}],"namespace":["offices","aboutUs","HorizontalCard","button"],"searchable":true,"uid":false}],"namespace":["offices","aboutUs","HorizontalCard"]},{"name":"InternalCarousel","label":"Internal Carousel","ui":{"previewSrc":"/images/thumbs/tina/internal-carousel.jpg"},"fields":[{"label":"Images","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Image description"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["offices","map","InternalCarousel","items","label"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","InternalCarousel","items","imgSrc","uploadDir"]},"namespace":["offices","map","InternalCarousel","items","imgSrc"]}],"namespace":["offices","aboutUs","InternalCarousel","items"],"searchable":true,"uid":false},{"type":"string","label":"Header","name":"header","namespace":["offices","aboutUs","InternalCarousel","header"],"searchable":true,"uid":false},{"type":"rich-text","label":"Text","name":"paragraph","isBody":false,"namespace":["offices","aboutUs","InternalCarousel","paragraph"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Website","name":"website","namespace":["offices","aboutUs","InternalCarousel","website"],"searchable":true,"uid":false},{"type":"object","label":"Technologies","name":"technologies","list":true,"ui":{},"fields":[{"type":"string","label":"Name","name":"name","namespace":["offices","map","InternalCarousel","technologies","name"]}],"namespace":["offices","aboutUs","InternalCarousel","technologies"],"searchable":true,"uid":false},{"type":"string","label":"Case Study","name":"caseStudyUrl","namespace":["offices","aboutUs","InternalCarousel","caseStudyUrl"],"searchable":true,"uid":false},{"type":"string","label":"Video URL","name":"videoUrl","namespace":["offices","aboutUs","InternalCarousel","videoUrl"],"searchable":true,"uid":false}],"namespace":["offices","aboutUs","InternalCarousel"]},{"label":"Join As Presenter","name":"joinAsPresenter","fields":[{"label":"Learn More Link","name":"link","type":"string","namespace":["offices","aboutUs","joinAsPresenter","link"],"searchable":true,"uid":false},{"label":"Image","name":"img","type":"image","namespace":["offices","aboutUs","joinAsPresenter","img"],"searchable":false,"uid":false}],"namespace":["offices","aboutUs","joinAsPresenter"]},{"label":"Join Github","name":"joinGithub","ui":{"previewSrc":"/images/thumbs/tina/join-github.jpg"},"fields":[{"label":"Title","name":"title","type":"string","namespace":["offices","aboutUs","joinGithub","title"],"searchable":true,"uid":false},{"label":"Join Github Link","name":"link","type":"string","namespace":["offices","aboutUs","joinGithub","link"],"searchable":true,"uid":false}],"namespace":["offices","aboutUs","joinGithub"]},{"name":"JotFormEmbed","label":"JotForm Embed","ui":{"previewSrc":"/images/thumbs/tina/jotform-embed.jpg"},"fields":[{"type":"string","name":"jotFormId","label":"JotForm Id","required":true,"namespace":["offices","aboutUs","JotFormEmbed","jotFormId"],"searchable":true,"uid":false},{"type":"string","label":"Button Text","name":"buttonText","namespace":["offices","aboutUs","JotFormEmbed","buttonText"],"searchable":true,"uid":false},{"type":"string","name":"containerClass","label":"Container Class","namespace":["offices","aboutUs","JotFormEmbed","containerClass"],"searchable":true,"uid":false},{"type":"string","label":"Button Class","name":"buttonClass","namespace":["offices","aboutUs","JotFormEmbed","buttonClass"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","namespace":["offices","aboutUs","JotFormEmbed","animated"],"searchable":true,"uid":false}],"namespace":["offices","aboutUs","JotFormEmbed"]},{"name":"LatestTech","label":"Latest Tech","ui":{"previewSrc":"/images/thumbs/tina/latest-tech.jpg"},"fields":[{"type":"reference","description":"Select a config file including a set of badges","collections":["userGroupGlobal"],"label":"Badges","name":"badges","namespace":["offices","aboutUs","LatestTech","badges"],"searchable":true,"uid":false}],"namespace":["offices","aboutUs","LatestTech"]},{"name":"LocationBlock","label":"Locations","ui":{"previewSrc":"/images/thumbs/tina/locations.jpg"},"fields":[{"type":"string","name":"title","label":"Title","namespace":["offices","aboutUs","LocationBlock","title"],"searchable":true,"uid":false},{"type":"object","label":"Location List","name":"locationList","list":true,"ui":{},"fields":[{"type":"reference","collections":["locations"],"label":"Location","name":"location","namespace":["offices","map","LocationBlock","locationList","location"]}],"namespace":["offices","aboutUs","LocationBlock","locationList"],"searchable":true,"uid":false},{"type":"object","name":"chapelWebsite","label":"Chapel Website","fields":[{"type":"string","name":"title","label":"Text","namespace":["offices","map","LocationBlock","chapelWebsite","title"]},{"type":"string","name":"URL","label":"URL","namespace":["offices","map","LocationBlock","chapelWebsite","URL"]}],"namespace":["offices","aboutUs","LocationBlock","chapelWebsite"],"searchable":true,"uid":false}],"namespace":["offices","aboutUs","LocationBlock"]},{"name":"NewslettersTable","label":"Newsletters Table","ui":{"previewSrc":"/images/thumbs/tina/newsletters-table.jpg"},"fields":[{"type":"string","label":"Header text","name":"headerText","namespace":["offices","aboutUs","NewslettersTable","headerText"],"searchable":true,"uid":false}],"namespace":["offices","aboutUs","NewslettersTable"]},{"label":"Organizer","name":"organizer","fields":[{"type":"image","label":"Profile Image","name":"profileImg","namespace":["offices","aboutUs","organizer","profileImg"],"searchable":false,"uid":false},{"type":"string","label":"Profile Link","name":"profileLink","namespace":["offices","aboutUs","organizer","profileLink"],"searchable":true,"uid":false},{"type":"string","label":"Name","name":"name","namespace":["offices","aboutUs","organizer","name"],"searchable":true,"uid":false},{"type":"string","label":"Position","name":"position","namespace":["offices","aboutUs","organizer","position"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","namespace":["offices","aboutUs","organizer","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["offices","aboutUs","organizer"]},{"label":"Payment Block","name":"paymentBlock","ui":{"previewSrc":"/images/thumbs/tina/payment-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","aboutUs","paymentBlock","title"],"searchable":true,"uid":false},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["offices","aboutUs","paymentBlock","subTitle"],"searchable":true,"uid":false},{"type":"reference","label":"Payment Links","name":"payments","collections":["paymentDetails"],"namespace":["offices","aboutUs","paymentBlock","payments"],"searchable":true,"uid":false},{"type":"rich-text","label":"Footer","name":"footer","namespace":["offices","aboutUs","paymentBlock","footer"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"image","label":"Credit Cards Image","name":"creditImgSrc","namespace":["offices","aboutUs","paymentBlock","creditImgSrc"],"searchable":false,"uid":false},{"type":"string","label":"Alt Text","name":"altTxt","namespace":["offices","aboutUs","paymentBlock","altTxt"],"searchable":true,"uid":false}],"namespace":["offices","aboutUs","paymentBlock"]},{"name":"PresenterBlock","label":"Presenters","ui":{"previewSrc":"/images/thumbs/tina/presenters.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["offices","aboutUs","PresenterBlock","header"],"searchable":true,"uid":false},{"type":"object","name":"presenterList","label":"Presenters","list":true,"ui":{},"fields":[{"type":"reference","name":"presenter","label":"Presenters","collections":["presenter"],"namespace":["offices","map","PresenterBlock","presenterList","presenter"]}],"namespace":["offices","aboutUs","PresenterBlock","presenterList"],"searchable":true,"uid":false},{"type":"object","label":"Other Events","name":"otherEvent","fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","map","PresenterBlock","otherEvent","title"]},{"type":"string","label":"URL","name":"eventURL","namespace":["offices","map","PresenterBlock","otherEvent","eventURL"]}],"namespace":["offices","aboutUs","PresenterBlock","otherEvent"],"searchable":true,"uid":false}],"namespace":["offices","aboutUs","PresenterBlock"]},{"label":"Recurring Event","name":"RecurringEvent","ui":{"previewSrc":"/images/thumbs/tina/recurring-event.jpg"},"fields":[{"type":"string","label":"Apply Link Redirect","name":"applyLinkRedirect","namespace":["offices","aboutUs","RecurringEvent","applyLinkRedirect"],"searchable":true,"uid":false},{"type":"string","label":"Day","name":"day","options":[{"label":"Monday","value":"monday"},{"label":"Tuesday","value":"tuesday"},{"label":"Wednesday","value":"wednesday"},{"label":"Thursday","value":"thursday"},{"label":"Friday","value":"friday"},{"label":"Saturday","value":"saturday"},{"label":"Sunday","value":"sunday"}],"required":true,"namespace":["offices","aboutUs","RecurringEvent","day"],"searchable":true,"uid":false}],"namespace":["offices","aboutUs","RecurringEvent"]},{"name":"SectionHeader","label":"Section Header","ui":{"previewSrc":"/images/thumbs/tina/section-header.jpg"},"fields":[{"type":"string","label":"Header Text","name":"headerText","namespace":["offices","aboutUs","SectionHeader","headerText"],"searchable":true,"uid":false}],"namespace":["offices","aboutUs","SectionHeader"]},{"name":"ServiceCards","label":"Service Cards","ui":{"previewSrc":"/images/thumbs/tina/services-cards.jpg"},"fields":[{"type":"string","label":"Big Cards Label","name":"bigCardsLabel","namespace":["offices","aboutUs","ServiceCards","bigCardsLabel"],"searchable":true,"uid":false},{"label":"Big Cards","name":"bigCards","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","map","ServiceCards","bigCards","title"]},{"type":"string","label":"Description","component":"textarea","name":"description","namespace":["offices","map","ServiceCards","bigCards","description"]},{"type":"string","label":"URL","name":"link","namespace":["offices","map","ServiceCards","bigCards","link"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Red","value":"red"},{"label":"Light Gray","value":"lightgray"},{"label":"Medium Gray","value":"mediumgray"},{"label":"Dark Gray","value":"darkgray"}],"namespace":["offices","map","ServiceCards","bigCards","color"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","ServiceCards","bigCards","imgSrc","uploadDir"]},"namespace":["offices","map","ServiceCards","bigCards","imgSrc"]}],"namespace":["offices","aboutUs","ServiceCards","bigCards"],"searchable":true,"uid":false},{"type":"string","label":"Small Cards Label","name":"smallCardsLabel","namespace":["offices","aboutUs","ServiceCards","smallCardsLabel"],"searchable":true,"uid":false},{"label":"Small Cards","name":"smallCards","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","map","ServiceCards","smallCards","title"]},{"type":"string","label":"URL","name":"link","namespace":["offices","map","ServiceCards","smallCards","link"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Red","value":"red"},{"label":"Light Gray","value":"lightgray"},{"label":"Medium Gray","value":"mediumgray"},{"label":"Dark Gray","value":"darkgray"}],"namespace":["offices","map","ServiceCards","smallCards","color"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","ServiceCards","smallCards","imgSrc","uploadDir"]},"namespace":["offices","map","ServiceCards","smallCards","imgSrc"]},{"type":"boolean","label":"External Page","description":"Select this if the link is not part of the website. This includes SSW.Rules, and SSW.People links","name":"isExternal","namespace":["offices","map","ServiceCards","smallCards","isExternal"]}],"namespace":["offices","aboutUs","ServiceCards","smallCards"],"searchable":true,"uid":false},{"label":"Links","name":"links","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["offices","map","ServiceCards","links","label"]},{"type":"string","label":"URL","name":"link","namespace":["offices","map","ServiceCards","links","link"]}],"namespace":["offices","aboutUs","ServiceCards","links"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["offices","aboutUs","ServiceCards","backgroundColor"],"searchable":true,"uid":false}],"namespace":["offices","aboutUs","ServiceCards"]},{"label":"Table Layout","name":"TableLayout","ui":{"previewSrc":"/images/thumbs/tina/table-layout.jpg"},"fields":[{"label":"Table Style","name":"tableStyle","type":"string","options":["none","basicBorder","styled","benefits"],"namespace":["offices","aboutUs","TableLayout","tableStyle"],"searchable":true,"uid":false},{"label":"First column bolded + left aligned","name":"firstColBold","type":"boolean","required":false,"namespace":["offices","aboutUs","TableLayout","firstColBold"],"searchable":true,"uid":false},{"type":"string","label":"Table Headers","name":"headers","list":true,"namespace":["offices","aboutUs","TableLayout","headers"],"searchable":true,"uid":false},{"type":"object","label":"Rows","name":"rows","list":true,"fields":[{"type":"object","label":"Cells","name":"cells","list":true,"fields":[{"type":"string","label":"Value","name":"cellValue","required":true,"component":{"namespace":["page","beforeBody","TableLayout","rows","cells","cellValue",""]},"namespace":["offices","directions","TableLayout","rows","cells","cellValue"]}],"ui":{},"namespace":["offices","map","TableLayout","rows","cells"]},{"type":"boolean","label":"Is Heading","name":"isHeader","required":false,"namespace":["offices","map","TableLayout","rows","isHeader"]}],"ui":{},"namespace":["offices","aboutUs","TableLayout","rows"],"searchable":true,"uid":false}],"namespace":["offices","aboutUs","TableLayout"]},{"name":"TestimonialsList","label":"Testimonials List","ui":{"previewSrc":"/images/thumbs/tina/testimonials.jpg"},"fields":[{"type":"object","label":"Exclude Categories","name":"excludedCategories","ui":{},"list":true,"fields":[{"type":"reference","label":"Category Name","name":"categoryName","collections":["testimonialCategories"],"namespace":["offices","map","TestimonialsList","excludedCategories","categoryName"]}],"namespace":["offices","aboutUs","TestimonialsList","excludedCategories"],"searchable":true,"uid":false}],"namespace":["offices","aboutUs","TestimonialsList"]},{"label":"Training Information","name":"TrainingInformation","ui":{"previewSrc":"/images/thumbs/tina/training-information.jpg"},"fields":[{"type":"object","label":"Training Information Items","name":"trainingInformationItems","list":true,"fields":[{"type":"string","label":"Header","name":"header","namespace":["offices","map","TrainingInformation","trainingInformationItems","header"]},{"type":"rich-text","label":"Body","name":"body","templates":[{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["offices","parking","TrainingInformation","trainingInformationItems","body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["offices","parking","TrainingInformation","trainingInformationItems","body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["offices","parking","TrainingInformation","trainingInformationItems","body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["offices","parking","TrainingInformation","trainingInformationItems","body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["offices","parking","TrainingInformation","trainingInformationItems","body","VerticalListItem","afterBody"]}],"namespace":["offices","directions","TrainingInformation","trainingInformationItems","body","VerticalListItem"]},{"label":"Recurring Event","name":"RecurringEvent","ui":{"previewSrc":"/images/thumbs/tina/recurring-event.jpg"},"fields":[{"type":"string","label":"Apply Link Redirect","name":"applyLinkRedirect","namespace":["offices","parking","TrainingInformation","trainingInformationItems","body","RecurringEvent","applyLinkRedirect"]},{"type":"string","label":"Day","name":"day","options":[{"label":"Monday","value":"monday"},{"label":"Tuesday","value":"tuesday"},{"label":"Wednesday","value":"wednesday"},{"label":"Thursday","value":"thursday"},{"label":"Friday","value":"friday"},{"label":"Saturday","value":"saturday"},{"label":"Sunday","value":"sunday"}],"required":true,"namespace":["offices","parking","TrainingInformation","trainingInformationItems","body","RecurringEvent","day"]}],"namespace":["offices","directions","TrainingInformation","trainingInformationItems","body","RecurringEvent"]}],"namespace":["offices","map","TrainingInformation","trainingInformationItems","body"]}],"namespace":["offices","aboutUs","TrainingInformation","trainingInformationItems"],"searchable":true,"uid":false}],"namespace":["offices","aboutUs","TrainingInformation"]},{"label":"Training Learning Outcomes","name":"TrainingLearningOutcome","ui":{"previewSrc":"/images/thumbs/tina/training-learning-outcomes.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["offices","aboutUs","TrainingLearningOutcome","header"],"searchable":true,"uid":false},{"type":"object","label":"List Items","name":"listItems","list":true,"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","map","TrainingLearningOutcome","listItems","title"]},{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["offices","map","TrainingLearningOutcome","listItems","content"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","TrainingLearningOutcome","listItems","icon","uploadDir"]},"namespace":["offices","map","TrainingLearningOutcome","listItems","icon"]}],"namespace":["offices","aboutUs","TrainingLearningOutcome","listItems"],"searchable":true,"uid":false}],"namespace":["offices","aboutUs","TrainingLearningOutcome"]},{"label":"Tweet Embed","name":"TweetEmbed","ui":{"previewSrc":"/images/thumbs/tina/tweet-embed.jpg"},"fields":[{"type":"string","name":"url","label":"Tweet URL","required":true,"namespace":["offices","aboutUs","TweetEmbed","url"],"searchable":true,"uid":false}],"namespace":["offices","aboutUs","TweetEmbed"]},{"name":"UpcomingEvents","label":"Upcoming Events","ui":{"previewSrc":"/images/thumbs/tina/upcoming-events.jpg","defaultItem":{"title":"Upcoming Events","numberOfEvents":30}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","aboutUs","UpcomingEvents","title"],"searchable":true,"uid":false},{"type":"number","label":"Number of Events","name":"numberOfEvents","namespace":["offices","aboutUs","UpcomingEvents","numberOfEvents"],"searchable":true,"uid":false}],"namespace":["offices","aboutUs","UpcomingEvents"]},{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["offices","aboutUs","UtilityButton","buttonText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"link","required":false,"namespace":["offices","aboutUs","UtilityButton","link"],"searchable":true,"uid":false},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["offices","aboutUs","UtilityButton","size"],"searchable":true,"uid":false},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["offices","aboutUs","UtilityButton","btnIcon"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["offices","aboutUs","UtilityButton","animated"],"searchable":true,"uid":false},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["offices","aboutUs","UtilityButton","uncentered"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["offices","aboutUs","UtilityButton","removeTopMargin"],"searchable":true,"uid":false},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["offices","aboutUs","UtilityButton","openInNewTab"],"searchable":true,"uid":false}],"namespace":["offices","aboutUs","UtilityButton"]},{"name":"VerticalImageLayout","label":"Vertical Image Layout","fields":[{"type":"image","label":"Image","name":"imageSrc","uploadDir":{"namespace":["page","beforeBody","VerticalImageLayout","imageSrc","uploadDir"]},"namespace":["offices","aboutUs","VerticalImageLayout","imageSrc"],"searchable":false,"uid":false},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","aboutUs","VerticalImageLayout","altText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"imageLink","namespace":["offices","aboutUs","VerticalImageLayout","imageLink"],"searchable":true,"uid":false},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","aboutUs","VerticalImageLayout","height"],"searchable":true,"uid":false},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","aboutUs","VerticalImageLayout","width"],"searchable":true,"uid":false},{"type":"rich-text","label":"Message","name":"message","required":true,"namespace":["offices","aboutUs","VerticalImageLayout","message"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","aboutUs","VerticalImageLayout","sizes"],"searchable":true,"uid":false}],"namespace":["offices","aboutUs","VerticalImageLayout"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["offices","aboutUs","VerticalListItem","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"number","label":"Index number","name":"index","namespace":["offices","aboutUs","VerticalListItem","index"],"searchable":true,"uid":false},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["offices","aboutUs","VerticalListItem","icon"],"searchable":false,"uid":false},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["offices","aboutUs","VerticalListItem","iconScale"],"searchable":true,"uid":false},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["offices","aboutUs","VerticalListItem","afterBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["offices","aboutUs","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","aboutUs","VideoEmbed","url"],"searchable":true,"uid":false},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","aboutUs","VideoEmbed","videoWidth"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","aboutUs","VideoEmbed","removeMargin"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","aboutUs","VideoEmbed","uncentre"],"searchable":true,"uid":false},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","aboutUs","VideoEmbed","overflow"],"searchable":true,"uid":false},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","aboutUs","VideoEmbed","caption"],"searchable":true,"uid":false},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","aboutUs","VideoEmbed","duration"],"searchable":true,"uid":false}],"namespace":["offices","aboutUs","VideoEmbed"]},{"name":"InlineJotForm","label":"In-line JotForm","ui":{"previewSrc":"/images/thumbs/tina/inline-jot-form.jpg"},"fields":[{"type":"string","name":"title","label":"Title","description":"Optional title for JotForm","namespace":["offices","aboutUs","InlineJotForm","title"],"searchable":true,"uid":false},{"type":"string","name":"jotFormId","label":"JotForm ID","required":true,"namespace":["offices","aboutUs","InlineJotForm","jotFormId"],"searchable":true,"uid":false},{"type":"string","name":"additionalClasses","label":"Additional classnames","description":"Optional styling for iframe element only","namespace":["offices","aboutUs","InlineJotForm","additionalClasses"],"searchable":true,"uid":false}],"namespace":["offices","aboutUs","InlineJotForm"]}],"namespace":["offices","aboutUs"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"object","name":"localWebsiteLink","label":"Local Website Link","fields":[{"type":"string","name":"title","label":"Title","namespace":["offices","localWebsiteLink","title"],"searchable":true,"uid":false},{"type":"string","name":"url","label":"Url","namespace":["offices","localWebsiteLink","url"],"searchable":true,"uid":false}],"namespace":["offices","localWebsiteLink"],"searchable":true,"uid":false},{"type":"image","label":"Map Image","name":"map","uploadDir":{"namespace":["offices","map","uploadDir"]},"templates":[{"name":"AboutUs","label":"About Us","ui":{"previewSrc":"/images/thumbs/tina/about-us.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["offices","map","AboutUs","backgroundColor"]},{"type":"boolean","label":"Show Map","name":"showMap","required":false,"namespace":["offices","map","AboutUs","showMap"]}],"namespace":["offices","map","AboutUs"]},{"label":"Agenda","name":"Agenda","ui":{"previewSrc":"/images/thumbs/tina/agenda.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["offices","map","Agenda","header"]},{"type":"string","label":"Header Color","name":"textColor","options":[{"label":"Red","value":"red"},{"label":"Gray","value":"gray"},{"label":"Default","value":"default"}],"namespace":["offices","map","Agenda","textColor"]},{"type":"object","label":"Agenda Items","name":"agendaItemList","ui":{},"list":true,"fields":[{"type":"string","label":"Placeholder Text","name":"placeholder","namespace":["offices","directions","Agenda","agendaItemList","placeholder"]},{"type":"rich-text","label":"Body","name":"body","templates":[{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["offices","publicTransport","Agenda","agendaItemList","body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["offices","publicTransport","Agenda","agendaItemList","body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["offices","publicTransport","Agenda","agendaItemList","body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["offices","publicTransport","Agenda","agendaItemList","body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["offices","publicTransport","Agenda","agendaItemList","body","VerticalListItem","afterBody"]}],"namespace":["offices","parking","Agenda","agendaItemList","body","VerticalListItem"]}],"namespace":["offices","directions","Agenda","agendaItemList","body"]}],"namespace":["offices","map","Agenda","agendaItemList"]}],"namespace":["offices","map","Agenda"]},{"label":"Agreement Form","name":"AgreementForm","ui":{"previewSrc":"/images/thumbs/tina/agreement-form.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["offices","map","AgreementForm","backgroundColor"]},{"type":"object","label":"Form fields","name":"fields","list":true,"fields":[{"type":"string","label":"ID","name":"id","required":true,"namespace":["offices","directions","AgreementForm","fields","id"]},{"type":"string","label":"Label","name":"label","required":true,"namespace":["offices","directions","AgreementForm","fields","label"]},{"type":"string","label":"Placeholder","name":"placeholder","namespace":["offices","directions","AgreementForm","fields","placeholder"]},{"type":"boolean","label":"Resizeable","name":"resizeable","required":true,"namespace":["offices","directions","AgreementForm","fields","resizeable"]}],"namespace":["offices","map","AgreementForm","fields"]}],"namespace":["offices","map","AgreementForm"]},{"label":"Interest Form","name":"InterestForm","ui":{"previewSrc":"/images/thumbs/tina/interest-form.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["offices","map","InterestForm","buttonText"]}],"namespace":["offices","map","InterestForm"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["offices","map","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["offices","map","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["offices","map","BookingButton","buttonSubtitle"]}],"namespace":["offices","map","BookingButton"]},{"name":"BuiltOnAzure","label":"Built on Azure","ui":{"previewSrc":"/images/thumbs/tina/built-on-azure.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["offices","map","BuiltOnAzure","backgroundColor"]}],"namespace":["offices","map","BuiltOnAzure"]},{"name":"Carousel","label":"Carousel","ui":{"previewSrc":"/images/thumbs/tina/carousel.jpg"},"fields":[{"label":"Items","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Item description","link":"/","openIn":"sameWindow"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["offices","directions","Carousel","items","label"]},{"type":"string","label":"URL","name":"link","description":"If link contains ssw.com.au, you can skip the full URL and just use the path. e.g. /services","namespace":["offices","directions","Carousel","items","link"]},{"type":"string","label":"Open in","name":"openIn","description":"If it is external link, please select 'New window' option.","options":[{"label":"Same window","value":"sameWindow"},{"label":"Modal","value":"modal"},{"label":"New window","value":"newWindow"}],"namespace":["offices","directions","Carousel","items","openIn"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","Carousel","items","imgSrc","uploadDir"]},"namespace":["offices","directions","Carousel","items","imgSrc"]}],"namespace":["offices","map","Carousel","items"]},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["offices","map","Carousel","backgroundColor"]},{"type":"number","label":"Delay (Seconds)","name":"delay","required":true,"namespace":["offices","map","Carousel","delay"]},{"type":"boolean","label":"Show on mobile devices","name":"showOnMobileDevices","namespace":["offices","map","Carousel","showOnMobileDevices"]}],"namespace":["offices","map","Carousel"]},{"name":"Citation","label":"Citation","fields":[{"type":"string","label":"author","name":"author","namespace":["offices","map","Citation","author"]},{"type":"string","label":"article","name":"article","required":true,"namespace":["offices","map","Citation","article"]}],"namespace":["offices","map","Citation"]},{"label":"Client List","name":"ClientList","ui":{"previewSrc":"/images/thumbs/tina/clients-list.jpg"},"fields":[{"type":"object","name":"categories","label":"Categories","list":true,"fields":[{"type":"reference","name":"category","label":"Category","collections":["clientCategories"],"namespace":["offices","directions","ClientList","categories","category"]}],"ui":{},"namespace":["offices","map","ClientList","categories"]},{"type":"object","name":"clients","label":"Clients list","list":true,"ui":{"previewSrc":"/images/thumbs/tina/clients-list.jpg"},"fields":[{"type":"string","name":"name","label":"Name","namespace":["offices","directions","ClientList","clients","name"]},{"type":"image","name":"logo","label":"Logo","namespace":["offices","directions","ClientList","clients","logo"]},{"type":"string","name":"logoUrl","label":"Logo URL","namespace":["offices","directions","ClientList","clients","logoUrl"]},{"type":"rich-text","name":"content","label":"Content","templates":[{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["offices","publicTransport","ClientList","clients","content","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["offices","publicTransport","ClientList","clients","content","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["offices","publicTransport","ClientList","clients","content","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["offices","publicTransport","ClientList","clients","content","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["offices","publicTransport","ClientList","clients","content","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["offices","publicTransport","ClientList","clients","content","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["offices","publicTransport","ClientList","clients","content","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["offices","publicTransport","ClientList","clients","content","UtilityButton","openInNewTab"]}],"namespace":["offices","parking","ClientList","clients","content","UtilityButton"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","publicTransport","ClientList","clients","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","publicTransport","ClientList","clients","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","publicTransport","ClientList","clients","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","publicTransport","ClientList","clients","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","publicTransport","ClientList","clients","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","publicTransport","ClientList","clients","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","publicTransport","ClientList","clients","content","VideoEmbed","duration"]}],"namespace":["offices","parking","ClientList","clients","content","VideoEmbed"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","publicTransport","ClientList","clients","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","publicTransport","ClientList","clients","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","publicTransport","ClientList","clients","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","publicTransport","ClientList","clients","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","publicTransport","ClientList","clients","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","publicTransport","ClientList","clients","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","publicTransport","ClientList","clients","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","publicTransport","ClientList","clients","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","publicTransport","ClientList","clients","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","publicTransport","ClientList","clients","content","CustomImage","sizes"]}],"namespace":["offices","parking","ClientList","clients","content","CustomImage"]},{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["offices","publicTransport","ClientList","clients","content","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["offices","publicTransport","ClientList","clients","content","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","photos","ClientList","clients","content","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","photos","ClientList","clients","content","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","photos","ClientList","clients","content","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","photos","ClientList","clients","content","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","photos","ClientList","clients","content","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","photos","ClientList","clients","content","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","photos","ClientList","clients","content","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","photos","ClientList","clients","content","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","photos","ClientList","clients","content","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","photos","ClientList","clients","content","ContentCard","content","CustomImage","sizes"]}],"namespace":["offices","team","ClientList","clients","content","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["offices","photos","ClientList","clients","content","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["offices","photos","ClientList","clients","content","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["offices","photos","ClientList","clients","content","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["offices","photos","ClientList","clients","content","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["offices","photos","ClientList","clients","content","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["offices","team","ClientList","clients","content","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","photos","ClientList","clients","content","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","photos","ClientList","clients","content","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","photos","ClientList","clients","content","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","photos","ClientList","clients","content","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","photos","ClientList","clients","content","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","photos","ClientList","clients","content","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","photos","ClientList","clients","content","ContentCard","content","VideoEmbed","duration"]}],"namespace":["offices","team","ClientList","clients","content","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","photos","ClientList","clients","content","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["offices","photos","ClientList","clients","content","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["offices","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["offices","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["offices","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["offices","photos","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["offices","team","ClientList","clients","content","ContentCard","content","ColorBlock"]}],"namespace":["offices","publicTransport","ClientList","clients","content","ContentCard","content"]}],"namespace":["offices","parking","ClientList","clients","content","ContentCard"]}],"namespace":["offices","directions","ClientList","clients","content"]},{"type":"string","name":"caseStudyUrl","label":"Case study URL","namespace":["offices","directions","ClientList","clients","caseStudyUrl"]},{"type":"object","name":"categories","label":"Categories","list":true,"ui":{},"fields":[{"type":"reference","name":"category","label":"Category","collections":["clientCategories"],"namespace":["offices","parking","ClientList","clients","categories","category"]}],"namespace":["offices","directions","ClientList","clients","categories"]}],"namespace":["offices","map","ClientList","clients"]}],"namespace":["offices","map","ClientList"]},{"name":"ClientLogos","label":"Client Logos","ui":{"previewSrc":"/images/thumbs/tina/client-logos.jpg"},"fields":[{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","map","ClientLogos","altText"]}],"namespace":["offices","map","ClientLogos"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","map","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["offices","map","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","directions","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["offices","directions","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","directions","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["offices","directions","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["offices","directions","ColorBlock","colorRow","caption"]}],"namespace":["offices","map","ColorBlock","colorRow"]}],"namespace":["offices","map","ColorBlock"]},{"name":"ColorPalette","label":"Color Palette","ui":{"previewSrc":"/images/thumbs/tina/color-palette.jpg"},"fields":[{"type":"string","label":"Name","name":"name","namespace":["offices","map","ColorPalette","name"]}],"namespace":["offices","map","ColorPalette"]},{"name":"Content","label":"Content","ui":{"previewSrc":"/images/thumbs/tina/content.jpg","defaultItem":{"body":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","map","Content","title"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","parking","Content","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","parking","Content","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","parking","Content","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","parking","Content","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","parking","Content","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","parking","Content","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","parking","Content","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","parking","Content","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","parking","Content","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","parking","Content","content","CustomImage","sizes"]}],"namespace":["offices","directions","Content","content","CustomImage"]},{"name":"ClientLogos","label":"Client Logos","ui":{"previewSrc":"/images/thumbs/tina/client-logos.jpg"},"fields":[{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","parking","Content","content","ClientLogos","altText"]}],"namespace":["offices","directions","Content","content","ClientLogos"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","parking","Content","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","parking","Content","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","parking","Content","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","parking","Content","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","parking","Content","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","parking","Content","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","parking","Content","content","VideoEmbed","duration"]}],"namespace":["offices","directions","Content","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","parking","Content","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["offices","parking","Content","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","publicTransport","Content","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["offices","publicTransport","Content","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","publicTransport","Content","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["offices","publicTransport","Content","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["offices","publicTransport","Content","content","ColorBlock","colorRow","caption"]}],"namespace":["offices","parking","Content","content","ColorBlock","colorRow"]}],"namespace":["offices","directions","Content","content","ColorBlock"]}],"namespace":["offices","map","Content","content"]},{"type":"string","label":"Container Padding","name":"paddingClass","options":["Mobile: No Padding","Mobile: No Top and Horizontal Padding"],"namespace":["offices","map","Content","paddingClass"]},{"type":"string","label":"Text size","name":"size","options":[{"label":"small","value":"sm"},{"label":"normal","value":"base"},{"label":"large","value":"lg"},{"label":"extra large","value":"xl"},{"label":"2x large","value":"2xl"}],"namespace":["offices","map","Content","size"]},{"type":"string","label":"Align","name":"align","options":[{"label":"Left","value":"left"},{"label":"Center","value":"center"},{"label":"Right","value":"right"}],"namespace":["offices","map","Content","align"]},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["offices","map","Content","backgroundColor"]}],"namespace":["offices","map","Content"]},{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["offices","map","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["offices","map","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","parking","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","parking","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","parking","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","parking","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","parking","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","parking","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","parking","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","parking","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","parking","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","parking","ContentCard","content","CustomImage","sizes"]}],"namespace":["offices","directions","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["offices","parking","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["offices","parking","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["offices","parking","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["offices","parking","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["offices","parking","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["offices","directions","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","parking","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","parking","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","parking","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","parking","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","parking","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","parking","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","parking","ContentCard","content","VideoEmbed","duration"]}],"namespace":["offices","directions","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","parking","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["offices","parking","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","publicTransport","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["offices","publicTransport","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","publicTransport","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["offices","publicTransport","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["offices","publicTransport","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["offices","parking","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["offices","directions","ContentCard","content","ColorBlock"]}],"namespace":["offices","map","ContentCard","content"]}],"namespace":["offices","map","ContentCard"]},{"name":"CustomDownloadButton","label":"Custom Download Button","ui":{"previewSrc":"/images/thumbs/tina/custom-download-button.jpg"},"fields":[{"type":"string","label":"Text","name":"btnText","namespace":["offices","map","CustomDownloadButton","btnText"]},{"type":"string","label":"Link","name":"btnLink","namespace":["offices","map","CustomDownloadButton","btnLink"]}],"namespace":["offices","map","CustomDownloadButton"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","map","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","map","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","map","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","map","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","map","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","map","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","map","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","map","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","map","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","map","CustomImage","sizes"]}],"namespace":["offices","map","CustomImage"]},{"name":"DomainFromQuery","label":"Domain from query","ui":{"previewSrc":"/images/thumbs/tina/domain-from-query.jpg"},"fields":[{"name":"title","label":"Title","type":"string","description":"This is a H1 heading","namespace":["offices","map","DomainFromQuery","title"]},{"name":"showDomain","label":"Show domain name","type":"boolean","description":"Query param in URL must have key of 'domain'","namespace":["offices","map","DomainFromQuery","showDomain"]}],"namespace":["offices","map","DomainFromQuery"]},{"name":"DownloadBlock","label":"Download Block","ui":{"previewSrc":"/images/thumbs/tina/download-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","map","DownloadBlock","title"]},{"type":"object","label":"Downloads","name":"downloads","ui":{},"list":true,"fields":[{"type":"string","label":"Header","name":"header","namespace":["offices","directions","DownloadBlock","downloads","header"]},{"type":"image","label":"Image","name":"img","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","img","uploadDir"]},"namespace":["offices","directions","DownloadBlock","downloads","img"]},{"type":"string","label":"Image Background","name":"imgBackground","options":["black","grey","white","darkgrey","darkgreen"],"namespace":["offices","directions","DownloadBlock","downloads","imgBackground"]},{"type":"string","label":"First Link Text","name":"firstLinkText","description":"Defaults to PNG","namespace":["offices","directions","DownloadBlock","downloads","firstLinkText"]},{"type":"image","label":"First Link","name":"firstLink","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","firstLink","uploadDir"]},"namespace":["offices","directions","DownloadBlock","downloads","firstLink"]},{"type":"string","label":"Second Link Text","name":"secondLinkText","description":"Defaults to PDF","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","secondLinkText","uploadDir"]},"namespace":["offices","directions","DownloadBlock","downloads","secondLinkText"]},{"type":"image","label":"Second Link","name":"secondLink","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","secondLink","uploadDir"]},"namespace":["offices","directions","DownloadBlock","downloads","secondLink"]}],"namespace":["offices","map","DownloadBlock","downloads"]},{"type":"boolean","label":"Bottom border","name":"bottomBorder","namespace":["offices","map","DownloadBlock","bottomBorder"]}],"namespace":["offices","map","DownloadBlock"]},{"name":"DynamicColumns","label":"Dynamic Column Layout","fields":[{"type":"rich-text","label":"Column text body","name":"colBody","required":true,"namespace":["offices","map","DynamicColumns","colBody"]},{"type":"number","label":"Number of columns","name":"colCount","required":true,"ui":{},"namespace":["offices","map","DynamicColumns","colCount"]}],"namespace":["offices","map","DynamicColumns"]},{"name":"EventBooking","label":"Events Booking","ui":{"previewSrc":"/images/thumbs/tina/events-booking.jpg"},"fields":[{"type":"number","label":"Duration (In Days)","name":"eventDurationInDays","required":true,"namespace":["offices","map","EventBooking","eventDurationInDays"]},{"type":"number","label":"Price","name":"price","required":true,"namespace":["offices","map","EventBooking","price"]},{"type":"number","label":"Discount Price","name":"discountPrice","namespace":["offices","map","EventBooking","discountPrice"]},{"type":"string","name":"gstText","label":"Select GST Option","options":["inc GST","+ GST"],"required":true,"namespace":["offices","map","EventBooking","gstText"]},{"type":"string","label":"Discount Note","name":"discountNote","namespace":["offices","map","EventBooking","discountNote"]},{"type":"object","label":"Event","name":"eventList","ui":{},"list":true,"fields":[{"type":"string","label":"City","name":"city","namespace":["offices","directions","EventBooking","eventList","city"]},{"type":"datetime","label":"Start Date","name":"date","ui":{},"namespace":["offices","directions","EventBooking","eventList","date"]},{"type":"string","label":"Booking URL","name":"bookingURL","namespace":["offices","directions","EventBooking","eventList","bookingURL"]},{"type":"reference","label":"Location","name":"location","collections":["locations"],"namespace":["offices","directions","EventBooking","eventList","location"]}],"namespace":["offices","map","EventBooking","eventList"]}],"namespace":["offices","map","EventBooking"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["offices","parking","EventLink","content","Flag","country"]}],"namespace":["offices","directions","EventLink","content","Flag"]}],"namespace":["offices","map","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["offices","map","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["offices","map","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["offices","map","EventLink","thumbnailAlt"]}],"namespace":["offices","map","EventLink"]},{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["offices","map","Flag","country"]}],"namespace":["offices","map","Flag"]},{"name":"FixedColumns","label":"Fixed Column Layout (2 columns)","ui":{"previewSrc":"/images/thumbs/tina/fixed-columns.jpg"},"fields":[{"type":"rich-text","label":"Header Section (Optional)","name":"headerSection","namespace":["offices","map","FixedColumns","headerSection"]},{"type":"rich-text","label":"First column text","name":"firstColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["offices","parking","FixedColumns","firstColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["offices","parking","FixedColumns","firstColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","team","FixedColumns","firstColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","team","FixedColumns","firstColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","team","FixedColumns","firstColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","team","FixedColumns","firstColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","team","FixedColumns","firstColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","team","FixedColumns","firstColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","team","FixedColumns","firstColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","team","FixedColumns","firstColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","team","FixedColumns","firstColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","team","FixedColumns","firstColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["offices","publicTransport","FixedColumns","firstColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["offices","team","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["offices","team","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["offices","team","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["offices","team","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["offices","team","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["offices","publicTransport","FixedColumns","firstColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","team","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","team","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","team","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","team","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","team","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","team","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","team","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["offices","publicTransport","FixedColumns","firstColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","team","FixedColumns","firstColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["offices","team","FixedColumns","firstColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","photos","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["offices","photos","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","photos","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["offices","photos","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["offices","photos","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["offices","team","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["offices","publicTransport","FixedColumns","firstColBody","ContentCard","content","ColorBlock"]}],"namespace":["offices","parking","FixedColumns","firstColBody","ContentCard","content"]}],"namespace":["offices","directions","FixedColumns","firstColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","parking","FixedColumns","firstColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","parking","FixedColumns","firstColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","parking","FixedColumns","firstColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","parking","FixedColumns","firstColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","parking","FixedColumns","firstColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","parking","FixedColumns","firstColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","parking","FixedColumns","firstColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","parking","FixedColumns","firstColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","parking","FixedColumns","firstColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","parking","FixedColumns","firstColBody","CustomImage","sizes"]}],"namespace":["offices","directions","FixedColumns","firstColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["offices","team","FixedColumns","firstColBody","EventLink","content","Flag","country"]}],"namespace":["offices","publicTransport","FixedColumns","firstColBody","EventLink","content","Flag"]}],"namespace":["offices","parking","FixedColumns","firstColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["offices","parking","FixedColumns","firstColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["offices","parking","FixedColumns","firstColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["offices","parking","FixedColumns","firstColBody","EventLink","thumbnailAlt"]}],"namespace":["offices","directions","FixedColumns","firstColBody","EventLink"]}],"namespace":["offices","map","FixedColumns","firstColBody"]},{"type":"rich-text","label":"Second column text","name":"secondColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["offices","parking","FixedColumns","secondColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["offices","parking","FixedColumns","secondColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","team","FixedColumns","secondColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","team","FixedColumns","secondColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","team","FixedColumns","secondColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","team","FixedColumns","secondColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","team","FixedColumns","secondColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","team","FixedColumns","secondColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","team","FixedColumns","secondColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","team","FixedColumns","secondColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","team","FixedColumns","secondColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","team","FixedColumns","secondColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["offices","publicTransport","FixedColumns","secondColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["offices","team","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["offices","team","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["offices","team","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["offices","team","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["offices","team","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["offices","publicTransport","FixedColumns","secondColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","team","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","team","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","team","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","team","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","team","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","team","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","team","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["offices","publicTransport","FixedColumns","secondColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","team","FixedColumns","secondColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["offices","team","FixedColumns","secondColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","photos","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["offices","photos","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","photos","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["offices","photos","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["offices","photos","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["offices","team","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["offices","publicTransport","FixedColumns","secondColBody","ContentCard","content","ColorBlock"]}],"namespace":["offices","parking","FixedColumns","secondColBody","ContentCard","content"]}],"namespace":["offices","directions","FixedColumns","secondColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","parking","FixedColumns","secondColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","parking","FixedColumns","secondColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","parking","FixedColumns","secondColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","parking","FixedColumns","secondColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","parking","FixedColumns","secondColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","parking","FixedColumns","secondColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","parking","FixedColumns","secondColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","parking","FixedColumns","secondColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","parking","FixedColumns","secondColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","parking","FixedColumns","secondColBody","CustomImage","sizes"]}],"namespace":["offices","directions","FixedColumns","secondColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["offices","team","FixedColumns","secondColBody","EventLink","content","Flag","country"]}],"namespace":["offices","publicTransport","FixedColumns","secondColBody","EventLink","content","Flag"]}],"namespace":["offices","parking","FixedColumns","secondColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["offices","parking","FixedColumns","secondColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["offices","parking","FixedColumns","secondColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["offices","parking","FixedColumns","secondColBody","EventLink","thumbnailAlt"]}],"namespace":["offices","directions","FixedColumns","secondColBody","EventLink"]}],"namespace":["offices","map","FixedColumns","secondColBody"]}],"namespace":["offices","map","FixedColumns"]},{"name":"FixedTabsLayout","label":"Fixed Tabs Layout","ui":{"previewSrc":"/images/thumbs/tina/fixed-tabs-layout.jpg"},"fields":[{"type":"string","name":"firstTab","label":"First Tab","namespace":["offices","map","FixedTabsLayout","firstTab"]},{"type":"rich-text","name":"firstHeading","label":"First Heading","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","parking","FixedTabsLayout","firstHeading","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","parking","FixedTabsLayout","firstHeading","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","parking","FixedTabsLayout","firstHeading","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","parking","FixedTabsLayout","firstHeading","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","parking","FixedTabsLayout","firstHeading","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","parking","FixedTabsLayout","firstHeading","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","parking","FixedTabsLayout","firstHeading","VideoEmbed","duration"]}],"namespace":["offices","directions","FixedTabsLayout","firstHeading","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["offices","parking","FixedTabsLayout","firstHeading","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["offices","parking","FixedTabsLayout","firstHeading","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["offices","parking","FixedTabsLayout","firstHeading","BookingButton","buttonSubtitle"]}],"namespace":["offices","directions","FixedTabsLayout","firstHeading","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["offices","parking","FixedTabsLayout","firstHeading","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["offices","publicTransport","FixedTabsLayout","firstHeading","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["offices","publicTransport","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["offices","publicTransport","FixedTabsLayout","firstHeading","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["offices","publicTransport","FixedTabsLayout","firstHeading","ExpertBlock","expertList","skills"]}],"namespace":["offices","parking","FixedTabsLayout","firstHeading","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["offices","publicTransport","FixedTabsLayout","firstHeading","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["offices","publicTransport","FixedTabsLayout","firstHeading","ExpertBlock","link","url"]}],"namespace":["offices","parking","FixedTabsLayout","firstHeading","ExpertBlock","link"]}],"namespace":["offices","directions","FixedTabsLayout","firstHeading","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","publicTransport","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["offices","publicTransport","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["offices","publicTransport","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["offices","team","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["offices","team","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["offices","team","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["offices","publicTransport","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["offices","parking","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["offices","directions","FixedTabsLayout","firstHeading","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","parking","FixedTabsLayout","firstHeading","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","parking","FixedTabsLayout","firstHeading","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","parking","FixedTabsLayout","firstHeading","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","parking","FixedTabsLayout","firstHeading","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","parking","FixedTabsLayout","firstHeading","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","parking","FixedTabsLayout","firstHeading","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","parking","FixedTabsLayout","firstHeading","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","parking","FixedTabsLayout","firstHeading","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","parking","FixedTabsLayout","firstHeading","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","parking","FixedTabsLayout","firstHeading","CustomImage","sizes"]}],"namespace":["offices","directions","FixedTabsLayout","firstHeading","CustomImage"]}],"namespace":["offices","map","FixedTabsLayout","firstHeading"]},{"type":"rich-text","name":"firstBody","label":"First Body","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","parking","FixedTabsLayout","firstBody","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","parking","FixedTabsLayout","firstBody","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","parking","FixedTabsLayout","firstBody","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","parking","FixedTabsLayout","firstBody","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","parking","FixedTabsLayout","firstBody","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","parking","FixedTabsLayout","firstBody","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","parking","FixedTabsLayout","firstBody","VideoEmbed","duration"]}],"namespace":["offices","directions","FixedTabsLayout","firstBody","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["offices","parking","FixedTabsLayout","firstBody","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["offices","parking","FixedTabsLayout","firstBody","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["offices","parking","FixedTabsLayout","firstBody","BookingButton","buttonSubtitle"]}],"namespace":["offices","directions","FixedTabsLayout","firstBody","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["offices","parking","FixedTabsLayout","firstBody","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["offices","publicTransport","FixedTabsLayout","firstBody","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["offices","publicTransport","FixedTabsLayout","firstBody","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["offices","publicTransport","FixedTabsLayout","firstBody","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["offices","publicTransport","FixedTabsLayout","firstBody","ExpertBlock","expertList","skills"]}],"namespace":["offices","parking","FixedTabsLayout","firstBody","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["offices","publicTransport","FixedTabsLayout","firstBody","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["offices","publicTransport","FixedTabsLayout","firstBody","ExpertBlock","link","url"]}],"namespace":["offices","parking","FixedTabsLayout","firstBody","ExpertBlock","link"]}],"namespace":["offices","directions","FixedTabsLayout","firstBody","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","publicTransport","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["offices","publicTransport","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["offices","publicTransport","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["offices","team","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["offices","team","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["offices","team","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["offices","publicTransport","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["offices","parking","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["offices","directions","FixedTabsLayout","firstBody","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","parking","FixedTabsLayout","firstBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","parking","FixedTabsLayout","firstBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","parking","FixedTabsLayout","firstBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","parking","FixedTabsLayout","firstBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","parking","FixedTabsLayout","firstBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","parking","FixedTabsLayout","firstBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","parking","FixedTabsLayout","firstBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","parking","FixedTabsLayout","firstBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","parking","FixedTabsLayout","firstBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","parking","FixedTabsLayout","firstBody","CustomImage","sizes"]}],"namespace":["offices","directions","FixedTabsLayout","firstBody","CustomImage"]}],"namespace":["offices","map","FixedTabsLayout","firstBody"]},{"type":"string","name":"secondTab","label":"Second Tab","namespace":["offices","map","FixedTabsLayout","secondTab"]},{"type":"rich-text","name":"secondHeading","label":"Second Heading","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","parking","FixedTabsLayout","secondHeading","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","parking","FixedTabsLayout","secondHeading","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","parking","FixedTabsLayout","secondHeading","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","parking","FixedTabsLayout","secondHeading","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","parking","FixedTabsLayout","secondHeading","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","parking","FixedTabsLayout","secondHeading","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","parking","FixedTabsLayout","secondHeading","VideoEmbed","duration"]}],"namespace":["offices","directions","FixedTabsLayout","secondHeading","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["offices","parking","FixedTabsLayout","secondHeading","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["offices","parking","FixedTabsLayout","secondHeading","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["offices","parking","FixedTabsLayout","secondHeading","BookingButton","buttonSubtitle"]}],"namespace":["offices","directions","FixedTabsLayout","secondHeading","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["offices","parking","FixedTabsLayout","secondHeading","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["offices","publicTransport","FixedTabsLayout","secondHeading","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["offices","publicTransport","FixedTabsLayout","secondHeading","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["offices","publicTransport","FixedTabsLayout","secondHeading","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["offices","publicTransport","FixedTabsLayout","secondHeading","ExpertBlock","expertList","skills"]}],"namespace":["offices","parking","FixedTabsLayout","secondHeading","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["offices","publicTransport","FixedTabsLayout","secondHeading","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["offices","publicTransport","FixedTabsLayout","secondHeading","ExpertBlock","link","url"]}],"namespace":["offices","parking","FixedTabsLayout","secondHeading","ExpertBlock","link"]}],"namespace":["offices","directions","FixedTabsLayout","secondHeading","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","publicTransport","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["offices","publicTransport","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["offices","publicTransport","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["offices","team","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["offices","team","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["offices","team","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["offices","publicTransport","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["offices","parking","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["offices","directions","FixedTabsLayout","secondHeading","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","parking","FixedTabsLayout","secondHeading","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","parking","FixedTabsLayout","secondHeading","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","parking","FixedTabsLayout","secondHeading","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","parking","FixedTabsLayout","secondHeading","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","parking","FixedTabsLayout","secondHeading","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","parking","FixedTabsLayout","secondHeading","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","parking","FixedTabsLayout","secondHeading","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","parking","FixedTabsLayout","secondHeading","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","parking","FixedTabsLayout","secondHeading","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","parking","FixedTabsLayout","secondHeading","CustomImage","sizes"]}],"namespace":["offices","directions","FixedTabsLayout","secondHeading","CustomImage"]}],"namespace":["offices","map","FixedTabsLayout","secondHeading"]},{"type":"rich-text","name":"secondBody","label":"Second Body","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","parking","FixedTabsLayout","secondBody","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","parking","FixedTabsLayout","secondBody","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","parking","FixedTabsLayout","secondBody","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","parking","FixedTabsLayout","secondBody","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","parking","FixedTabsLayout","secondBody","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","parking","FixedTabsLayout","secondBody","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","parking","FixedTabsLayout","secondBody","VideoEmbed","duration"]}],"namespace":["offices","directions","FixedTabsLayout","secondBody","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["offices","parking","FixedTabsLayout","secondBody","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["offices","parking","FixedTabsLayout","secondBody","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["offices","parking","FixedTabsLayout","secondBody","BookingButton","buttonSubtitle"]}],"namespace":["offices","directions","FixedTabsLayout","secondBody","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["offices","parking","FixedTabsLayout","secondBody","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["offices","publicTransport","FixedTabsLayout","secondBody","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["offices","publicTransport","FixedTabsLayout","secondBody","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["offices","publicTransport","FixedTabsLayout","secondBody","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["offices","publicTransport","FixedTabsLayout","secondBody","ExpertBlock","expertList","skills"]}],"namespace":["offices","parking","FixedTabsLayout","secondBody","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["offices","publicTransport","FixedTabsLayout","secondBody","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["offices","publicTransport","FixedTabsLayout","secondBody","ExpertBlock","link","url"]}],"namespace":["offices","parking","FixedTabsLayout","secondBody","ExpertBlock","link"]}],"namespace":["offices","directions","FixedTabsLayout","secondBody","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","publicTransport","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["offices","publicTransport","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["offices","publicTransport","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["offices","team","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["offices","team","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["offices","team","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["offices","publicTransport","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["offices","parking","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["offices","directions","FixedTabsLayout","secondBody","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","parking","FixedTabsLayout","secondBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","parking","FixedTabsLayout","secondBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","parking","FixedTabsLayout","secondBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","parking","FixedTabsLayout","secondBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","parking","FixedTabsLayout","secondBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","parking","FixedTabsLayout","secondBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","parking","FixedTabsLayout","secondBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","parking","FixedTabsLayout","secondBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","parking","FixedTabsLayout","secondBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","parking","FixedTabsLayout","secondBody","CustomImage","sizes"]}],"namespace":["offices","directions","FixedTabsLayout","secondBody","CustomImage"]}],"namespace":["offices","map","FixedTabsLayout","secondBody"]}],"namespace":["offices","map","FixedTabsLayout"]},{"label":"Google Maps","name":"GoogleMaps","ui":{"previewSrc":"/images/thumbs/tina/google-maps.jpg"},"fields":[{"type":"string","label":"URL","name":"embedUrl","required":true,"namespace":["offices","map","GoogleMaps","embedUrl"]},{"type":"string","label":"Width","name":"embedWidth","namespace":["offices","map","GoogleMaps","embedWidth"]},{"type":"string","label":"Height","name":"embedHeight","namespace":["offices","map","GoogleMaps","embedHeight"]}],"namespace":["offices","map","GoogleMaps"]},{"label":"Grid Layout","name":"GridLayout","ui":{"previewSrc":"/images/thumbs/tina/grid-layout.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","map","GridLayout","title"]},{"type":"object","list":true,"label":"Grid Items","name":"grids","ui":{},"fields":[{"type":"string","label":"Grid Title","name":"gridTitle","namespace":["offices","directions","GridLayout","grids","gridTitle"]},{"type":"boolean","label":"Show Grid Title","name":"showGridTitle","namespace":["offices","directions","GridLayout","grids","showGridTitle"]},{"type":"boolean","label":"Centered Grid Title","name":"centeredGridTitle","namespace":["offices","directions","GridLayout","grids","centeredGridTitle"]},{"type":"boolean","label":"Show Header Divider","name":"showHeaderDivider","namespace":["offices","directions","GridLayout","grids","showHeaderDivider"]},{"type":"boolean","label":"Offset Grid Start","name":"offsetGridStart","namespace":["offices","directions","GridLayout","grids","offsetGridStart"]},{"type":"object","label":"Blocks","name":"blocks","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","parking","GridLayout","grids","blocks","title"]},{"type":"boolean","label":"Show Title","name":"showTitle","namespace":["offices","parking","GridLayout","grids","blocks","showTitle"]},{"type":"image","label":"Image","name":"image","uploadDir":{"namespace":["page","beforeBody","GridLayout","grids","blocks","image","uploadDir"]},"namespace":["offices","parking","GridLayout","grids","blocks","image"]},{"type":"image","label":"Related Image","name":"relatedImage","uploadDir":{"namespace":["page","beforeBody","GridLayout","grids","blocks","relatedImage","uploadDir"]},"namespace":["offices","parking","GridLayout","grids","blocks","relatedImage"]},{"type":"rich-text","name":"linkContent","label":"Link Content","templates":[{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["offices","team","GridLayout","grids","blocks","linkContent","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["offices","team","GridLayout","grids","blocks","linkContent","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["offices","team","GridLayout","grids","blocks","linkContent","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["offices","team","GridLayout","grids","blocks","linkContent","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["offices","team","GridLayout","grids","blocks","linkContent","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["offices","team","GridLayout","grids","blocks","linkContent","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["offices","team","GridLayout","grids","blocks","linkContent","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["offices","team","GridLayout","grids","blocks","linkContent","UtilityButton","openInNewTab"]}],"namespace":["offices","publicTransport","GridLayout","grids","blocks","linkContent","UtilityButton"]}],"namespace":["offices","parking","GridLayout","grids","blocks","linkContent"]}],"namespace":["offices","directions","GridLayout","grids","blocks"]}],"namespace":["offices","map","GridLayout","grids"]}],"namespace":["offices","map","GridLayout"]},{"name":"Hero","label":"Hero","ui":{"previewSrc":"/blocks/hero.png","defaultItem":{"tagline":"Here's some text above the other text","headline":"This Big Text is Totally Awesome","text":"Phasellus scelerisque, libero eu finibus rutrum, risus risus accumsan libero, nec molestie urna dui a leo."}},"fields":[{"type":"string","label":"Tagline","name":"tagline","namespace":["offices","map","Hero","tagline"]},{"type":"string","label":"Headline","name":"headline","namespace":["offices","map","Hero","headline"]},{"label":"Text","name":"text","type":"rich-text","namespace":["offices","map","Hero","text"]},{"label":"Actions","name":"actions","type":"object","list":true,"ui":{"defaultItem":{"label":"Action Label","type":"button","icon":true,"link":"/"}},"fields":[{"label":"Label","name":"label","type":"string","namespace":["offices","directions","Hero","actions","label"]},{"label":"Type","name":"type","type":"string","options":[{"label":"Button","value":"button"},{"label":"Link","value":"link"}],"namespace":["offices","directions","Hero","actions","type"]},{"label":"Icon","name":"icon","type":"boolean","namespace":["offices","directions","Hero","actions","icon"]},{"label":"Link","name":"link","type":"string","namespace":["offices","directions","Hero","actions","link"]}],"namespace":["offices","map","Hero","actions"]},{"type":"object","label":"Image","name":"image","fields":[{"name":"src","label":"Image Source","type":"image","namespace":["offices","directions","Hero","image","src"]},{"name":"alt","label":"Alt Text","type":"string","namespace":["offices","directions","Hero","image","alt"]}],"namespace":["offices","map","Hero","image"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Default","value":"default"},{"label":"Tint","value":"tint"},{"label":"Primary","value":"primary"}],"namespace":["offices","map","Hero","color"]}],"namespace":["offices","map","Hero"]},{"name":"HorizontalCard","label":"Horizontal Card","ui":{"previewSrc":"/images/thumbs/tina/horizontal-card.jpg"},"fields":[{"type":"object","label":"Cards","name":"cardList","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","directions","HorizontalCard","cardList","title"]},{"type":"rich-text","label":"Content","name":"content","namespace":["offices","directions","HorizontalCard","cardList","content"]},{"type":"image","label":"Thumbnail","name":"thumbnail","uploadDir":{"namespace":["page","beforeBody","HorizontalCard","cardList","thumbnail","uploadDir"]},"namespace":["offices","directions","HorizontalCard","cardList","thumbnail"]},{"type":"string","label":"Link","name":"link","namespace":["offices","directions","HorizontalCard","cardList","link"]}],"namespace":["offices","map","HorizontalCard","cardList"]},{"type":"object","label":"Button","name":"button","fields":[{"type":"string","label":"Text","name":"text","namespace":["offices","directions","HorizontalCard","button","text"]},{"type":"string","label":"Link","name":"link","namespace":["offices","directions","HorizontalCard","button","link"]}],"namespace":["offices","map","HorizontalCard","button"]}],"namespace":["offices","map","HorizontalCard"]},{"name":"InternalCarousel","label":"Internal Carousel","ui":{"previewSrc":"/images/thumbs/tina/internal-carousel.jpg"},"fields":[{"label":"Images","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Image description"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["offices","directions","InternalCarousel","items","label"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","InternalCarousel","items","imgSrc","uploadDir"]},"namespace":["offices","directions","InternalCarousel","items","imgSrc"]}],"namespace":["offices","map","InternalCarousel","items"]},{"type":"string","label":"Header","name":"header","namespace":["offices","map","InternalCarousel","header"]},{"type":"rich-text","label":"Text","name":"paragraph","isBody":false,"namespace":["offices","map","InternalCarousel","paragraph"]},{"type":"string","label":"Website","name":"website","namespace":["offices","map","InternalCarousel","website"]},{"type":"object","label":"Technologies","name":"technologies","list":true,"ui":{},"fields":[{"type":"string","label":"Name","name":"name","namespace":["offices","directions","InternalCarousel","technologies","name"]}],"namespace":["offices","map","InternalCarousel","technologies"]},{"type":"string","label":"Case Study","name":"caseStudyUrl","namespace":["offices","map","InternalCarousel","caseStudyUrl"]},{"type":"string","label":"Video URL","name":"videoUrl","namespace":["offices","map","InternalCarousel","videoUrl"]}],"namespace":["offices","map","InternalCarousel"]},{"label":"Join As Presenter","name":"joinAsPresenter","fields":[{"label":"Learn More Link","name":"link","type":"string","namespace":["offices","map","joinAsPresenter","link"]},{"label":"Image","name":"img","type":"image","namespace":["offices","map","joinAsPresenter","img"]}],"namespace":["offices","map","joinAsPresenter"]},{"label":"Join Github","name":"joinGithub","ui":{"previewSrc":"/images/thumbs/tina/join-github.jpg"},"fields":[{"label":"Title","name":"title","type":"string","namespace":["offices","map","joinGithub","title"]},{"label":"Join Github Link","name":"link","type":"string","namespace":["offices","map","joinGithub","link"]}],"namespace":["offices","map","joinGithub"]},{"name":"JotFormEmbed","label":"JotForm Embed","ui":{"previewSrc":"/images/thumbs/tina/jotform-embed.jpg"},"fields":[{"type":"string","name":"jotFormId","label":"JotForm Id","required":true,"namespace":["offices","map","JotFormEmbed","jotFormId"]},{"type":"string","label":"Button Text","name":"buttonText","namespace":["offices","map","JotFormEmbed","buttonText"]},{"type":"string","name":"containerClass","label":"Container Class","namespace":["offices","map","JotFormEmbed","containerClass"]},{"type":"string","label":"Button Class","name":"buttonClass","namespace":["offices","map","JotFormEmbed","buttonClass"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["offices","map","JotFormEmbed","animated"]}],"namespace":["offices","map","JotFormEmbed"]},{"name":"LatestTech","label":"Latest Tech","ui":{"previewSrc":"/images/thumbs/tina/latest-tech.jpg"},"fields":[{"type":"reference","description":"Select a config file including a set of badges","collections":["userGroupGlobal"],"label":"Badges","name":"badges","namespace":["offices","map","LatestTech","badges"]}],"namespace":["offices","map","LatestTech"]},{"name":"LocationBlock","label":"Locations","ui":{"previewSrc":"/images/thumbs/tina/locations.jpg"},"fields":[{"type":"string","name":"title","label":"Title","namespace":["offices","map","LocationBlock","title"]},{"type":"object","label":"Location List","name":"locationList","list":true,"ui":{},"fields":[{"type":"reference","collections":["locations"],"label":"Location","name":"location","namespace":["offices","directions","LocationBlock","locationList","location"]}],"namespace":["offices","map","LocationBlock","locationList"]},{"type":"object","name":"chapelWebsite","label":"Chapel Website","fields":[{"type":"string","name":"title","label":"Text","namespace":["offices","directions","LocationBlock","chapelWebsite","title"]},{"type":"string","name":"URL","label":"URL","namespace":["offices","directions","LocationBlock","chapelWebsite","URL"]}],"namespace":["offices","map","LocationBlock","chapelWebsite"]}],"namespace":["offices","map","LocationBlock"]},{"name":"NewslettersTable","label":"Newsletters Table","ui":{"previewSrc":"/images/thumbs/tina/newsletters-table.jpg"},"fields":[{"type":"string","label":"Header text","name":"headerText","namespace":["offices","map","NewslettersTable","headerText"]}],"namespace":["offices","map","NewslettersTable"]},{"label":"Organizer","name":"organizer","fields":[{"type":"image","label":"Profile Image","name":"profileImg","namespace":["offices","map","organizer","profileImg"]},{"type":"string","label":"Profile Link","name":"profileLink","namespace":["offices","map","organizer","profileLink"]},{"type":"string","label":"Name","name":"name","namespace":["offices","map","organizer","name"]},{"type":"string","label":"Position","name":"position","namespace":["offices","map","organizer","position"]},{"type":"rich-text","label":"Content","name":"content","namespace":["offices","map","organizer","content"]}],"namespace":["offices","map","organizer"]},{"label":"Payment Block","name":"paymentBlock","ui":{"previewSrc":"/images/thumbs/tina/payment-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","map","paymentBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["offices","map","paymentBlock","subTitle"]},{"type":"reference","label":"Payment Links","name":"payments","collections":["paymentDetails"],"namespace":["offices","map","paymentBlock","payments"]},{"type":"rich-text","label":"Footer","name":"footer","namespace":["offices","map","paymentBlock","footer"]},{"type":"image","label":"Credit Cards Image","name":"creditImgSrc","namespace":["offices","map","paymentBlock","creditImgSrc"]},{"type":"string","label":"Alt Text","name":"altTxt","namespace":["offices","map","paymentBlock","altTxt"]}],"namespace":["offices","map","paymentBlock"]},{"name":"PresenterBlock","label":"Presenters","ui":{"previewSrc":"/images/thumbs/tina/presenters.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["offices","map","PresenterBlock","header"]},{"type":"object","name":"presenterList","label":"Presenters","list":true,"ui":{},"fields":[{"type":"reference","name":"presenter","label":"Presenters","collections":["presenter"],"namespace":["offices","directions","PresenterBlock","presenterList","presenter"]}],"namespace":["offices","map","PresenterBlock","presenterList"]},{"type":"object","label":"Other Events","name":"otherEvent","fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","directions","PresenterBlock","otherEvent","title"]},{"type":"string","label":"URL","name":"eventURL","namespace":["offices","directions","PresenterBlock","otherEvent","eventURL"]}],"namespace":["offices","map","PresenterBlock","otherEvent"]}],"namespace":["offices","map","PresenterBlock"]},{"label":"Recurring Event","name":"RecurringEvent","ui":{"previewSrc":"/images/thumbs/tina/recurring-event.jpg"},"fields":[{"type":"string","label":"Apply Link Redirect","name":"applyLinkRedirect","namespace":["offices","map","RecurringEvent","applyLinkRedirect"]},{"type":"string","label":"Day","name":"day","options":[{"label":"Monday","value":"monday"},{"label":"Tuesday","value":"tuesday"},{"label":"Wednesday","value":"wednesday"},{"label":"Thursday","value":"thursday"},{"label":"Friday","value":"friday"},{"label":"Saturday","value":"saturday"},{"label":"Sunday","value":"sunday"}],"required":true,"namespace":["offices","map","RecurringEvent","day"]}],"namespace":["offices","map","RecurringEvent"]},{"name":"SectionHeader","label":"Section Header","ui":{"previewSrc":"/images/thumbs/tina/section-header.jpg"},"fields":[{"type":"string","label":"Header Text","name":"headerText","namespace":["offices","map","SectionHeader","headerText"]}],"namespace":["offices","map","SectionHeader"]},{"name":"ServiceCards","label":"Service Cards","ui":{"previewSrc":"/images/thumbs/tina/services-cards.jpg"},"fields":[{"type":"string","label":"Big Cards Label","name":"bigCardsLabel","namespace":["offices","map","ServiceCards","bigCardsLabel"]},{"label":"Big Cards","name":"bigCards","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","directions","ServiceCards","bigCards","title"]},{"type":"string","label":"Description","component":"textarea","name":"description","namespace":["offices","directions","ServiceCards","bigCards","description"]},{"type":"string","label":"URL","name":"link","namespace":["offices","directions","ServiceCards","bigCards","link"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Red","value":"red"},{"label":"Light Gray","value":"lightgray"},{"label":"Medium Gray","value":"mediumgray"},{"label":"Dark Gray","value":"darkgray"}],"namespace":["offices","directions","ServiceCards","bigCards","color"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","ServiceCards","bigCards","imgSrc","uploadDir"]},"namespace":["offices","directions","ServiceCards","bigCards","imgSrc"]}],"namespace":["offices","map","ServiceCards","bigCards"]},{"type":"string","label":"Small Cards Label","name":"smallCardsLabel","namespace":["offices","map","ServiceCards","smallCardsLabel"]},{"label":"Small Cards","name":"smallCards","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","directions","ServiceCards","smallCards","title"]},{"type":"string","label":"URL","name":"link","namespace":["offices","directions","ServiceCards","smallCards","link"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Red","value":"red"},{"label":"Light Gray","value":"lightgray"},{"label":"Medium Gray","value":"mediumgray"},{"label":"Dark Gray","value":"darkgray"}],"namespace":["offices","directions","ServiceCards","smallCards","color"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","ServiceCards","smallCards","imgSrc","uploadDir"]},"namespace":["offices","directions","ServiceCards","smallCards","imgSrc"]},{"type":"boolean","label":"External Page","description":"Select this if the link is not part of the website. This includes SSW.Rules, and SSW.People links","name":"isExternal","namespace":["offices","directions","ServiceCards","smallCards","isExternal"]}],"namespace":["offices","map","ServiceCards","smallCards"]},{"label":"Links","name":"links","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["offices","directions","ServiceCards","links","label"]},{"type":"string","label":"URL","name":"link","namespace":["offices","directions","ServiceCards","links","link"]}],"namespace":["offices","map","ServiceCards","links"]},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["offices","map","ServiceCards","backgroundColor"]}],"namespace":["offices","map","ServiceCards"]},{"label":"Table Layout","name":"TableLayout","ui":{"previewSrc":"/images/thumbs/tina/table-layout.jpg"},"fields":[{"label":"Table Style","name":"tableStyle","type":"string","options":["none","basicBorder","styled","benefits"],"namespace":["offices","map","TableLayout","tableStyle"]},{"label":"First column bolded + left aligned","name":"firstColBold","type":"boolean","required":false,"namespace":["offices","map","TableLayout","firstColBold"]},{"type":"string","label":"Table Headers","name":"headers","list":true,"namespace":["offices","map","TableLayout","headers"]},{"type":"object","label":"Rows","name":"rows","list":true,"fields":[{"type":"object","label":"Cells","name":"cells","list":true,"fields":[{"type":"string","label":"Value","name":"cellValue","required":true,"component":{"namespace":["page","beforeBody","TableLayout","rows","cells","cellValue",""]},"namespace":["offices","parking","TableLayout","rows","cells","cellValue"]}],"ui":{},"namespace":["offices","directions","TableLayout","rows","cells"]},{"type":"boolean","label":"Is Heading","name":"isHeader","required":false,"namespace":["offices","directions","TableLayout","rows","isHeader"]}],"ui":{},"namespace":["offices","map","TableLayout","rows"]}],"namespace":["offices","map","TableLayout"]},{"name":"TestimonialsList","label":"Testimonials List","ui":{"previewSrc":"/images/thumbs/tina/testimonials.jpg"},"fields":[{"type":"object","label":"Exclude Categories","name":"excludedCategories","ui":{},"list":true,"fields":[{"type":"reference","label":"Category Name","name":"categoryName","collections":["testimonialCategories"],"namespace":["offices","directions","TestimonialsList","excludedCategories","categoryName"]}],"namespace":["offices","map","TestimonialsList","excludedCategories"]}],"namespace":["offices","map","TestimonialsList"]},{"label":"Training Information","name":"TrainingInformation","ui":{"previewSrc":"/images/thumbs/tina/training-information.jpg"},"fields":[{"type":"object","label":"Training Information Items","name":"trainingInformationItems","list":true,"fields":[{"type":"string","label":"Header","name":"header","namespace":["offices","directions","TrainingInformation","trainingInformationItems","header"]},{"type":"rich-text","label":"Body","name":"body","templates":[{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["offices","publicTransport","TrainingInformation","trainingInformationItems","body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["offices","publicTransport","TrainingInformation","trainingInformationItems","body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["offices","publicTransport","TrainingInformation","trainingInformationItems","body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["offices","publicTransport","TrainingInformation","trainingInformationItems","body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["offices","publicTransport","TrainingInformation","trainingInformationItems","body","VerticalListItem","afterBody"]}],"namespace":["offices","parking","TrainingInformation","trainingInformationItems","body","VerticalListItem"]},{"label":"Recurring Event","name":"RecurringEvent","ui":{"previewSrc":"/images/thumbs/tina/recurring-event.jpg"},"fields":[{"type":"string","label":"Apply Link Redirect","name":"applyLinkRedirect","namespace":["offices","publicTransport","TrainingInformation","trainingInformationItems","body","RecurringEvent","applyLinkRedirect"]},{"type":"string","label":"Day","name":"day","options":[{"label":"Monday","value":"monday"},{"label":"Tuesday","value":"tuesday"},{"label":"Wednesday","value":"wednesday"},{"label":"Thursday","value":"thursday"},{"label":"Friday","value":"friday"},{"label":"Saturday","value":"saturday"},{"label":"Sunday","value":"sunday"}],"required":true,"namespace":["offices","publicTransport","TrainingInformation","trainingInformationItems","body","RecurringEvent","day"]}],"namespace":["offices","parking","TrainingInformation","trainingInformationItems","body","RecurringEvent"]}],"namespace":["offices","directions","TrainingInformation","trainingInformationItems","body"]}],"namespace":["offices","map","TrainingInformation","trainingInformationItems"]}],"namespace":["offices","map","TrainingInformation"]},{"label":"Training Learning Outcomes","name":"TrainingLearningOutcome","ui":{"previewSrc":"/images/thumbs/tina/training-learning-outcomes.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["offices","map","TrainingLearningOutcome","header"]},{"type":"object","label":"List Items","name":"listItems","list":true,"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","directions","TrainingLearningOutcome","listItems","title"]},{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["offices","directions","TrainingLearningOutcome","listItems","content"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","TrainingLearningOutcome","listItems","icon","uploadDir"]},"namespace":["offices","directions","TrainingLearningOutcome","listItems","icon"]}],"namespace":["offices","map","TrainingLearningOutcome","listItems"]}],"namespace":["offices","map","TrainingLearningOutcome"]},{"label":"Tweet Embed","name":"TweetEmbed","ui":{"previewSrc":"/images/thumbs/tina/tweet-embed.jpg"},"fields":[{"type":"string","name":"url","label":"Tweet URL","required":true,"namespace":["offices","map","TweetEmbed","url"]}],"namespace":["offices","map","TweetEmbed"]},{"name":"UpcomingEvents","label":"Upcoming Events","ui":{"previewSrc":"/images/thumbs/tina/upcoming-events.jpg","defaultItem":{"title":"Upcoming Events","numberOfEvents":30}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","map","UpcomingEvents","title"]},{"type":"number","label":"Number of Events","name":"numberOfEvents","namespace":["offices","map","UpcomingEvents","numberOfEvents"]}],"namespace":["offices","map","UpcomingEvents"]},{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["offices","map","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["offices","map","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["offices","map","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["offices","map","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["offices","map","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["offices","map","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["offices","map","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["offices","map","UtilityButton","openInNewTab"]}],"namespace":["offices","map","UtilityButton"]},{"name":"VerticalImageLayout","label":"Vertical Image Layout","fields":[{"type":"image","label":"Image","name":"imageSrc","uploadDir":{"namespace":["page","beforeBody","VerticalImageLayout","imageSrc","uploadDir"]},"namespace":["offices","map","VerticalImageLayout","imageSrc"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","map","VerticalImageLayout","altText"]},{"type":"string","label":"Link","name":"imageLink","namespace":["offices","map","VerticalImageLayout","imageLink"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","map","VerticalImageLayout","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","map","VerticalImageLayout","width"]},{"type":"rich-text","label":"Message","name":"message","required":true,"namespace":["offices","map","VerticalImageLayout","message"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","map","VerticalImageLayout","sizes"]}],"namespace":["offices","map","VerticalImageLayout"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["offices","map","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["offices","map","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["offices","map","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["offices","map","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["offices","map","VerticalListItem","afterBody"]}],"namespace":["offices","map","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","map","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","map","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","map","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","map","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","map","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","map","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","map","VideoEmbed","duration"]}],"namespace":["offices","map","VideoEmbed"]},{"name":"InlineJotForm","label":"In-line JotForm","ui":{"previewSrc":"/images/thumbs/tina/inline-jot-form.jpg"},"fields":[{"type":"string","name":"title","label":"Title","description":"Optional title for JotForm","namespace":["offices","map","InlineJotForm","title"]},{"type":"string","name":"jotFormId","label":"JotForm ID","required":true,"namespace":["offices","map","InlineJotForm","jotFormId"]},{"type":"string","name":"additionalClasses","label":"Additional classnames","description":"Optional styling for iframe element only","namespace":["offices","map","InlineJotForm","additionalClasses"]}],"namespace":["offices","map","InlineJotForm"]}],"namespace":["offices","map"],"searchable":false,"uid":false},{"type":"string","label":"Directions URL","name":"directionsUrl","namespace":["offices","directionsUrl"],"searchable":true,"uid":false},{"type":"rich-text","label":"Directions","name":"directions","templates":[{"name":"AboutUs","label":"About Us","ui":{"previewSrc":"/images/thumbs/tina/about-us.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["offices","directions","AboutUs","backgroundColor"],"searchable":true,"uid":false},{"type":"boolean","label":"Show Map","name":"showMap","required":false,"namespace":["offices","directions","AboutUs","showMap"],"searchable":true,"uid":false}],"namespace":["offices","directions","AboutUs"]},{"label":"Agenda","name":"Agenda","ui":{"previewSrc":"/images/thumbs/tina/agenda.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["offices","directions","Agenda","header"],"searchable":true,"uid":false},{"type":"string","label":"Header Color","name":"textColor","options":[{"label":"Red","value":"red"},{"label":"Gray","value":"gray"},{"label":"Default","value":"default"}],"namespace":["offices","directions","Agenda","textColor"],"searchable":true,"uid":false},{"type":"object","label":"Agenda Items","name":"agendaItemList","ui":{},"list":true,"fields":[{"type":"string","label":"Placeholder Text","name":"placeholder","namespace":["offices","parking","Agenda","agendaItemList","placeholder"]},{"type":"rich-text","label":"Body","name":"body","templates":[{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["offices","team","Agenda","agendaItemList","body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["offices","team","Agenda","agendaItemList","body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["offices","team","Agenda","agendaItemList","body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["offices","team","Agenda","agendaItemList","body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["offices","team","Agenda","agendaItemList","body","VerticalListItem","afterBody"]}],"namespace":["offices","publicTransport","Agenda","agendaItemList","body","VerticalListItem"]}],"namespace":["offices","parking","Agenda","agendaItemList","body"]}],"namespace":["offices","directions","Agenda","agendaItemList"],"searchable":true,"uid":false}],"namespace":["offices","directions","Agenda"]},{"label":"Agreement Form","name":"AgreementForm","ui":{"previewSrc":"/images/thumbs/tina/agreement-form.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["offices","directions","AgreementForm","backgroundColor"],"searchable":true,"uid":false},{"type":"object","label":"Form fields","name":"fields","list":true,"fields":[{"type":"string","label":"ID","name":"id","required":true,"namespace":["offices","parking","AgreementForm","fields","id"]},{"type":"string","label":"Label","name":"label","required":true,"namespace":["offices","parking","AgreementForm","fields","label"]},{"type":"string","label":"Placeholder","name":"placeholder","namespace":["offices","parking","AgreementForm","fields","placeholder"]},{"type":"boolean","label":"Resizeable","name":"resizeable","required":true,"namespace":["offices","parking","AgreementForm","fields","resizeable"]}],"namespace":["offices","directions","AgreementForm","fields"],"searchable":true,"uid":false}],"namespace":["offices","directions","AgreementForm"]},{"label":"Interest Form","name":"InterestForm","ui":{"previewSrc":"/images/thumbs/tina/interest-form.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["offices","directions","InterestForm","buttonText"],"searchable":true,"uid":false}],"namespace":["offices","directions","InterestForm"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["offices","directions","BookingButton","buttonText"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","namespace":["offices","directions","BookingButton","animated"],"searchable":true,"uid":false},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["offices","directions","BookingButton","buttonSubtitle"],"searchable":true,"uid":false}],"namespace":["offices","directions","BookingButton"]},{"name":"BuiltOnAzure","label":"Built on Azure","ui":{"previewSrc":"/images/thumbs/tina/built-on-azure.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["offices","directions","BuiltOnAzure","backgroundColor"],"searchable":true,"uid":false}],"namespace":["offices","directions","BuiltOnAzure"]},{"name":"Carousel","label":"Carousel","ui":{"previewSrc":"/images/thumbs/tina/carousel.jpg"},"fields":[{"label":"Items","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Item description","link":"/","openIn":"sameWindow"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["offices","parking","Carousel","items","label"]},{"type":"string","label":"URL","name":"link","description":"If link contains ssw.com.au, you can skip the full URL and just use the path. e.g. /services","namespace":["offices","parking","Carousel","items","link"]},{"type":"string","label":"Open in","name":"openIn","description":"If it is external link, please select 'New window' option.","options":[{"label":"Same window","value":"sameWindow"},{"label":"Modal","value":"modal"},{"label":"New window","value":"newWindow"}],"namespace":["offices","parking","Carousel","items","openIn"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","Carousel","items","imgSrc","uploadDir"]},"namespace":["offices","parking","Carousel","items","imgSrc"]}],"namespace":["offices","directions","Carousel","items"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["offices","directions","Carousel","backgroundColor"],"searchable":true,"uid":false},{"type":"number","label":"Delay (Seconds)","name":"delay","required":true,"namespace":["offices","directions","Carousel","delay"],"searchable":true,"uid":false},{"type":"boolean","label":"Show on mobile devices","name":"showOnMobileDevices","namespace":["offices","directions","Carousel","showOnMobileDevices"],"searchable":true,"uid":false}],"namespace":["offices","directions","Carousel"]},{"name":"Citation","label":"Citation","fields":[{"type":"string","label":"author","name":"author","namespace":["offices","directions","Citation","author"],"searchable":true,"uid":false},{"type":"string","label":"article","name":"article","required":true,"namespace":["offices","directions","Citation","article"],"searchable":true,"uid":false}],"namespace":["offices","directions","Citation"]},{"label":"Client List","name":"ClientList","ui":{"previewSrc":"/images/thumbs/tina/clients-list.jpg"},"fields":[{"type":"object","name":"categories","label":"Categories","list":true,"fields":[{"type":"reference","name":"category","label":"Category","collections":["clientCategories"],"namespace":["offices","parking","ClientList","categories","category"]}],"ui":{},"namespace":["offices","directions","ClientList","categories"],"searchable":true,"uid":false},{"type":"object","name":"clients","label":"Clients list","list":true,"ui":{"previewSrc":"/images/thumbs/tina/clients-list.jpg"},"fields":[{"type":"string","name":"name","label":"Name","namespace":["offices","parking","ClientList","clients","name"]},{"type":"image","name":"logo","label":"Logo","namespace":["offices","parking","ClientList","clients","logo"]},{"type":"string","name":"logoUrl","label":"Logo URL","namespace":["offices","parking","ClientList","clients","logoUrl"]},{"type":"rich-text","name":"content","label":"Content","templates":[{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["offices","team","ClientList","clients","content","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["offices","team","ClientList","clients","content","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["offices","team","ClientList","clients","content","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["offices","team","ClientList","clients","content","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["offices","team","ClientList","clients","content","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["offices","team","ClientList","clients","content","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["offices","team","ClientList","clients","content","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["offices","team","ClientList","clients","content","UtilityButton","openInNewTab"]}],"namespace":["offices","publicTransport","ClientList","clients","content","UtilityButton"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","team","ClientList","clients","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","team","ClientList","clients","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","team","ClientList","clients","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","team","ClientList","clients","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","team","ClientList","clients","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","team","ClientList","clients","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","team","ClientList","clients","content","VideoEmbed","duration"]}],"namespace":["offices","publicTransport","ClientList","clients","content","VideoEmbed"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","team","ClientList","clients","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","team","ClientList","clients","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","team","ClientList","clients","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","team","ClientList","clients","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","team","ClientList","clients","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","team","ClientList","clients","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","team","ClientList","clients","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","team","ClientList","clients","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","team","ClientList","clients","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","team","ClientList","clients","content","CustomImage","sizes"]}],"namespace":["offices","publicTransport","ClientList","clients","content","CustomImage"]},{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["offices","team","ClientList","clients","content","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["offices","team","ClientList","clients","content","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","_body","ClientList","clients","content","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","_body","ClientList","clients","content","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","_body","ClientList","clients","content","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","_body","ClientList","clients","content","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","_body","ClientList","clients","content","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","_body","ClientList","clients","content","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","_body","ClientList","clients","content","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","_body","ClientList","clients","content","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","_body","ClientList","clients","content","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","_body","ClientList","clients","content","ContentCard","content","CustomImage","sizes"]}],"namespace":["offices","photos","ClientList","clients","content","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["offices","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["offices","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["offices","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["offices","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["offices","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["offices","photos","ClientList","clients","content","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","duration"]}],"namespace":["offices","photos","ClientList","clients","content","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","_body","ClientList","clients","content","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["offices","_body","ClientList","clients","content","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["products","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["products","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["products","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["products","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["products","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["offices","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["offices","photos","ClientList","clients","content","ContentCard","content","ColorBlock"]}],"namespace":["offices","team","ClientList","clients","content","ContentCard","content"]}],"namespace":["offices","publicTransport","ClientList","clients","content","ContentCard"]}],"namespace":["offices","parking","ClientList","clients","content"]},{"type":"string","name":"caseStudyUrl","label":"Case study URL","namespace":["offices","parking","ClientList","clients","caseStudyUrl"]},{"type":"object","name":"categories","label":"Categories","list":true,"ui":{},"fields":[{"type":"reference","name":"category","label":"Category","collections":["clientCategories"],"namespace":["offices","publicTransport","ClientList","clients","categories","category"]}],"namespace":["offices","parking","ClientList","clients","categories"]}],"namespace":["offices","directions","ClientList","clients"],"searchable":true,"uid":false}],"namespace":["offices","directions","ClientList"]},{"name":"ClientLogos","label":"Client Logos","ui":{"previewSrc":"/images/thumbs/tina/client-logos.jpg"},"fields":[{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","directions","ClientLogos","altText"],"searchable":true,"uid":false}],"namespace":["offices","directions","ClientLogos"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","directions","ColorBlock","title"],"searchable":true,"uid":false},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["offices","directions","ColorBlock","subTitle"],"searchable":true,"uid":false},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","parking","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["offices","parking","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","parking","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["offices","parking","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["offices","parking","ColorBlock","colorRow","caption"]}],"namespace":["offices","directions","ColorBlock","colorRow"],"searchable":true,"uid":false}],"namespace":["offices","directions","ColorBlock"]},{"name":"ColorPalette","label":"Color Palette","ui":{"previewSrc":"/images/thumbs/tina/color-palette.jpg"},"fields":[{"type":"string","label":"Name","name":"name","namespace":["offices","directions","ColorPalette","name"],"searchable":true,"uid":false}],"namespace":["offices","directions","ColorPalette"]},{"name":"Content","label":"Content","ui":{"previewSrc":"/images/thumbs/tina/content.jpg","defaultItem":{"body":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","directions","Content","title"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","publicTransport","Content","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","publicTransport","Content","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","publicTransport","Content","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","publicTransport","Content","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","publicTransport","Content","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","publicTransport","Content","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","publicTransport","Content","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","publicTransport","Content","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","publicTransport","Content","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","publicTransport","Content","content","CustomImage","sizes"]}],"namespace":["offices","parking","Content","content","CustomImage"]},{"name":"ClientLogos","label":"Client Logos","ui":{"previewSrc":"/images/thumbs/tina/client-logos.jpg"},"fields":[{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","publicTransport","Content","content","ClientLogos","altText"]}],"namespace":["offices","parking","Content","content","ClientLogos"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","publicTransport","Content","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","publicTransport","Content","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","publicTransport","Content","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","publicTransport","Content","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","publicTransport","Content","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","publicTransport","Content","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","publicTransport","Content","content","VideoEmbed","duration"]}],"namespace":["offices","parking","Content","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","publicTransport","Content","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["offices","publicTransport","Content","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","team","Content","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["offices","team","Content","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","team","Content","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["offices","team","Content","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["offices","team","Content","content","ColorBlock","colorRow","caption"]}],"namespace":["offices","publicTransport","Content","content","ColorBlock","colorRow"]}],"namespace":["offices","parking","Content","content","ColorBlock"]}],"namespace":["offices","directions","Content","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Container Padding","name":"paddingClass","options":["Mobile: No Padding","Mobile: No Top and Horizontal Padding"],"namespace":["offices","directions","Content","paddingClass"],"searchable":true,"uid":false},{"type":"string","label":"Text size","name":"size","options":[{"label":"small","value":"sm"},{"label":"normal","value":"base"},{"label":"large","value":"lg"},{"label":"extra large","value":"xl"},{"label":"2x large","value":"2xl"}],"namespace":["offices","directions","Content","size"],"searchable":true,"uid":false},{"type":"string","label":"Align","name":"align","options":[{"label":"Left","value":"left"},{"label":"Center","value":"center"},{"label":"Right","value":"right"}],"namespace":["offices","directions","Content","align"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["offices","directions","Content","backgroundColor"],"searchable":true,"uid":false}],"namespace":["offices","directions","Content"]},{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["offices","directions","ContentCard","prose"],"searchable":true,"uid":false},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["offices","directions","ContentCard","centerAlignedText"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","publicTransport","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","publicTransport","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","publicTransport","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","publicTransport","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","publicTransport","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","publicTransport","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","publicTransport","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","publicTransport","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","publicTransport","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","publicTransport","ContentCard","content","CustomImage","sizes"]}],"namespace":["offices","parking","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["offices","publicTransport","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["offices","publicTransport","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["offices","publicTransport","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["offices","publicTransport","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["offices","publicTransport","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["offices","parking","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","publicTransport","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","publicTransport","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","publicTransport","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","publicTransport","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","publicTransport","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","publicTransport","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","publicTransport","ContentCard","content","VideoEmbed","duration"]}],"namespace":["offices","parking","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","publicTransport","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["offices","publicTransport","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","team","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["offices","team","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","team","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["offices","team","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["offices","team","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["offices","publicTransport","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["offices","parking","ContentCard","content","ColorBlock"]}],"namespace":["offices","directions","ContentCard","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["offices","directions","ContentCard"]},{"name":"CustomDownloadButton","label":"Custom Download Button","ui":{"previewSrc":"/images/thumbs/tina/custom-download-button.jpg"},"fields":[{"type":"string","label":"Text","name":"btnText","namespace":["offices","directions","CustomDownloadButton","btnText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"btnLink","namespace":["offices","directions","CustomDownloadButton","btnLink"],"searchable":true,"uid":false}],"namespace":["offices","directions","CustomDownloadButton"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","directions","CustomImage","src"],"searchable":false,"uid":false},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","directions","CustomImage","altText"],"searchable":true,"uid":false},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","directions","CustomImage","alignment"],"searchable":true,"uid":false},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","directions","CustomImage","height"],"searchable":true,"uid":false},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","directions","CustomImage","width"],"searchable":true,"uid":false},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","directions","CustomImage","link"],"searchable":true,"uid":false},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","directions","CustomImage","customClass"],"searchable":true,"uid":false},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","directions","CustomImage","caption"],"searchable":true,"uid":false},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","directions","CustomImage","captionColor"],"searchable":true,"uid":false},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","directions","CustomImage","sizes"],"searchable":true,"uid":false}],"namespace":["offices","directions","CustomImage"]},{"name":"DomainFromQuery","label":"Domain from query","ui":{"previewSrc":"/images/thumbs/tina/domain-from-query.jpg"},"fields":[{"name":"title","label":"Title","type":"string","description":"This is a H1 heading","namespace":["offices","directions","DomainFromQuery","title"],"searchable":true,"uid":false},{"name":"showDomain","label":"Show domain name","type":"boolean","description":"Query param in URL must have key of 'domain'","namespace":["offices","directions","DomainFromQuery","showDomain"],"searchable":true,"uid":false}],"namespace":["offices","directions","DomainFromQuery"]},{"name":"DownloadBlock","label":"Download Block","ui":{"previewSrc":"/images/thumbs/tina/download-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","directions","DownloadBlock","title"],"searchable":true,"uid":false},{"type":"object","label":"Downloads","name":"downloads","ui":{},"list":true,"fields":[{"type":"string","label":"Header","name":"header","namespace":["offices","parking","DownloadBlock","downloads","header"]},{"type":"image","label":"Image","name":"img","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","img","uploadDir"]},"namespace":["offices","parking","DownloadBlock","downloads","img"]},{"type":"string","label":"Image Background","name":"imgBackground","options":["black","grey","white","darkgrey","darkgreen"],"namespace":["offices","parking","DownloadBlock","downloads","imgBackground"]},{"type":"string","label":"First Link Text","name":"firstLinkText","description":"Defaults to PNG","namespace":["offices","parking","DownloadBlock","downloads","firstLinkText"]},{"type":"image","label":"First Link","name":"firstLink","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","firstLink","uploadDir"]},"namespace":["offices","parking","DownloadBlock","downloads","firstLink"]},{"type":"string","label":"Second Link Text","name":"secondLinkText","description":"Defaults to PDF","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","secondLinkText","uploadDir"]},"namespace":["offices","parking","DownloadBlock","downloads","secondLinkText"]},{"type":"image","label":"Second Link","name":"secondLink","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","secondLink","uploadDir"]},"namespace":["offices","parking","DownloadBlock","downloads","secondLink"]}],"namespace":["offices","directions","DownloadBlock","downloads"],"searchable":true,"uid":false},{"type":"boolean","label":"Bottom border","name":"bottomBorder","namespace":["offices","directions","DownloadBlock","bottomBorder"],"searchable":true,"uid":false}],"namespace":["offices","directions","DownloadBlock"]},{"name":"DynamicColumns","label":"Dynamic Column Layout","fields":[{"type":"rich-text","label":"Column text body","name":"colBody","required":true,"namespace":["offices","directions","DynamicColumns","colBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"number","label":"Number of columns","name":"colCount","required":true,"ui":{},"namespace":["offices","directions","DynamicColumns","colCount"],"searchable":true,"uid":false}],"namespace":["offices","directions","DynamicColumns"]},{"name":"EventBooking","label":"Events Booking","ui":{"previewSrc":"/images/thumbs/tina/events-booking.jpg"},"fields":[{"type":"number","label":"Duration (In Days)","name":"eventDurationInDays","required":true,"namespace":["offices","directions","EventBooking","eventDurationInDays"],"searchable":true,"uid":false},{"type":"number","label":"Price","name":"price","required":true,"namespace":["offices","directions","EventBooking","price"],"searchable":true,"uid":false},{"type":"number","label":"Discount Price","name":"discountPrice","namespace":["offices","directions","EventBooking","discountPrice"],"searchable":true,"uid":false},{"type":"string","name":"gstText","label":"Select GST Option","options":["inc GST","+ GST"],"required":true,"namespace":["offices","directions","EventBooking","gstText"],"searchable":true,"uid":false},{"type":"string","label":"Discount Note","name":"discountNote","namespace":["offices","directions","EventBooking","discountNote"],"searchable":true,"uid":false},{"type":"object","label":"Event","name":"eventList","ui":{},"list":true,"fields":[{"type":"string","label":"City","name":"city","namespace":["offices","parking","EventBooking","eventList","city"]},{"type":"datetime","label":"Start Date","name":"date","ui":{},"namespace":["offices","parking","EventBooking","eventList","date"]},{"type":"string","label":"Booking URL","name":"bookingURL","namespace":["offices","parking","EventBooking","eventList","bookingURL"]},{"type":"reference","label":"Location","name":"location","collections":["locations"],"namespace":["offices","parking","EventBooking","eventList","location"]}],"namespace":["offices","directions","EventBooking","eventList"],"searchable":true,"uid":false}],"namespace":["offices","directions","EventBooking"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["offices","publicTransport","EventLink","content","Flag","country"]}],"namespace":["offices","parking","EventLink","content","Flag"]}],"namespace":["offices","directions","EventLink","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Link","name":"link","namespace":["offices","directions","EventLink","link"],"searchable":true,"uid":false},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["offices","directions","EventLink","eventThumbnail"],"searchable":false,"uid":false},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["offices","directions","EventLink","thumbnailAlt"],"searchable":true,"uid":false}],"namespace":["offices","directions","EventLink"]},{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["offices","directions","Flag","country"],"searchable":true,"uid":false}],"namespace":["offices","directions","Flag"]},{"name":"FixedColumns","label":"Fixed Column Layout (2 columns)","ui":{"previewSrc":"/images/thumbs/tina/fixed-columns.jpg"},"fields":[{"type":"rich-text","label":"Header Section (Optional)","name":"headerSection","namespace":["offices","directions","FixedColumns","headerSection"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"First column text","name":"firstColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["offices","publicTransport","FixedColumns","firstColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["offices","publicTransport","FixedColumns","firstColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","photos","FixedColumns","firstColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","photos","FixedColumns","firstColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","photos","FixedColumns","firstColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","photos","FixedColumns","firstColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","photos","FixedColumns","firstColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","photos","FixedColumns","firstColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","photos","FixedColumns","firstColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","photos","FixedColumns","firstColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","photos","FixedColumns","firstColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","photos","FixedColumns","firstColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["offices","team","FixedColumns","firstColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["offices","photos","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["offices","photos","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["offices","photos","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["offices","photos","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["offices","photos","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["offices","team","FixedColumns","firstColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","photos","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","photos","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","photos","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","photos","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","photos","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","photos","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","photos","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["offices","team","FixedColumns","firstColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","photos","FixedColumns","firstColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["offices","photos","FixedColumns","firstColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["offices","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["offices","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["offices","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["offices","photos","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["offices","team","FixedColumns","firstColBody","ContentCard","content","ColorBlock"]}],"namespace":["offices","publicTransport","FixedColumns","firstColBody","ContentCard","content"]}],"namespace":["offices","parking","FixedColumns","firstColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","publicTransport","FixedColumns","firstColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","publicTransport","FixedColumns","firstColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","publicTransport","FixedColumns","firstColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","publicTransport","FixedColumns","firstColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","publicTransport","FixedColumns","firstColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","publicTransport","FixedColumns","firstColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","publicTransport","FixedColumns","firstColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","publicTransport","FixedColumns","firstColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","publicTransport","FixedColumns","firstColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","publicTransport","FixedColumns","firstColBody","CustomImage","sizes"]}],"namespace":["offices","parking","FixedColumns","firstColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["offices","photos","FixedColumns","firstColBody","EventLink","content","Flag","country"]}],"namespace":["offices","team","FixedColumns","firstColBody","EventLink","content","Flag"]}],"namespace":["offices","publicTransport","FixedColumns","firstColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["offices","publicTransport","FixedColumns","firstColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["offices","publicTransport","FixedColumns","firstColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["offices","publicTransport","FixedColumns","firstColBody","EventLink","thumbnailAlt"]}],"namespace":["offices","parking","FixedColumns","firstColBody","EventLink"]}],"namespace":["offices","directions","FixedColumns","firstColBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"Second column text","name":"secondColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["offices","publicTransport","FixedColumns","secondColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["offices","publicTransport","FixedColumns","secondColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","photos","FixedColumns","secondColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","photos","FixedColumns","secondColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","photos","FixedColumns","secondColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","photos","FixedColumns","secondColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","photos","FixedColumns","secondColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","photos","FixedColumns","secondColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","photos","FixedColumns","secondColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","photos","FixedColumns","secondColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","photos","FixedColumns","secondColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","photos","FixedColumns","secondColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["offices","team","FixedColumns","secondColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["offices","photos","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["offices","photos","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["offices","photos","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["offices","photos","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["offices","photos","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["offices","team","FixedColumns","secondColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","photos","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","photos","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","photos","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","photos","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","photos","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","photos","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","photos","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["offices","team","FixedColumns","secondColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","photos","FixedColumns","secondColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["offices","photos","FixedColumns","secondColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["offices","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["offices","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["offices","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["offices","photos","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["offices","team","FixedColumns","secondColBody","ContentCard","content","ColorBlock"]}],"namespace":["offices","publicTransport","FixedColumns","secondColBody","ContentCard","content"]}],"namespace":["offices","parking","FixedColumns","secondColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","publicTransport","FixedColumns","secondColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","publicTransport","FixedColumns","secondColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","publicTransport","FixedColumns","secondColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","publicTransport","FixedColumns","secondColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","publicTransport","FixedColumns","secondColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","publicTransport","FixedColumns","secondColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","publicTransport","FixedColumns","secondColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","publicTransport","FixedColumns","secondColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","publicTransport","FixedColumns","secondColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","publicTransport","FixedColumns","secondColBody","CustomImage","sizes"]}],"namespace":["offices","parking","FixedColumns","secondColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["offices","photos","FixedColumns","secondColBody","EventLink","content","Flag","country"]}],"namespace":["offices","team","FixedColumns","secondColBody","EventLink","content","Flag"]}],"namespace":["offices","publicTransport","FixedColumns","secondColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["offices","publicTransport","FixedColumns","secondColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["offices","publicTransport","FixedColumns","secondColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["offices","publicTransport","FixedColumns","secondColBody","EventLink","thumbnailAlt"]}],"namespace":["offices","parking","FixedColumns","secondColBody","EventLink"]}],"namespace":["offices","directions","FixedColumns","secondColBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["offices","directions","FixedColumns"]},{"name":"FixedTabsLayout","label":"Fixed Tabs Layout","ui":{"previewSrc":"/images/thumbs/tina/fixed-tabs-layout.jpg"},"fields":[{"type":"string","name":"firstTab","label":"First Tab","namespace":["offices","directions","FixedTabsLayout","firstTab"],"searchable":true,"uid":false},{"type":"rich-text","name":"firstHeading","label":"First Heading","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","publicTransport","FixedTabsLayout","firstHeading","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","publicTransport","FixedTabsLayout","firstHeading","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","publicTransport","FixedTabsLayout","firstHeading","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","publicTransport","FixedTabsLayout","firstHeading","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","publicTransport","FixedTabsLayout","firstHeading","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","publicTransport","FixedTabsLayout","firstHeading","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","publicTransport","FixedTabsLayout","firstHeading","VideoEmbed","duration"]}],"namespace":["offices","parking","FixedTabsLayout","firstHeading","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["offices","publicTransport","FixedTabsLayout","firstHeading","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["offices","publicTransport","FixedTabsLayout","firstHeading","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["offices","publicTransport","FixedTabsLayout","firstHeading","BookingButton","buttonSubtitle"]}],"namespace":["offices","parking","FixedTabsLayout","firstHeading","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["offices","publicTransport","FixedTabsLayout","firstHeading","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["offices","team","FixedTabsLayout","firstHeading","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["offices","team","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["offices","team","FixedTabsLayout","firstHeading","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["offices","team","FixedTabsLayout","firstHeading","ExpertBlock","expertList","skills"]}],"namespace":["offices","publicTransport","FixedTabsLayout","firstHeading","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["offices","team","FixedTabsLayout","firstHeading","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["offices","team","FixedTabsLayout","firstHeading","ExpertBlock","link","url"]}],"namespace":["offices","publicTransport","FixedTabsLayout","firstHeading","ExpertBlock","link"]}],"namespace":["offices","parking","FixedTabsLayout","firstHeading","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","team","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["offices","team","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["offices","team","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["offices","photos","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["offices","photos","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["offices","photos","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["offices","team","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["offices","publicTransport","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["offices","parking","FixedTabsLayout","firstHeading","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","publicTransport","FixedTabsLayout","firstHeading","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","publicTransport","FixedTabsLayout","firstHeading","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","publicTransport","FixedTabsLayout","firstHeading","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","publicTransport","FixedTabsLayout","firstHeading","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","publicTransport","FixedTabsLayout","firstHeading","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","publicTransport","FixedTabsLayout","firstHeading","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","publicTransport","FixedTabsLayout","firstHeading","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","publicTransport","FixedTabsLayout","firstHeading","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","publicTransport","FixedTabsLayout","firstHeading","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","publicTransport","FixedTabsLayout","firstHeading","CustomImage","sizes"]}],"namespace":["offices","parking","FixedTabsLayout","firstHeading","CustomImage"]}],"namespace":["offices","directions","FixedTabsLayout","firstHeading"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","name":"firstBody","label":"First Body","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","publicTransport","FixedTabsLayout","firstBody","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","publicTransport","FixedTabsLayout","firstBody","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","publicTransport","FixedTabsLayout","firstBody","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","publicTransport","FixedTabsLayout","firstBody","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","publicTransport","FixedTabsLayout","firstBody","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","publicTransport","FixedTabsLayout","firstBody","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","publicTransport","FixedTabsLayout","firstBody","VideoEmbed","duration"]}],"namespace":["offices","parking","FixedTabsLayout","firstBody","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["offices","publicTransport","FixedTabsLayout","firstBody","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["offices","publicTransport","FixedTabsLayout","firstBody","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["offices","publicTransport","FixedTabsLayout","firstBody","BookingButton","buttonSubtitle"]}],"namespace":["offices","parking","FixedTabsLayout","firstBody","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["offices","publicTransport","FixedTabsLayout","firstBody","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["offices","team","FixedTabsLayout","firstBody","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["offices","team","FixedTabsLayout","firstBody","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["offices","team","FixedTabsLayout","firstBody","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["offices","team","FixedTabsLayout","firstBody","ExpertBlock","expertList","skills"]}],"namespace":["offices","publicTransport","FixedTabsLayout","firstBody","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["offices","team","FixedTabsLayout","firstBody","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["offices","team","FixedTabsLayout","firstBody","ExpertBlock","link","url"]}],"namespace":["offices","publicTransport","FixedTabsLayout","firstBody","ExpertBlock","link"]}],"namespace":["offices","parking","FixedTabsLayout","firstBody","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","team","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["offices","team","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["offices","team","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["offices","photos","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["offices","photos","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["offices","photos","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["offices","team","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["offices","publicTransport","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["offices","parking","FixedTabsLayout","firstBody","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","publicTransport","FixedTabsLayout","firstBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","publicTransport","FixedTabsLayout","firstBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","publicTransport","FixedTabsLayout","firstBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","publicTransport","FixedTabsLayout","firstBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","publicTransport","FixedTabsLayout","firstBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","publicTransport","FixedTabsLayout","firstBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","publicTransport","FixedTabsLayout","firstBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","publicTransport","FixedTabsLayout","firstBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","publicTransport","FixedTabsLayout","firstBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","publicTransport","FixedTabsLayout","firstBody","CustomImage","sizes"]}],"namespace":["offices","parking","FixedTabsLayout","firstBody","CustomImage"]}],"namespace":["offices","directions","FixedTabsLayout","firstBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","name":"secondTab","label":"Second Tab","namespace":["offices","directions","FixedTabsLayout","secondTab"],"searchable":true,"uid":false},{"type":"rich-text","name":"secondHeading","label":"Second Heading","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","publicTransport","FixedTabsLayout","secondHeading","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","publicTransport","FixedTabsLayout","secondHeading","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","publicTransport","FixedTabsLayout","secondHeading","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","publicTransport","FixedTabsLayout","secondHeading","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","publicTransport","FixedTabsLayout","secondHeading","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","publicTransport","FixedTabsLayout","secondHeading","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","publicTransport","FixedTabsLayout","secondHeading","VideoEmbed","duration"]}],"namespace":["offices","parking","FixedTabsLayout","secondHeading","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["offices","publicTransport","FixedTabsLayout","secondHeading","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["offices","publicTransport","FixedTabsLayout","secondHeading","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["offices","publicTransport","FixedTabsLayout","secondHeading","BookingButton","buttonSubtitle"]}],"namespace":["offices","parking","FixedTabsLayout","secondHeading","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["offices","publicTransport","FixedTabsLayout","secondHeading","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["offices","team","FixedTabsLayout","secondHeading","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["offices","team","FixedTabsLayout","secondHeading","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["offices","team","FixedTabsLayout","secondHeading","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["offices","team","FixedTabsLayout","secondHeading","ExpertBlock","expertList","skills"]}],"namespace":["offices","publicTransport","FixedTabsLayout","secondHeading","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["offices","team","FixedTabsLayout","secondHeading","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["offices","team","FixedTabsLayout","secondHeading","ExpertBlock","link","url"]}],"namespace":["offices","publicTransport","FixedTabsLayout","secondHeading","ExpertBlock","link"]}],"namespace":["offices","parking","FixedTabsLayout","secondHeading","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","team","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["offices","team","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["offices","team","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["offices","photos","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["offices","photos","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["offices","photos","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["offices","team","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["offices","publicTransport","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["offices","parking","FixedTabsLayout","secondHeading","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","publicTransport","FixedTabsLayout","secondHeading","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","publicTransport","FixedTabsLayout","secondHeading","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","publicTransport","FixedTabsLayout","secondHeading","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","publicTransport","FixedTabsLayout","secondHeading","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","publicTransport","FixedTabsLayout","secondHeading","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","publicTransport","FixedTabsLayout","secondHeading","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","publicTransport","FixedTabsLayout","secondHeading","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","publicTransport","FixedTabsLayout","secondHeading","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","publicTransport","FixedTabsLayout","secondHeading","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","publicTransport","FixedTabsLayout","secondHeading","CustomImage","sizes"]}],"namespace":["offices","parking","FixedTabsLayout","secondHeading","CustomImage"]}],"namespace":["offices","directions","FixedTabsLayout","secondHeading"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","name":"secondBody","label":"Second Body","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","publicTransport","FixedTabsLayout","secondBody","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","publicTransport","FixedTabsLayout","secondBody","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","publicTransport","FixedTabsLayout","secondBody","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","publicTransport","FixedTabsLayout","secondBody","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","publicTransport","FixedTabsLayout","secondBody","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","publicTransport","FixedTabsLayout","secondBody","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","publicTransport","FixedTabsLayout","secondBody","VideoEmbed","duration"]}],"namespace":["offices","parking","FixedTabsLayout","secondBody","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["offices","publicTransport","FixedTabsLayout","secondBody","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["offices","publicTransport","FixedTabsLayout","secondBody","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["offices","publicTransport","FixedTabsLayout","secondBody","BookingButton","buttonSubtitle"]}],"namespace":["offices","parking","FixedTabsLayout","secondBody","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["offices","publicTransport","FixedTabsLayout","secondBody","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["offices","team","FixedTabsLayout","secondBody","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["offices","team","FixedTabsLayout","secondBody","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["offices","team","FixedTabsLayout","secondBody","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["offices","team","FixedTabsLayout","secondBody","ExpertBlock","expertList","skills"]}],"namespace":["offices","publicTransport","FixedTabsLayout","secondBody","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["offices","team","FixedTabsLayout","secondBody","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["offices","team","FixedTabsLayout","secondBody","ExpertBlock","link","url"]}],"namespace":["offices","publicTransport","FixedTabsLayout","secondBody","ExpertBlock","link"]}],"namespace":["offices","parking","FixedTabsLayout","secondBody","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","team","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["offices","team","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["offices","team","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["offices","photos","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["offices","photos","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["offices","photos","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["offices","team","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["offices","publicTransport","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["offices","parking","FixedTabsLayout","secondBody","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","publicTransport","FixedTabsLayout","secondBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","publicTransport","FixedTabsLayout","secondBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","publicTransport","FixedTabsLayout","secondBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","publicTransport","FixedTabsLayout","secondBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","publicTransport","FixedTabsLayout","secondBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","publicTransport","FixedTabsLayout","secondBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","publicTransport","FixedTabsLayout","secondBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","publicTransport","FixedTabsLayout","secondBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","publicTransport","FixedTabsLayout","secondBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","publicTransport","FixedTabsLayout","secondBody","CustomImage","sizes"]}],"namespace":["offices","parking","FixedTabsLayout","secondBody","CustomImage"]}],"namespace":["offices","directions","FixedTabsLayout","secondBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["offices","directions","FixedTabsLayout"]},{"label":"Google Maps","name":"GoogleMaps","ui":{"previewSrc":"/images/thumbs/tina/google-maps.jpg"},"fields":[{"type":"string","label":"URL","name":"embedUrl","required":true,"namespace":["offices","directions","GoogleMaps","embedUrl"],"searchable":true,"uid":false},{"type":"string","label":"Width","name":"embedWidth","namespace":["offices","directions","GoogleMaps","embedWidth"],"searchable":true,"uid":false},{"type":"string","label":"Height","name":"embedHeight","namespace":["offices","directions","GoogleMaps","embedHeight"],"searchable":true,"uid":false}],"namespace":["offices","directions","GoogleMaps"]},{"label":"Grid Layout","name":"GridLayout","ui":{"previewSrc":"/images/thumbs/tina/grid-layout.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","directions","GridLayout","title"],"searchable":true,"uid":false},{"type":"object","list":true,"label":"Grid Items","name":"grids","ui":{},"fields":[{"type":"string","label":"Grid Title","name":"gridTitle","namespace":["offices","parking","GridLayout","grids","gridTitle"]},{"type":"boolean","label":"Show Grid Title","name":"showGridTitle","namespace":["offices","parking","GridLayout","grids","showGridTitle"]},{"type":"boolean","label":"Centered Grid Title","name":"centeredGridTitle","namespace":["offices","parking","GridLayout","grids","centeredGridTitle"]},{"type":"boolean","label":"Show Header Divider","name":"showHeaderDivider","namespace":["offices","parking","GridLayout","grids","showHeaderDivider"]},{"type":"boolean","label":"Offset Grid Start","name":"offsetGridStart","namespace":["offices","parking","GridLayout","grids","offsetGridStart"]},{"type":"object","label":"Blocks","name":"blocks","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","publicTransport","GridLayout","grids","blocks","title"]},{"type":"boolean","label":"Show Title","name":"showTitle","namespace":["offices","publicTransport","GridLayout","grids","blocks","showTitle"]},{"type":"image","label":"Image","name":"image","uploadDir":{"namespace":["page","beforeBody","GridLayout","grids","blocks","image","uploadDir"]},"namespace":["offices","publicTransport","GridLayout","grids","blocks","image"]},{"type":"image","label":"Related Image","name":"relatedImage","uploadDir":{"namespace":["page","beforeBody","GridLayout","grids","blocks","relatedImage","uploadDir"]},"namespace":["offices","publicTransport","GridLayout","grids","blocks","relatedImage"]},{"type":"rich-text","name":"linkContent","label":"Link Content","templates":[{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["offices","photos","GridLayout","grids","blocks","linkContent","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["offices","photos","GridLayout","grids","blocks","linkContent","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["offices","photos","GridLayout","grids","blocks","linkContent","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["offices","photos","GridLayout","grids","blocks","linkContent","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["offices","photos","GridLayout","grids","blocks","linkContent","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["offices","photos","GridLayout","grids","blocks","linkContent","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["offices","photos","GridLayout","grids","blocks","linkContent","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["offices","photos","GridLayout","grids","blocks","linkContent","UtilityButton","openInNewTab"]}],"namespace":["offices","team","GridLayout","grids","blocks","linkContent","UtilityButton"]}],"namespace":["offices","publicTransport","GridLayout","grids","blocks","linkContent"]}],"namespace":["offices","parking","GridLayout","grids","blocks"]}],"namespace":["offices","directions","GridLayout","grids"],"searchable":true,"uid":false}],"namespace":["offices","directions","GridLayout"]},{"name":"Hero","label":"Hero","ui":{"previewSrc":"/blocks/hero.png","defaultItem":{"tagline":"Here's some text above the other text","headline":"This Big Text is Totally Awesome","text":"Phasellus scelerisque, libero eu finibus rutrum, risus risus accumsan libero, nec molestie urna dui a leo."}},"fields":[{"type":"string","label":"Tagline","name":"tagline","namespace":["offices","directions","Hero","tagline"],"searchable":true,"uid":false},{"type":"string","label":"Headline","name":"headline","namespace":["offices","directions","Hero","headline"],"searchable":true,"uid":false},{"label":"Text","name":"text","type":"rich-text","namespace":["offices","directions","Hero","text"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"label":"Actions","name":"actions","type":"object","list":true,"ui":{"defaultItem":{"label":"Action Label","type":"button","icon":true,"link":"/"}},"fields":[{"label":"Label","name":"label","type":"string","namespace":["offices","parking","Hero","actions","label"]},{"label":"Type","name":"type","type":"string","options":[{"label":"Button","value":"button"},{"label":"Link","value":"link"}],"namespace":["offices","parking","Hero","actions","type"]},{"label":"Icon","name":"icon","type":"boolean","namespace":["offices","parking","Hero","actions","icon"]},{"label":"Link","name":"link","type":"string","namespace":["offices","parking","Hero","actions","link"]}],"namespace":["offices","directions","Hero","actions"],"searchable":true,"uid":false},{"type":"object","label":"Image","name":"image","fields":[{"name":"src","label":"Image Source","type":"image","namespace":["offices","parking","Hero","image","src"]},{"name":"alt","label":"Alt Text","type":"string","namespace":["offices","parking","Hero","image","alt"]}],"namespace":["offices","directions","Hero","image"],"searchable":true,"uid":false},{"type":"string","label":"Color","name":"color","options":[{"label":"Default","value":"default"},{"label":"Tint","value":"tint"},{"label":"Primary","value":"primary"}],"namespace":["offices","directions","Hero","color"],"searchable":true,"uid":false}],"namespace":["offices","directions","Hero"]},{"name":"HorizontalCard","label":"Horizontal Card","ui":{"previewSrc":"/images/thumbs/tina/horizontal-card.jpg"},"fields":[{"type":"object","label":"Cards","name":"cardList","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","parking","HorizontalCard","cardList","title"]},{"type":"rich-text","label":"Content","name":"content","namespace":["offices","parking","HorizontalCard","cardList","content"]},{"type":"image","label":"Thumbnail","name":"thumbnail","uploadDir":{"namespace":["page","beforeBody","HorizontalCard","cardList","thumbnail","uploadDir"]},"namespace":["offices","parking","HorizontalCard","cardList","thumbnail"]},{"type":"string","label":"Link","name":"link","namespace":["offices","parking","HorizontalCard","cardList","link"]}],"namespace":["offices","directions","HorizontalCard","cardList"],"searchable":true,"uid":false},{"type":"object","label":"Button","name":"button","fields":[{"type":"string","label":"Text","name":"text","namespace":["offices","parking","HorizontalCard","button","text"]},{"type":"string","label":"Link","name":"link","namespace":["offices","parking","HorizontalCard","button","link"]}],"namespace":["offices","directions","HorizontalCard","button"],"searchable":true,"uid":false}],"namespace":["offices","directions","HorizontalCard"]},{"name":"InternalCarousel","label":"Internal Carousel","ui":{"previewSrc":"/images/thumbs/tina/internal-carousel.jpg"},"fields":[{"label":"Images","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Image description"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["offices","parking","InternalCarousel","items","label"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","InternalCarousel","items","imgSrc","uploadDir"]},"namespace":["offices","parking","InternalCarousel","items","imgSrc"]}],"namespace":["offices","directions","InternalCarousel","items"],"searchable":true,"uid":false},{"type":"string","label":"Header","name":"header","namespace":["offices","directions","InternalCarousel","header"],"searchable":true,"uid":false},{"type":"rich-text","label":"Text","name":"paragraph","isBody":false,"namespace":["offices","directions","InternalCarousel","paragraph"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Website","name":"website","namespace":["offices","directions","InternalCarousel","website"],"searchable":true,"uid":false},{"type":"object","label":"Technologies","name":"technologies","list":true,"ui":{},"fields":[{"type":"string","label":"Name","name":"name","namespace":["offices","parking","InternalCarousel","technologies","name"]}],"namespace":["offices","directions","InternalCarousel","technologies"],"searchable":true,"uid":false},{"type":"string","label":"Case Study","name":"caseStudyUrl","namespace":["offices","directions","InternalCarousel","caseStudyUrl"],"searchable":true,"uid":false},{"type":"string","label":"Video URL","name":"videoUrl","namespace":["offices","directions","InternalCarousel","videoUrl"],"searchable":true,"uid":false}],"namespace":["offices","directions","InternalCarousel"]},{"label":"Join As Presenter","name":"joinAsPresenter","fields":[{"label":"Learn More Link","name":"link","type":"string","namespace":["offices","directions","joinAsPresenter","link"],"searchable":true,"uid":false},{"label":"Image","name":"img","type":"image","namespace":["offices","directions","joinAsPresenter","img"],"searchable":false,"uid":false}],"namespace":["offices","directions","joinAsPresenter"]},{"label":"Join Github","name":"joinGithub","ui":{"previewSrc":"/images/thumbs/tina/join-github.jpg"},"fields":[{"label":"Title","name":"title","type":"string","namespace":["offices","directions","joinGithub","title"],"searchable":true,"uid":false},{"label":"Join Github Link","name":"link","type":"string","namespace":["offices","directions","joinGithub","link"],"searchable":true,"uid":false}],"namespace":["offices","directions","joinGithub"]},{"name":"JotFormEmbed","label":"JotForm Embed","ui":{"previewSrc":"/images/thumbs/tina/jotform-embed.jpg"},"fields":[{"type":"string","name":"jotFormId","label":"JotForm Id","required":true,"namespace":["offices","directions","JotFormEmbed","jotFormId"],"searchable":true,"uid":false},{"type":"string","label":"Button Text","name":"buttonText","namespace":["offices","directions","JotFormEmbed","buttonText"],"searchable":true,"uid":false},{"type":"string","name":"containerClass","label":"Container Class","namespace":["offices","directions","JotFormEmbed","containerClass"],"searchable":true,"uid":false},{"type":"string","label":"Button Class","name":"buttonClass","namespace":["offices","directions","JotFormEmbed","buttonClass"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","namespace":["offices","directions","JotFormEmbed","animated"],"searchable":true,"uid":false}],"namespace":["offices","directions","JotFormEmbed"]},{"name":"LatestTech","label":"Latest Tech","ui":{"previewSrc":"/images/thumbs/tina/latest-tech.jpg"},"fields":[{"type":"reference","description":"Select a config file including a set of badges","collections":["userGroupGlobal"],"label":"Badges","name":"badges","namespace":["offices","directions","LatestTech","badges"],"searchable":true,"uid":false}],"namespace":["offices","directions","LatestTech"]},{"name":"LocationBlock","label":"Locations","ui":{"previewSrc":"/images/thumbs/tina/locations.jpg"},"fields":[{"type":"string","name":"title","label":"Title","namespace":["offices","directions","LocationBlock","title"],"searchable":true,"uid":false},{"type":"object","label":"Location List","name":"locationList","list":true,"ui":{},"fields":[{"type":"reference","collections":["locations"],"label":"Location","name":"location","namespace":["offices","parking","LocationBlock","locationList","location"]}],"namespace":["offices","directions","LocationBlock","locationList"],"searchable":true,"uid":false},{"type":"object","name":"chapelWebsite","label":"Chapel Website","fields":[{"type":"string","name":"title","label":"Text","namespace":["offices","parking","LocationBlock","chapelWebsite","title"]},{"type":"string","name":"URL","label":"URL","namespace":["offices","parking","LocationBlock","chapelWebsite","URL"]}],"namespace":["offices","directions","LocationBlock","chapelWebsite"],"searchable":true,"uid":false}],"namespace":["offices","directions","LocationBlock"]},{"name":"NewslettersTable","label":"Newsletters Table","ui":{"previewSrc":"/images/thumbs/tina/newsletters-table.jpg"},"fields":[{"type":"string","label":"Header text","name":"headerText","namespace":["offices","directions","NewslettersTable","headerText"],"searchable":true,"uid":false}],"namespace":["offices","directions","NewslettersTable"]},{"label":"Organizer","name":"organizer","fields":[{"type":"image","label":"Profile Image","name":"profileImg","namespace":["offices","directions","organizer","profileImg"],"searchable":false,"uid":false},{"type":"string","label":"Profile Link","name":"profileLink","namespace":["offices","directions","organizer","profileLink"],"searchable":true,"uid":false},{"type":"string","label":"Name","name":"name","namespace":["offices","directions","organizer","name"],"searchable":true,"uid":false},{"type":"string","label":"Position","name":"position","namespace":["offices","directions","organizer","position"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","namespace":["offices","directions","organizer","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["offices","directions","organizer"]},{"label":"Payment Block","name":"paymentBlock","ui":{"previewSrc":"/images/thumbs/tina/payment-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","directions","paymentBlock","title"],"searchable":true,"uid":false},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["offices","directions","paymentBlock","subTitle"],"searchable":true,"uid":false},{"type":"reference","label":"Payment Links","name":"payments","collections":["paymentDetails"],"namespace":["offices","directions","paymentBlock","payments"],"searchable":true,"uid":false},{"type":"rich-text","label":"Footer","name":"footer","namespace":["offices","directions","paymentBlock","footer"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"image","label":"Credit Cards Image","name":"creditImgSrc","namespace":["offices","directions","paymentBlock","creditImgSrc"],"searchable":false,"uid":false},{"type":"string","label":"Alt Text","name":"altTxt","namespace":["offices","directions","paymentBlock","altTxt"],"searchable":true,"uid":false}],"namespace":["offices","directions","paymentBlock"]},{"name":"PresenterBlock","label":"Presenters","ui":{"previewSrc":"/images/thumbs/tina/presenters.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["offices","directions","PresenterBlock","header"],"searchable":true,"uid":false},{"type":"object","name":"presenterList","label":"Presenters","list":true,"ui":{},"fields":[{"type":"reference","name":"presenter","label":"Presenters","collections":["presenter"],"namespace":["offices","parking","PresenterBlock","presenterList","presenter"]}],"namespace":["offices","directions","PresenterBlock","presenterList"],"searchable":true,"uid":false},{"type":"object","label":"Other Events","name":"otherEvent","fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","parking","PresenterBlock","otherEvent","title"]},{"type":"string","label":"URL","name":"eventURL","namespace":["offices","parking","PresenterBlock","otherEvent","eventURL"]}],"namespace":["offices","directions","PresenterBlock","otherEvent"],"searchable":true,"uid":false}],"namespace":["offices","directions","PresenterBlock"]},{"label":"Recurring Event","name":"RecurringEvent","ui":{"previewSrc":"/images/thumbs/tina/recurring-event.jpg"},"fields":[{"type":"string","label":"Apply Link Redirect","name":"applyLinkRedirect","namespace":["offices","directions","RecurringEvent","applyLinkRedirect"],"searchable":true,"uid":false},{"type":"string","label":"Day","name":"day","options":[{"label":"Monday","value":"monday"},{"label":"Tuesday","value":"tuesday"},{"label":"Wednesday","value":"wednesday"},{"label":"Thursday","value":"thursday"},{"label":"Friday","value":"friday"},{"label":"Saturday","value":"saturday"},{"label":"Sunday","value":"sunday"}],"required":true,"namespace":["offices","directions","RecurringEvent","day"],"searchable":true,"uid":false}],"namespace":["offices","directions","RecurringEvent"]},{"name":"SectionHeader","label":"Section Header","ui":{"previewSrc":"/images/thumbs/tina/section-header.jpg"},"fields":[{"type":"string","label":"Header Text","name":"headerText","namespace":["offices","directions","SectionHeader","headerText"],"searchable":true,"uid":false}],"namespace":["offices","directions","SectionHeader"]},{"name":"ServiceCards","label":"Service Cards","ui":{"previewSrc":"/images/thumbs/tina/services-cards.jpg"},"fields":[{"type":"string","label":"Big Cards Label","name":"bigCardsLabel","namespace":["offices","directions","ServiceCards","bigCardsLabel"],"searchable":true,"uid":false},{"label":"Big Cards","name":"bigCards","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","parking","ServiceCards","bigCards","title"]},{"type":"string","label":"Description","component":"textarea","name":"description","namespace":["offices","parking","ServiceCards","bigCards","description"]},{"type":"string","label":"URL","name":"link","namespace":["offices","parking","ServiceCards","bigCards","link"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Red","value":"red"},{"label":"Light Gray","value":"lightgray"},{"label":"Medium Gray","value":"mediumgray"},{"label":"Dark Gray","value":"darkgray"}],"namespace":["offices","parking","ServiceCards","bigCards","color"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","ServiceCards","bigCards","imgSrc","uploadDir"]},"namespace":["offices","parking","ServiceCards","bigCards","imgSrc"]}],"namespace":["offices","directions","ServiceCards","bigCards"],"searchable":true,"uid":false},{"type":"string","label":"Small Cards Label","name":"smallCardsLabel","namespace":["offices","directions","ServiceCards","smallCardsLabel"],"searchable":true,"uid":false},{"label":"Small Cards","name":"smallCards","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","parking","ServiceCards","smallCards","title"]},{"type":"string","label":"URL","name":"link","namespace":["offices","parking","ServiceCards","smallCards","link"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Red","value":"red"},{"label":"Light Gray","value":"lightgray"},{"label":"Medium Gray","value":"mediumgray"},{"label":"Dark Gray","value":"darkgray"}],"namespace":["offices","parking","ServiceCards","smallCards","color"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","ServiceCards","smallCards","imgSrc","uploadDir"]},"namespace":["offices","parking","ServiceCards","smallCards","imgSrc"]},{"type":"boolean","label":"External Page","description":"Select this if the link is not part of the website. This includes SSW.Rules, and SSW.People links","name":"isExternal","namespace":["offices","parking","ServiceCards","smallCards","isExternal"]}],"namespace":["offices","directions","ServiceCards","smallCards"],"searchable":true,"uid":false},{"label":"Links","name":"links","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["offices","parking","ServiceCards","links","label"]},{"type":"string","label":"URL","name":"link","namespace":["offices","parking","ServiceCards","links","link"]}],"namespace":["offices","directions","ServiceCards","links"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["offices","directions","ServiceCards","backgroundColor"],"searchable":true,"uid":false}],"namespace":["offices","directions","ServiceCards"]},{"label":"Table Layout","name":"TableLayout","ui":{"previewSrc":"/images/thumbs/tina/table-layout.jpg"},"fields":[{"label":"Table Style","name":"tableStyle","type":"string","options":["none","basicBorder","styled","benefits"],"namespace":["offices","directions","TableLayout","tableStyle"],"searchable":true,"uid":false},{"label":"First column bolded + left aligned","name":"firstColBold","type":"boolean","required":false,"namespace":["offices","directions","TableLayout","firstColBold"],"searchable":true,"uid":false},{"type":"string","label":"Table Headers","name":"headers","list":true,"namespace":["offices","directions","TableLayout","headers"],"searchable":true,"uid":false},{"type":"object","label":"Rows","name":"rows","list":true,"fields":[{"type":"object","label":"Cells","name":"cells","list":true,"fields":[{"type":"string","label":"Value","name":"cellValue","required":true,"component":{"namespace":["page","beforeBody","TableLayout","rows","cells","cellValue",""]},"namespace":["offices","publicTransport","TableLayout","rows","cells","cellValue"]}],"ui":{},"namespace":["offices","parking","TableLayout","rows","cells"]},{"type":"boolean","label":"Is Heading","name":"isHeader","required":false,"namespace":["offices","parking","TableLayout","rows","isHeader"]}],"ui":{},"namespace":["offices","directions","TableLayout","rows"],"searchable":true,"uid":false}],"namespace":["offices","directions","TableLayout"]},{"name":"TestimonialsList","label":"Testimonials List","ui":{"previewSrc":"/images/thumbs/tina/testimonials.jpg"},"fields":[{"type":"object","label":"Exclude Categories","name":"excludedCategories","ui":{},"list":true,"fields":[{"type":"reference","label":"Category Name","name":"categoryName","collections":["testimonialCategories"],"namespace":["offices","parking","TestimonialsList","excludedCategories","categoryName"]}],"namespace":["offices","directions","TestimonialsList","excludedCategories"],"searchable":true,"uid":false}],"namespace":["offices","directions","TestimonialsList"]},{"label":"Training Information","name":"TrainingInformation","ui":{"previewSrc":"/images/thumbs/tina/training-information.jpg"},"fields":[{"type":"object","label":"Training Information Items","name":"trainingInformationItems","list":true,"fields":[{"type":"string","label":"Header","name":"header","namespace":["offices","parking","TrainingInformation","trainingInformationItems","header"]},{"type":"rich-text","label":"Body","name":"body","templates":[{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["offices","team","TrainingInformation","trainingInformationItems","body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["offices","team","TrainingInformation","trainingInformationItems","body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["offices","team","TrainingInformation","trainingInformationItems","body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["offices","team","TrainingInformation","trainingInformationItems","body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["offices","team","TrainingInformation","trainingInformationItems","body","VerticalListItem","afterBody"]}],"namespace":["offices","publicTransport","TrainingInformation","trainingInformationItems","body","VerticalListItem"]},{"label":"Recurring Event","name":"RecurringEvent","ui":{"previewSrc":"/images/thumbs/tina/recurring-event.jpg"},"fields":[{"type":"string","label":"Apply Link Redirect","name":"applyLinkRedirect","namespace":["offices","team","TrainingInformation","trainingInformationItems","body","RecurringEvent","applyLinkRedirect"]},{"type":"string","label":"Day","name":"day","options":[{"label":"Monday","value":"monday"},{"label":"Tuesday","value":"tuesday"},{"label":"Wednesday","value":"wednesday"},{"label":"Thursday","value":"thursday"},{"label":"Friday","value":"friday"},{"label":"Saturday","value":"saturday"},{"label":"Sunday","value":"sunday"}],"required":true,"namespace":["offices","team","TrainingInformation","trainingInformationItems","body","RecurringEvent","day"]}],"namespace":["offices","publicTransport","TrainingInformation","trainingInformationItems","body","RecurringEvent"]}],"namespace":["offices","parking","TrainingInformation","trainingInformationItems","body"]}],"namespace":["offices","directions","TrainingInformation","trainingInformationItems"],"searchable":true,"uid":false}],"namespace":["offices","directions","TrainingInformation"]},{"label":"Training Learning Outcomes","name":"TrainingLearningOutcome","ui":{"previewSrc":"/images/thumbs/tina/training-learning-outcomes.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["offices","directions","TrainingLearningOutcome","header"],"searchable":true,"uid":false},{"type":"object","label":"List Items","name":"listItems","list":true,"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","parking","TrainingLearningOutcome","listItems","title"]},{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["offices","parking","TrainingLearningOutcome","listItems","content"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","TrainingLearningOutcome","listItems","icon","uploadDir"]},"namespace":["offices","parking","TrainingLearningOutcome","listItems","icon"]}],"namespace":["offices","directions","TrainingLearningOutcome","listItems"],"searchable":true,"uid":false}],"namespace":["offices","directions","TrainingLearningOutcome"]},{"label":"Tweet Embed","name":"TweetEmbed","ui":{"previewSrc":"/images/thumbs/tina/tweet-embed.jpg"},"fields":[{"type":"string","name":"url","label":"Tweet URL","required":true,"namespace":["offices","directions","TweetEmbed","url"],"searchable":true,"uid":false}],"namespace":["offices","directions","TweetEmbed"]},{"name":"UpcomingEvents","label":"Upcoming Events","ui":{"previewSrc":"/images/thumbs/tina/upcoming-events.jpg","defaultItem":{"title":"Upcoming Events","numberOfEvents":30}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","directions","UpcomingEvents","title"],"searchable":true,"uid":false},{"type":"number","label":"Number of Events","name":"numberOfEvents","namespace":["offices","directions","UpcomingEvents","numberOfEvents"],"searchable":true,"uid":false}],"namespace":["offices","directions","UpcomingEvents"]},{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["offices","directions","UtilityButton","buttonText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"link","required":false,"namespace":["offices","directions","UtilityButton","link"],"searchable":true,"uid":false},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["offices","directions","UtilityButton","size"],"searchable":true,"uid":false},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["offices","directions","UtilityButton","btnIcon"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["offices","directions","UtilityButton","animated"],"searchable":true,"uid":false},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["offices","directions","UtilityButton","uncentered"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["offices","directions","UtilityButton","removeTopMargin"],"searchable":true,"uid":false},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["offices","directions","UtilityButton","openInNewTab"],"searchable":true,"uid":false}],"namespace":["offices","directions","UtilityButton"]},{"name":"VerticalImageLayout","label":"Vertical Image Layout","fields":[{"type":"image","label":"Image","name":"imageSrc","uploadDir":{"namespace":["page","beforeBody","VerticalImageLayout","imageSrc","uploadDir"]},"namespace":["offices","directions","VerticalImageLayout","imageSrc"],"searchable":false,"uid":false},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","directions","VerticalImageLayout","altText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"imageLink","namespace":["offices","directions","VerticalImageLayout","imageLink"],"searchable":true,"uid":false},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","directions","VerticalImageLayout","height"],"searchable":true,"uid":false},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","directions","VerticalImageLayout","width"],"searchable":true,"uid":false},{"type":"rich-text","label":"Message","name":"message","required":true,"namespace":["offices","directions","VerticalImageLayout","message"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","directions","VerticalImageLayout","sizes"],"searchable":true,"uid":false}],"namespace":["offices","directions","VerticalImageLayout"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["offices","directions","VerticalListItem","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"number","label":"Index number","name":"index","namespace":["offices","directions","VerticalListItem","index"],"searchable":true,"uid":false},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["offices","directions","VerticalListItem","icon"],"searchable":false,"uid":false},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["offices","directions","VerticalListItem","iconScale"],"searchable":true,"uid":false},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["offices","directions","VerticalListItem","afterBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["offices","directions","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","directions","VideoEmbed","url"],"searchable":true,"uid":false},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","directions","VideoEmbed","videoWidth"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","directions","VideoEmbed","removeMargin"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","directions","VideoEmbed","uncentre"],"searchable":true,"uid":false},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","directions","VideoEmbed","overflow"],"searchable":true,"uid":false},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","directions","VideoEmbed","caption"],"searchable":true,"uid":false},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","directions","VideoEmbed","duration"],"searchable":true,"uid":false}],"namespace":["offices","directions","VideoEmbed"]},{"name":"InlineJotForm","label":"In-line JotForm","ui":{"previewSrc":"/images/thumbs/tina/inline-jot-form.jpg"},"fields":[{"type":"string","name":"title","label":"Title","description":"Optional title for JotForm","namespace":["offices","directions","InlineJotForm","title"],"searchable":true,"uid":false},{"type":"string","name":"jotFormId","label":"JotForm ID","required":true,"namespace":["offices","directions","InlineJotForm","jotFormId"],"searchable":true,"uid":false},{"type":"string","name":"additionalClasses","label":"Additional classnames","description":"Optional styling for iframe element only","namespace":["offices","directions","InlineJotForm","additionalClasses"],"searchable":true,"uid":false}],"namespace":["offices","directions","InlineJotForm"]}],"namespace":["offices","directions"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"Parking","name":"parking","templates":[{"name":"AboutUs","label":"About Us","ui":{"previewSrc":"/images/thumbs/tina/about-us.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["offices","parking","AboutUs","backgroundColor"],"searchable":true,"uid":false},{"type":"boolean","label":"Show Map","name":"showMap","required":false,"namespace":["offices","parking","AboutUs","showMap"],"searchable":true,"uid":false}],"namespace":["offices","parking","AboutUs"]},{"label":"Agenda","name":"Agenda","ui":{"previewSrc":"/images/thumbs/tina/agenda.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["offices","parking","Agenda","header"],"searchable":true,"uid":false},{"type":"string","label":"Header Color","name":"textColor","options":[{"label":"Red","value":"red"},{"label":"Gray","value":"gray"},{"label":"Default","value":"default"}],"namespace":["offices","parking","Agenda","textColor"],"searchable":true,"uid":false},{"type":"object","label":"Agenda Items","name":"agendaItemList","ui":{},"list":true,"fields":[{"type":"string","label":"Placeholder Text","name":"placeholder","namespace":["offices","publicTransport","Agenda","agendaItemList","placeholder"]},{"type":"rich-text","label":"Body","name":"body","templates":[{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["offices","photos","Agenda","agendaItemList","body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["offices","photos","Agenda","agendaItemList","body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["offices","photos","Agenda","agendaItemList","body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["offices","photos","Agenda","agendaItemList","body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["offices","photos","Agenda","agendaItemList","body","VerticalListItem","afterBody"]}],"namespace":["offices","team","Agenda","agendaItemList","body","VerticalListItem"]}],"namespace":["offices","publicTransport","Agenda","agendaItemList","body"]}],"namespace":["offices","parking","Agenda","agendaItemList"],"searchable":true,"uid":false}],"namespace":["offices","parking","Agenda"]},{"label":"Agreement Form","name":"AgreementForm","ui":{"previewSrc":"/images/thumbs/tina/agreement-form.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["offices","parking","AgreementForm","backgroundColor"],"searchable":true,"uid":false},{"type":"object","label":"Form fields","name":"fields","list":true,"fields":[{"type":"string","label":"ID","name":"id","required":true,"namespace":["offices","publicTransport","AgreementForm","fields","id"]},{"type":"string","label":"Label","name":"label","required":true,"namespace":["offices","publicTransport","AgreementForm","fields","label"]},{"type":"string","label":"Placeholder","name":"placeholder","namespace":["offices","publicTransport","AgreementForm","fields","placeholder"]},{"type":"boolean","label":"Resizeable","name":"resizeable","required":true,"namespace":["offices","publicTransport","AgreementForm","fields","resizeable"]}],"namespace":["offices","parking","AgreementForm","fields"],"searchable":true,"uid":false}],"namespace":["offices","parking","AgreementForm"]},{"label":"Interest Form","name":"InterestForm","ui":{"previewSrc":"/images/thumbs/tina/interest-form.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["offices","parking","InterestForm","buttonText"],"searchable":true,"uid":false}],"namespace":["offices","parking","InterestForm"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["offices","parking","BookingButton","buttonText"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","namespace":["offices","parking","BookingButton","animated"],"searchable":true,"uid":false},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["offices","parking","BookingButton","buttonSubtitle"],"searchable":true,"uid":false}],"namespace":["offices","parking","BookingButton"]},{"name":"BuiltOnAzure","label":"Built on Azure","ui":{"previewSrc":"/images/thumbs/tina/built-on-azure.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["offices","parking","BuiltOnAzure","backgroundColor"],"searchable":true,"uid":false}],"namespace":["offices","parking","BuiltOnAzure"]},{"name":"Carousel","label":"Carousel","ui":{"previewSrc":"/images/thumbs/tina/carousel.jpg"},"fields":[{"label":"Items","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Item description","link":"/","openIn":"sameWindow"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["offices","publicTransport","Carousel","items","label"]},{"type":"string","label":"URL","name":"link","description":"If link contains ssw.com.au, you can skip the full URL and just use the path. e.g. /services","namespace":["offices","publicTransport","Carousel","items","link"]},{"type":"string","label":"Open in","name":"openIn","description":"If it is external link, please select 'New window' option.","options":[{"label":"Same window","value":"sameWindow"},{"label":"Modal","value":"modal"},{"label":"New window","value":"newWindow"}],"namespace":["offices","publicTransport","Carousel","items","openIn"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","Carousel","items","imgSrc","uploadDir"]},"namespace":["offices","publicTransport","Carousel","items","imgSrc"]}],"namespace":["offices","parking","Carousel","items"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["offices","parking","Carousel","backgroundColor"],"searchable":true,"uid":false},{"type":"number","label":"Delay (Seconds)","name":"delay","required":true,"namespace":["offices","parking","Carousel","delay"],"searchable":true,"uid":false},{"type":"boolean","label":"Show on mobile devices","name":"showOnMobileDevices","namespace":["offices","parking","Carousel","showOnMobileDevices"],"searchable":true,"uid":false}],"namespace":["offices","parking","Carousel"]},{"name":"Citation","label":"Citation","fields":[{"type":"string","label":"author","name":"author","namespace":["offices","parking","Citation","author"],"searchable":true,"uid":false},{"type":"string","label":"article","name":"article","required":true,"namespace":["offices","parking","Citation","article"],"searchable":true,"uid":false}],"namespace":["offices","parking","Citation"]},{"label":"Client List","name":"ClientList","ui":{"previewSrc":"/images/thumbs/tina/clients-list.jpg"},"fields":[{"type":"object","name":"categories","label":"Categories","list":true,"fields":[{"type":"reference","name":"category","label":"Category","collections":["clientCategories"],"namespace":["offices","publicTransport","ClientList","categories","category"]}],"ui":{},"namespace":["offices","parking","ClientList","categories"],"searchable":true,"uid":false},{"type":"object","name":"clients","label":"Clients list","list":true,"ui":{"previewSrc":"/images/thumbs/tina/clients-list.jpg"},"fields":[{"type":"string","name":"name","label":"Name","namespace":["offices","publicTransport","ClientList","clients","name"]},{"type":"image","name":"logo","label":"Logo","namespace":["offices","publicTransport","ClientList","clients","logo"]},{"type":"string","name":"logoUrl","label":"Logo URL","namespace":["offices","publicTransport","ClientList","clients","logoUrl"]},{"type":"rich-text","name":"content","label":"Content","templates":[{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["offices","photos","ClientList","clients","content","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["offices","photos","ClientList","clients","content","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["offices","photos","ClientList","clients","content","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["offices","photos","ClientList","clients","content","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["offices","photos","ClientList","clients","content","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["offices","photos","ClientList","clients","content","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["offices","photos","ClientList","clients","content","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["offices","photos","ClientList","clients","content","UtilityButton","openInNewTab"]}],"namespace":["offices","team","ClientList","clients","content","UtilityButton"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","photos","ClientList","clients","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","photos","ClientList","clients","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","photos","ClientList","clients","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","photos","ClientList","clients","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","photos","ClientList","clients","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","photos","ClientList","clients","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","photos","ClientList","clients","content","VideoEmbed","duration"]}],"namespace":["offices","team","ClientList","clients","content","VideoEmbed"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","photos","ClientList","clients","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","photos","ClientList","clients","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","photos","ClientList","clients","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","photos","ClientList","clients","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","photos","ClientList","clients","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","photos","ClientList","clients","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","photos","ClientList","clients","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","photos","ClientList","clients","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","photos","ClientList","clients","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","photos","ClientList","clients","content","CustomImage","sizes"]}],"namespace":["offices","team","ClientList","clients","content","CustomImage"]},{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["offices","photos","ClientList","clients","content","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["offices","photos","ClientList","clients","content","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["products","_body","ClientList","clients","content","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["products","_body","ClientList","clients","content","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["products","_body","ClientList","clients","content","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["products","_body","ClientList","clients","content","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["products","_body","ClientList","clients","content","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["products","_body","ClientList","clients","content","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["products","_body","ClientList","clients","content","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["products","_body","ClientList","clients","content","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["products","_body","ClientList","clients","content","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["products","_body","ClientList","clients","content","ContentCard","content","CustomImage","sizes"]}],"namespace":["offices","_body","ClientList","clients","content","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["products","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["products","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["products","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["products","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["products","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["offices","_body","ClientList","clients","content","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["products","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["products","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["products","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["products","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["products","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["products","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["products","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","duration"]}],"namespace":["offices","_body","ClientList","clients","content","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["products","_body","ClientList","clients","content","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["products","_body","ClientList","clients","content","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["training","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["training","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["training","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["training","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["training","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["products","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["offices","_body","ClientList","clients","content","ContentCard","content","ColorBlock"]}],"namespace":["offices","photos","ClientList","clients","content","ContentCard","content"]}],"namespace":["offices","team","ClientList","clients","content","ContentCard"]}],"namespace":["offices","publicTransport","ClientList","clients","content"]},{"type":"string","name":"caseStudyUrl","label":"Case study URL","namespace":["offices","publicTransport","ClientList","clients","caseStudyUrl"]},{"type":"object","name":"categories","label":"Categories","list":true,"ui":{},"fields":[{"type":"reference","name":"category","label":"Category","collections":["clientCategories"],"namespace":["offices","team","ClientList","clients","categories","category"]}],"namespace":["offices","publicTransport","ClientList","clients","categories"]}],"namespace":["offices","parking","ClientList","clients"],"searchable":true,"uid":false}],"namespace":["offices","parking","ClientList"]},{"name":"ClientLogos","label":"Client Logos","ui":{"previewSrc":"/images/thumbs/tina/client-logos.jpg"},"fields":[{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","parking","ClientLogos","altText"],"searchable":true,"uid":false}],"namespace":["offices","parking","ClientLogos"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","parking","ColorBlock","title"],"searchable":true,"uid":false},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["offices","parking","ColorBlock","subTitle"],"searchable":true,"uid":false},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","publicTransport","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["offices","publicTransport","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","publicTransport","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["offices","publicTransport","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["offices","publicTransport","ColorBlock","colorRow","caption"]}],"namespace":["offices","parking","ColorBlock","colorRow"],"searchable":true,"uid":false}],"namespace":["offices","parking","ColorBlock"]},{"name":"ColorPalette","label":"Color Palette","ui":{"previewSrc":"/images/thumbs/tina/color-palette.jpg"},"fields":[{"type":"string","label":"Name","name":"name","namespace":["offices","parking","ColorPalette","name"],"searchable":true,"uid":false}],"namespace":["offices","parking","ColorPalette"]},{"name":"Content","label":"Content","ui":{"previewSrc":"/images/thumbs/tina/content.jpg","defaultItem":{"body":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","parking","Content","title"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","team","Content","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","team","Content","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","team","Content","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","team","Content","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","team","Content","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","team","Content","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","team","Content","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","team","Content","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","team","Content","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","team","Content","content","CustomImage","sizes"]}],"namespace":["offices","publicTransport","Content","content","CustomImage"]},{"name":"ClientLogos","label":"Client Logos","ui":{"previewSrc":"/images/thumbs/tina/client-logos.jpg"},"fields":[{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","team","Content","content","ClientLogos","altText"]}],"namespace":["offices","publicTransport","Content","content","ClientLogos"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","team","Content","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","team","Content","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","team","Content","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","team","Content","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","team","Content","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","team","Content","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","team","Content","content","VideoEmbed","duration"]}],"namespace":["offices","publicTransport","Content","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","team","Content","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["offices","team","Content","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","photos","Content","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["offices","photos","Content","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","photos","Content","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["offices","photos","Content","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["offices","photos","Content","content","ColorBlock","colorRow","caption"]}],"namespace":["offices","team","Content","content","ColorBlock","colorRow"]}],"namespace":["offices","publicTransport","Content","content","ColorBlock"]}],"namespace":["offices","parking","Content","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Container Padding","name":"paddingClass","options":["Mobile: No Padding","Mobile: No Top and Horizontal Padding"],"namespace":["offices","parking","Content","paddingClass"],"searchable":true,"uid":false},{"type":"string","label":"Text size","name":"size","options":[{"label":"small","value":"sm"},{"label":"normal","value":"base"},{"label":"large","value":"lg"},{"label":"extra large","value":"xl"},{"label":"2x large","value":"2xl"}],"namespace":["offices","parking","Content","size"],"searchable":true,"uid":false},{"type":"string","label":"Align","name":"align","options":[{"label":"Left","value":"left"},{"label":"Center","value":"center"},{"label":"Right","value":"right"}],"namespace":["offices","parking","Content","align"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["offices","parking","Content","backgroundColor"],"searchable":true,"uid":false}],"namespace":["offices","parking","Content"]},{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["offices","parking","ContentCard","prose"],"searchable":true,"uid":false},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["offices","parking","ContentCard","centerAlignedText"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","team","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","team","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","team","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","team","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","team","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","team","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","team","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","team","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","team","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","team","ContentCard","content","CustomImage","sizes"]}],"namespace":["offices","publicTransport","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["offices","team","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["offices","team","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["offices","team","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["offices","team","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["offices","team","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["offices","publicTransport","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","team","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","team","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","team","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","team","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","team","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","team","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","team","ContentCard","content","VideoEmbed","duration"]}],"namespace":["offices","publicTransport","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","team","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["offices","team","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","photos","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["offices","photos","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","photos","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["offices","photos","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["offices","photos","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["offices","team","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["offices","publicTransport","ContentCard","content","ColorBlock"]}],"namespace":["offices","parking","ContentCard","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["offices","parking","ContentCard"]},{"name":"CustomDownloadButton","label":"Custom Download Button","ui":{"previewSrc":"/images/thumbs/tina/custom-download-button.jpg"},"fields":[{"type":"string","label":"Text","name":"btnText","namespace":["offices","parking","CustomDownloadButton","btnText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"btnLink","namespace":["offices","parking","CustomDownloadButton","btnLink"],"searchable":true,"uid":false}],"namespace":["offices","parking","CustomDownloadButton"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","parking","CustomImage","src"],"searchable":false,"uid":false},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","parking","CustomImage","altText"],"searchable":true,"uid":false},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","parking","CustomImage","alignment"],"searchable":true,"uid":false},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","parking","CustomImage","height"],"searchable":true,"uid":false},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","parking","CustomImage","width"],"searchable":true,"uid":false},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","parking","CustomImage","link"],"searchable":true,"uid":false},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","parking","CustomImage","customClass"],"searchable":true,"uid":false},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","parking","CustomImage","caption"],"searchable":true,"uid":false},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","parking","CustomImage","captionColor"],"searchable":true,"uid":false},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","parking","CustomImage","sizes"],"searchable":true,"uid":false}],"namespace":["offices","parking","CustomImage"]},{"name":"DomainFromQuery","label":"Domain from query","ui":{"previewSrc":"/images/thumbs/tina/domain-from-query.jpg"},"fields":[{"name":"title","label":"Title","type":"string","description":"This is a H1 heading","namespace":["offices","parking","DomainFromQuery","title"],"searchable":true,"uid":false},{"name":"showDomain","label":"Show domain name","type":"boolean","description":"Query param in URL must have key of 'domain'","namespace":["offices","parking","DomainFromQuery","showDomain"],"searchable":true,"uid":false}],"namespace":["offices","parking","DomainFromQuery"]},{"name":"DownloadBlock","label":"Download Block","ui":{"previewSrc":"/images/thumbs/tina/download-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","parking","DownloadBlock","title"],"searchable":true,"uid":false},{"type":"object","label":"Downloads","name":"downloads","ui":{},"list":true,"fields":[{"type":"string","label":"Header","name":"header","namespace":["offices","publicTransport","DownloadBlock","downloads","header"]},{"type":"image","label":"Image","name":"img","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","img","uploadDir"]},"namespace":["offices","publicTransport","DownloadBlock","downloads","img"]},{"type":"string","label":"Image Background","name":"imgBackground","options":["black","grey","white","darkgrey","darkgreen"],"namespace":["offices","publicTransport","DownloadBlock","downloads","imgBackground"]},{"type":"string","label":"First Link Text","name":"firstLinkText","description":"Defaults to PNG","namespace":["offices","publicTransport","DownloadBlock","downloads","firstLinkText"]},{"type":"image","label":"First Link","name":"firstLink","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","firstLink","uploadDir"]},"namespace":["offices","publicTransport","DownloadBlock","downloads","firstLink"]},{"type":"string","label":"Second Link Text","name":"secondLinkText","description":"Defaults to PDF","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","secondLinkText","uploadDir"]},"namespace":["offices","publicTransport","DownloadBlock","downloads","secondLinkText"]},{"type":"image","label":"Second Link","name":"secondLink","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","secondLink","uploadDir"]},"namespace":["offices","publicTransport","DownloadBlock","downloads","secondLink"]}],"namespace":["offices","parking","DownloadBlock","downloads"],"searchable":true,"uid":false},{"type":"boolean","label":"Bottom border","name":"bottomBorder","namespace":["offices","parking","DownloadBlock","bottomBorder"],"searchable":true,"uid":false}],"namespace":["offices","parking","DownloadBlock"]},{"name":"DynamicColumns","label":"Dynamic Column Layout","fields":[{"type":"rich-text","label":"Column text body","name":"colBody","required":true,"namespace":["offices","parking","DynamicColumns","colBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"number","label":"Number of columns","name":"colCount","required":true,"ui":{},"namespace":["offices","parking","DynamicColumns","colCount"],"searchable":true,"uid":false}],"namespace":["offices","parking","DynamicColumns"]},{"name":"EventBooking","label":"Events Booking","ui":{"previewSrc":"/images/thumbs/tina/events-booking.jpg"},"fields":[{"type":"number","label":"Duration (In Days)","name":"eventDurationInDays","required":true,"namespace":["offices","parking","EventBooking","eventDurationInDays"],"searchable":true,"uid":false},{"type":"number","label":"Price","name":"price","required":true,"namespace":["offices","parking","EventBooking","price"],"searchable":true,"uid":false},{"type":"number","label":"Discount Price","name":"discountPrice","namespace":["offices","parking","EventBooking","discountPrice"],"searchable":true,"uid":false},{"type":"string","name":"gstText","label":"Select GST Option","options":["inc GST","+ GST"],"required":true,"namespace":["offices","parking","EventBooking","gstText"],"searchable":true,"uid":false},{"type":"string","label":"Discount Note","name":"discountNote","namespace":["offices","parking","EventBooking","discountNote"],"searchable":true,"uid":false},{"type":"object","label":"Event","name":"eventList","ui":{},"list":true,"fields":[{"type":"string","label":"City","name":"city","namespace":["offices","publicTransport","EventBooking","eventList","city"]},{"type":"datetime","label":"Start Date","name":"date","ui":{},"namespace":["offices","publicTransport","EventBooking","eventList","date"]},{"type":"string","label":"Booking URL","name":"bookingURL","namespace":["offices","publicTransport","EventBooking","eventList","bookingURL"]},{"type":"reference","label":"Location","name":"location","collections":["locations"],"namespace":["offices","publicTransport","EventBooking","eventList","location"]}],"namespace":["offices","parking","EventBooking","eventList"],"searchable":true,"uid":false}],"namespace":["offices","parking","EventBooking"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["offices","team","EventLink","content","Flag","country"]}],"namespace":["offices","publicTransport","EventLink","content","Flag"]}],"namespace":["offices","parking","EventLink","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Link","name":"link","namespace":["offices","parking","EventLink","link"],"searchable":true,"uid":false},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["offices","parking","EventLink","eventThumbnail"],"searchable":false,"uid":false},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["offices","parking","EventLink","thumbnailAlt"],"searchable":true,"uid":false}],"namespace":["offices","parking","EventLink"]},{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["offices","parking","Flag","country"],"searchable":true,"uid":false}],"namespace":["offices","parking","Flag"]},{"name":"FixedColumns","label":"Fixed Column Layout (2 columns)","ui":{"previewSrc":"/images/thumbs/tina/fixed-columns.jpg"},"fields":[{"type":"rich-text","label":"Header Section (Optional)","name":"headerSection","namespace":["offices","parking","FixedColumns","headerSection"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"First column text","name":"firstColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["offices","team","FixedColumns","firstColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["offices","team","FixedColumns","firstColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["offices","photos","FixedColumns","firstColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["offices","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["offices","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["offices","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["offices","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["offices","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["offices","photos","FixedColumns","firstColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["offices","photos","FixedColumns","firstColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["offices","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["products","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["products","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["products","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["products","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["products","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["offices","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["offices","photos","FixedColumns","firstColBody","ContentCard","content","ColorBlock"]}],"namespace":["offices","team","FixedColumns","firstColBody","ContentCard","content"]}],"namespace":["offices","publicTransport","FixedColumns","firstColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","team","FixedColumns","firstColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","team","FixedColumns","firstColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","team","FixedColumns","firstColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","team","FixedColumns","firstColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","team","FixedColumns","firstColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","team","FixedColumns","firstColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","team","FixedColumns","firstColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","team","FixedColumns","firstColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","team","FixedColumns","firstColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","team","FixedColumns","firstColBody","CustomImage","sizes"]}],"namespace":["offices","publicTransport","FixedColumns","firstColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["offices","_body","FixedColumns","firstColBody","EventLink","content","Flag","country"]}],"namespace":["offices","photos","FixedColumns","firstColBody","EventLink","content","Flag"]}],"namespace":["offices","team","FixedColumns","firstColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["offices","team","FixedColumns","firstColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["offices","team","FixedColumns","firstColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["offices","team","FixedColumns","firstColBody","EventLink","thumbnailAlt"]}],"namespace":["offices","publicTransport","FixedColumns","firstColBody","EventLink"]}],"namespace":["offices","parking","FixedColumns","firstColBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"Second column text","name":"secondColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["offices","team","FixedColumns","secondColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["offices","team","FixedColumns","secondColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["offices","photos","FixedColumns","secondColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["offices","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["offices","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["offices","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["offices","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["offices","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["offices","photos","FixedColumns","secondColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["offices","photos","FixedColumns","secondColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["offices","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["products","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["products","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["products","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["products","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["products","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["offices","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["offices","photos","FixedColumns","secondColBody","ContentCard","content","ColorBlock"]}],"namespace":["offices","team","FixedColumns","secondColBody","ContentCard","content"]}],"namespace":["offices","publicTransport","FixedColumns","secondColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","team","FixedColumns","secondColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","team","FixedColumns","secondColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","team","FixedColumns","secondColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","team","FixedColumns","secondColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","team","FixedColumns","secondColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","team","FixedColumns","secondColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","team","FixedColumns","secondColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","team","FixedColumns","secondColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","team","FixedColumns","secondColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","team","FixedColumns","secondColBody","CustomImage","sizes"]}],"namespace":["offices","publicTransport","FixedColumns","secondColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["offices","_body","FixedColumns","secondColBody","EventLink","content","Flag","country"]}],"namespace":["offices","photos","FixedColumns","secondColBody","EventLink","content","Flag"]}],"namespace":["offices","team","FixedColumns","secondColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["offices","team","FixedColumns","secondColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["offices","team","FixedColumns","secondColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["offices","team","FixedColumns","secondColBody","EventLink","thumbnailAlt"]}],"namespace":["offices","publicTransport","FixedColumns","secondColBody","EventLink"]}],"namespace":["offices","parking","FixedColumns","secondColBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["offices","parking","FixedColumns"]},{"name":"FixedTabsLayout","label":"Fixed Tabs Layout","ui":{"previewSrc":"/images/thumbs/tina/fixed-tabs-layout.jpg"},"fields":[{"type":"string","name":"firstTab","label":"First Tab","namespace":["offices","parking","FixedTabsLayout","firstTab"],"searchable":true,"uid":false},{"type":"rich-text","name":"firstHeading","label":"First Heading","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","team","FixedTabsLayout","firstHeading","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","team","FixedTabsLayout","firstHeading","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","team","FixedTabsLayout","firstHeading","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","team","FixedTabsLayout","firstHeading","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","team","FixedTabsLayout","firstHeading","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","team","FixedTabsLayout","firstHeading","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","team","FixedTabsLayout","firstHeading","VideoEmbed","duration"]}],"namespace":["offices","publicTransport","FixedTabsLayout","firstHeading","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["offices","team","FixedTabsLayout","firstHeading","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["offices","team","FixedTabsLayout","firstHeading","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["offices","team","FixedTabsLayout","firstHeading","BookingButton","buttonSubtitle"]}],"namespace":["offices","publicTransport","FixedTabsLayout","firstHeading","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["offices","team","FixedTabsLayout","firstHeading","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["offices","photos","FixedTabsLayout","firstHeading","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["offices","photos","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["offices","photos","FixedTabsLayout","firstHeading","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["offices","photos","FixedTabsLayout","firstHeading","ExpertBlock","expertList","skills"]}],"namespace":["offices","team","FixedTabsLayout","firstHeading","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["offices","photos","FixedTabsLayout","firstHeading","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["offices","photos","FixedTabsLayout","firstHeading","ExpertBlock","link","url"]}],"namespace":["offices","team","FixedTabsLayout","firstHeading","ExpertBlock","link"]}],"namespace":["offices","publicTransport","FixedTabsLayout","firstHeading","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","photos","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["offices","photos","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["offices","photos","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["offices","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["offices","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["offices","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["offices","photos","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["offices","team","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["offices","publicTransport","FixedTabsLayout","firstHeading","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","team","FixedTabsLayout","firstHeading","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","team","FixedTabsLayout","firstHeading","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","team","FixedTabsLayout","firstHeading","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","team","FixedTabsLayout","firstHeading","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","team","FixedTabsLayout","firstHeading","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","team","FixedTabsLayout","firstHeading","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","team","FixedTabsLayout","firstHeading","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","team","FixedTabsLayout","firstHeading","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","team","FixedTabsLayout","firstHeading","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","team","FixedTabsLayout","firstHeading","CustomImage","sizes"]}],"namespace":["offices","publicTransport","FixedTabsLayout","firstHeading","CustomImage"]}],"namespace":["offices","parking","FixedTabsLayout","firstHeading"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","name":"firstBody","label":"First Body","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","team","FixedTabsLayout","firstBody","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","team","FixedTabsLayout","firstBody","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","team","FixedTabsLayout","firstBody","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","team","FixedTabsLayout","firstBody","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","team","FixedTabsLayout","firstBody","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","team","FixedTabsLayout","firstBody","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","team","FixedTabsLayout","firstBody","VideoEmbed","duration"]}],"namespace":["offices","publicTransport","FixedTabsLayout","firstBody","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["offices","team","FixedTabsLayout","firstBody","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["offices","team","FixedTabsLayout","firstBody","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["offices","team","FixedTabsLayout","firstBody","BookingButton","buttonSubtitle"]}],"namespace":["offices","publicTransport","FixedTabsLayout","firstBody","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["offices","team","FixedTabsLayout","firstBody","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["offices","photos","FixedTabsLayout","firstBody","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["offices","photos","FixedTabsLayout","firstBody","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["offices","photos","FixedTabsLayout","firstBody","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["offices","photos","FixedTabsLayout","firstBody","ExpertBlock","expertList","skills"]}],"namespace":["offices","team","FixedTabsLayout","firstBody","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["offices","photos","FixedTabsLayout","firstBody","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["offices","photos","FixedTabsLayout","firstBody","ExpertBlock","link","url"]}],"namespace":["offices","team","FixedTabsLayout","firstBody","ExpertBlock","link"]}],"namespace":["offices","publicTransport","FixedTabsLayout","firstBody","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","photos","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["offices","photos","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["offices","photos","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["offices","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["offices","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["offices","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["offices","photos","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["offices","team","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["offices","publicTransport","FixedTabsLayout","firstBody","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","team","FixedTabsLayout","firstBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","team","FixedTabsLayout","firstBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","team","FixedTabsLayout","firstBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","team","FixedTabsLayout","firstBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","team","FixedTabsLayout","firstBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","team","FixedTabsLayout","firstBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","team","FixedTabsLayout","firstBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","team","FixedTabsLayout","firstBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","team","FixedTabsLayout","firstBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","team","FixedTabsLayout","firstBody","CustomImage","sizes"]}],"namespace":["offices","publicTransport","FixedTabsLayout","firstBody","CustomImage"]}],"namespace":["offices","parking","FixedTabsLayout","firstBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","name":"secondTab","label":"Second Tab","namespace":["offices","parking","FixedTabsLayout","secondTab"],"searchable":true,"uid":false},{"type":"rich-text","name":"secondHeading","label":"Second Heading","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","team","FixedTabsLayout","secondHeading","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","team","FixedTabsLayout","secondHeading","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","team","FixedTabsLayout","secondHeading","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","team","FixedTabsLayout","secondHeading","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","team","FixedTabsLayout","secondHeading","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","team","FixedTabsLayout","secondHeading","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","team","FixedTabsLayout","secondHeading","VideoEmbed","duration"]}],"namespace":["offices","publicTransport","FixedTabsLayout","secondHeading","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["offices","team","FixedTabsLayout","secondHeading","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["offices","team","FixedTabsLayout","secondHeading","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["offices","team","FixedTabsLayout","secondHeading","BookingButton","buttonSubtitle"]}],"namespace":["offices","publicTransport","FixedTabsLayout","secondHeading","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["offices","team","FixedTabsLayout","secondHeading","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["offices","photos","FixedTabsLayout","secondHeading","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["offices","photos","FixedTabsLayout","secondHeading","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["offices","photos","FixedTabsLayout","secondHeading","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["offices","photos","FixedTabsLayout","secondHeading","ExpertBlock","expertList","skills"]}],"namespace":["offices","team","FixedTabsLayout","secondHeading","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["offices","photos","FixedTabsLayout","secondHeading","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["offices","photos","FixedTabsLayout","secondHeading","ExpertBlock","link","url"]}],"namespace":["offices","team","FixedTabsLayout","secondHeading","ExpertBlock","link"]}],"namespace":["offices","publicTransport","FixedTabsLayout","secondHeading","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","photos","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["offices","photos","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["offices","photos","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["offices","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["offices","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["offices","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["offices","photos","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["offices","team","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["offices","publicTransport","FixedTabsLayout","secondHeading","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","team","FixedTabsLayout","secondHeading","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","team","FixedTabsLayout","secondHeading","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","team","FixedTabsLayout","secondHeading","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","team","FixedTabsLayout","secondHeading","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","team","FixedTabsLayout","secondHeading","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","team","FixedTabsLayout","secondHeading","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","team","FixedTabsLayout","secondHeading","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","team","FixedTabsLayout","secondHeading","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","team","FixedTabsLayout","secondHeading","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","team","FixedTabsLayout","secondHeading","CustomImage","sizes"]}],"namespace":["offices","publicTransport","FixedTabsLayout","secondHeading","CustomImage"]}],"namespace":["offices","parking","FixedTabsLayout","secondHeading"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","name":"secondBody","label":"Second Body","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","team","FixedTabsLayout","secondBody","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","team","FixedTabsLayout","secondBody","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","team","FixedTabsLayout","secondBody","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","team","FixedTabsLayout","secondBody","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","team","FixedTabsLayout","secondBody","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","team","FixedTabsLayout","secondBody","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","team","FixedTabsLayout","secondBody","VideoEmbed","duration"]}],"namespace":["offices","publicTransport","FixedTabsLayout","secondBody","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["offices","team","FixedTabsLayout","secondBody","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["offices","team","FixedTabsLayout","secondBody","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["offices","team","FixedTabsLayout","secondBody","BookingButton","buttonSubtitle"]}],"namespace":["offices","publicTransport","FixedTabsLayout","secondBody","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["offices","team","FixedTabsLayout","secondBody","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["offices","photos","FixedTabsLayout","secondBody","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["offices","photos","FixedTabsLayout","secondBody","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["offices","photos","FixedTabsLayout","secondBody","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["offices","photos","FixedTabsLayout","secondBody","ExpertBlock","expertList","skills"]}],"namespace":["offices","team","FixedTabsLayout","secondBody","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["offices","photos","FixedTabsLayout","secondBody","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["offices","photos","FixedTabsLayout","secondBody","ExpertBlock","link","url"]}],"namespace":["offices","team","FixedTabsLayout","secondBody","ExpertBlock","link"]}],"namespace":["offices","publicTransport","FixedTabsLayout","secondBody","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","photos","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["offices","photos","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["offices","photos","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["offices","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["offices","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["offices","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["offices","photos","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["offices","team","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["offices","publicTransport","FixedTabsLayout","secondBody","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","team","FixedTabsLayout","secondBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","team","FixedTabsLayout","secondBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","team","FixedTabsLayout","secondBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","team","FixedTabsLayout","secondBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","team","FixedTabsLayout","secondBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","team","FixedTabsLayout","secondBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","team","FixedTabsLayout","secondBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","team","FixedTabsLayout","secondBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","team","FixedTabsLayout","secondBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","team","FixedTabsLayout","secondBody","CustomImage","sizes"]}],"namespace":["offices","publicTransport","FixedTabsLayout","secondBody","CustomImage"]}],"namespace":["offices","parking","FixedTabsLayout","secondBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["offices","parking","FixedTabsLayout"]},{"label":"Google Maps","name":"GoogleMaps","ui":{"previewSrc":"/images/thumbs/tina/google-maps.jpg"},"fields":[{"type":"string","label":"URL","name":"embedUrl","required":true,"namespace":["offices","parking","GoogleMaps","embedUrl"],"searchable":true,"uid":false},{"type":"string","label":"Width","name":"embedWidth","namespace":["offices","parking","GoogleMaps","embedWidth"],"searchable":true,"uid":false},{"type":"string","label":"Height","name":"embedHeight","namespace":["offices","parking","GoogleMaps","embedHeight"],"searchable":true,"uid":false}],"namespace":["offices","parking","GoogleMaps"]},{"label":"Grid Layout","name":"GridLayout","ui":{"previewSrc":"/images/thumbs/tina/grid-layout.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","parking","GridLayout","title"],"searchable":true,"uid":false},{"type":"object","list":true,"label":"Grid Items","name":"grids","ui":{},"fields":[{"type":"string","label":"Grid Title","name":"gridTitle","namespace":["offices","publicTransport","GridLayout","grids","gridTitle"]},{"type":"boolean","label":"Show Grid Title","name":"showGridTitle","namespace":["offices","publicTransport","GridLayout","grids","showGridTitle"]},{"type":"boolean","label":"Centered Grid Title","name":"centeredGridTitle","namespace":["offices","publicTransport","GridLayout","grids","centeredGridTitle"]},{"type":"boolean","label":"Show Header Divider","name":"showHeaderDivider","namespace":["offices","publicTransport","GridLayout","grids","showHeaderDivider"]},{"type":"boolean","label":"Offset Grid Start","name":"offsetGridStart","namespace":["offices","publicTransport","GridLayout","grids","offsetGridStart"]},{"type":"object","label":"Blocks","name":"blocks","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","team","GridLayout","grids","blocks","title"]},{"type":"boolean","label":"Show Title","name":"showTitle","namespace":["offices","team","GridLayout","grids","blocks","showTitle"]},{"type":"image","label":"Image","name":"image","uploadDir":{"namespace":["page","beforeBody","GridLayout","grids","blocks","image","uploadDir"]},"namespace":["offices","team","GridLayout","grids","blocks","image"]},{"type":"image","label":"Related Image","name":"relatedImage","uploadDir":{"namespace":["page","beforeBody","GridLayout","grids","blocks","relatedImage","uploadDir"]},"namespace":["offices","team","GridLayout","grids","blocks","relatedImage"]},{"type":"rich-text","name":"linkContent","label":"Link Content","templates":[{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["offices","_body","GridLayout","grids","blocks","linkContent","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["offices","_body","GridLayout","grids","blocks","linkContent","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["offices","_body","GridLayout","grids","blocks","linkContent","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["offices","_body","GridLayout","grids","blocks","linkContent","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["offices","_body","GridLayout","grids","blocks","linkContent","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["offices","_body","GridLayout","grids","blocks","linkContent","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["offices","_body","GridLayout","grids","blocks","linkContent","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["offices","_body","GridLayout","grids","blocks","linkContent","UtilityButton","openInNewTab"]}],"namespace":["offices","photos","GridLayout","grids","blocks","linkContent","UtilityButton"]}],"namespace":["offices","team","GridLayout","grids","blocks","linkContent"]}],"namespace":["offices","publicTransport","GridLayout","grids","blocks"]}],"namespace":["offices","parking","GridLayout","grids"],"searchable":true,"uid":false}],"namespace":["offices","parking","GridLayout"]},{"name":"Hero","label":"Hero","ui":{"previewSrc":"/blocks/hero.png","defaultItem":{"tagline":"Here's some text above the other text","headline":"This Big Text is Totally Awesome","text":"Phasellus scelerisque, libero eu finibus rutrum, risus risus accumsan libero, nec molestie urna dui a leo."}},"fields":[{"type":"string","label":"Tagline","name":"tagline","namespace":["offices","parking","Hero","tagline"],"searchable":true,"uid":false},{"type":"string","label":"Headline","name":"headline","namespace":["offices","parking","Hero","headline"],"searchable":true,"uid":false},{"label":"Text","name":"text","type":"rich-text","namespace":["offices","parking","Hero","text"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"label":"Actions","name":"actions","type":"object","list":true,"ui":{"defaultItem":{"label":"Action Label","type":"button","icon":true,"link":"/"}},"fields":[{"label":"Label","name":"label","type":"string","namespace":["offices","publicTransport","Hero","actions","label"]},{"label":"Type","name":"type","type":"string","options":[{"label":"Button","value":"button"},{"label":"Link","value":"link"}],"namespace":["offices","publicTransport","Hero","actions","type"]},{"label":"Icon","name":"icon","type":"boolean","namespace":["offices","publicTransport","Hero","actions","icon"]},{"label":"Link","name":"link","type":"string","namespace":["offices","publicTransport","Hero","actions","link"]}],"namespace":["offices","parking","Hero","actions"],"searchable":true,"uid":false},{"type":"object","label":"Image","name":"image","fields":[{"name":"src","label":"Image Source","type":"image","namespace":["offices","publicTransport","Hero","image","src"]},{"name":"alt","label":"Alt Text","type":"string","namespace":["offices","publicTransport","Hero","image","alt"]}],"namespace":["offices","parking","Hero","image"],"searchable":true,"uid":false},{"type":"string","label":"Color","name":"color","options":[{"label":"Default","value":"default"},{"label":"Tint","value":"tint"},{"label":"Primary","value":"primary"}],"namespace":["offices","parking","Hero","color"],"searchable":true,"uid":false}],"namespace":["offices","parking","Hero"]},{"name":"HorizontalCard","label":"Horizontal Card","ui":{"previewSrc":"/images/thumbs/tina/horizontal-card.jpg"},"fields":[{"type":"object","label":"Cards","name":"cardList","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","publicTransport","HorizontalCard","cardList","title"]},{"type":"rich-text","label":"Content","name":"content","namespace":["offices","publicTransport","HorizontalCard","cardList","content"]},{"type":"image","label":"Thumbnail","name":"thumbnail","uploadDir":{"namespace":["page","beforeBody","HorizontalCard","cardList","thumbnail","uploadDir"]},"namespace":["offices","publicTransport","HorizontalCard","cardList","thumbnail"]},{"type":"string","label":"Link","name":"link","namespace":["offices","publicTransport","HorizontalCard","cardList","link"]}],"namespace":["offices","parking","HorizontalCard","cardList"],"searchable":true,"uid":false},{"type":"object","label":"Button","name":"button","fields":[{"type":"string","label":"Text","name":"text","namespace":["offices","publicTransport","HorizontalCard","button","text"]},{"type":"string","label":"Link","name":"link","namespace":["offices","publicTransport","HorizontalCard","button","link"]}],"namespace":["offices","parking","HorizontalCard","button"],"searchable":true,"uid":false}],"namespace":["offices","parking","HorizontalCard"]},{"name":"InternalCarousel","label":"Internal Carousel","ui":{"previewSrc":"/images/thumbs/tina/internal-carousel.jpg"},"fields":[{"label":"Images","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Image description"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["offices","publicTransport","InternalCarousel","items","label"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","InternalCarousel","items","imgSrc","uploadDir"]},"namespace":["offices","publicTransport","InternalCarousel","items","imgSrc"]}],"namespace":["offices","parking","InternalCarousel","items"],"searchable":true,"uid":false},{"type":"string","label":"Header","name":"header","namespace":["offices","parking","InternalCarousel","header"],"searchable":true,"uid":false},{"type":"rich-text","label":"Text","name":"paragraph","isBody":false,"namespace":["offices","parking","InternalCarousel","paragraph"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Website","name":"website","namespace":["offices","parking","InternalCarousel","website"],"searchable":true,"uid":false},{"type":"object","label":"Technologies","name":"technologies","list":true,"ui":{},"fields":[{"type":"string","label":"Name","name":"name","namespace":["offices","publicTransport","InternalCarousel","technologies","name"]}],"namespace":["offices","parking","InternalCarousel","technologies"],"searchable":true,"uid":false},{"type":"string","label":"Case Study","name":"caseStudyUrl","namespace":["offices","parking","InternalCarousel","caseStudyUrl"],"searchable":true,"uid":false},{"type":"string","label":"Video URL","name":"videoUrl","namespace":["offices","parking","InternalCarousel","videoUrl"],"searchable":true,"uid":false}],"namespace":["offices","parking","InternalCarousel"]},{"label":"Join As Presenter","name":"joinAsPresenter","fields":[{"label":"Learn More Link","name":"link","type":"string","namespace":["offices","parking","joinAsPresenter","link"],"searchable":true,"uid":false},{"label":"Image","name":"img","type":"image","namespace":["offices","parking","joinAsPresenter","img"],"searchable":false,"uid":false}],"namespace":["offices","parking","joinAsPresenter"]},{"label":"Join Github","name":"joinGithub","ui":{"previewSrc":"/images/thumbs/tina/join-github.jpg"},"fields":[{"label":"Title","name":"title","type":"string","namespace":["offices","parking","joinGithub","title"],"searchable":true,"uid":false},{"label":"Join Github Link","name":"link","type":"string","namespace":["offices","parking","joinGithub","link"],"searchable":true,"uid":false}],"namespace":["offices","parking","joinGithub"]},{"name":"JotFormEmbed","label":"JotForm Embed","ui":{"previewSrc":"/images/thumbs/tina/jotform-embed.jpg"},"fields":[{"type":"string","name":"jotFormId","label":"JotForm Id","required":true,"namespace":["offices","parking","JotFormEmbed","jotFormId"],"searchable":true,"uid":false},{"type":"string","label":"Button Text","name":"buttonText","namespace":["offices","parking","JotFormEmbed","buttonText"],"searchable":true,"uid":false},{"type":"string","name":"containerClass","label":"Container Class","namespace":["offices","parking","JotFormEmbed","containerClass"],"searchable":true,"uid":false},{"type":"string","label":"Button Class","name":"buttonClass","namespace":["offices","parking","JotFormEmbed","buttonClass"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","namespace":["offices","parking","JotFormEmbed","animated"],"searchable":true,"uid":false}],"namespace":["offices","parking","JotFormEmbed"]},{"name":"LatestTech","label":"Latest Tech","ui":{"previewSrc":"/images/thumbs/tina/latest-tech.jpg"},"fields":[{"type":"reference","description":"Select a config file including a set of badges","collections":["userGroupGlobal"],"label":"Badges","name":"badges","namespace":["offices","parking","LatestTech","badges"],"searchable":true,"uid":false}],"namespace":["offices","parking","LatestTech"]},{"name":"LocationBlock","label":"Locations","ui":{"previewSrc":"/images/thumbs/tina/locations.jpg"},"fields":[{"type":"string","name":"title","label":"Title","namespace":["offices","parking","LocationBlock","title"],"searchable":true,"uid":false},{"type":"object","label":"Location List","name":"locationList","list":true,"ui":{},"fields":[{"type":"reference","collections":["locations"],"label":"Location","name":"location","namespace":["offices","publicTransport","LocationBlock","locationList","location"]}],"namespace":["offices","parking","LocationBlock","locationList"],"searchable":true,"uid":false},{"type":"object","name":"chapelWebsite","label":"Chapel Website","fields":[{"type":"string","name":"title","label":"Text","namespace":["offices","publicTransport","LocationBlock","chapelWebsite","title"]},{"type":"string","name":"URL","label":"URL","namespace":["offices","publicTransport","LocationBlock","chapelWebsite","URL"]}],"namespace":["offices","parking","LocationBlock","chapelWebsite"],"searchable":true,"uid":false}],"namespace":["offices","parking","LocationBlock"]},{"name":"NewslettersTable","label":"Newsletters Table","ui":{"previewSrc":"/images/thumbs/tina/newsletters-table.jpg"},"fields":[{"type":"string","label":"Header text","name":"headerText","namespace":["offices","parking","NewslettersTable","headerText"],"searchable":true,"uid":false}],"namespace":["offices","parking","NewslettersTable"]},{"label":"Organizer","name":"organizer","fields":[{"type":"image","label":"Profile Image","name":"profileImg","namespace":["offices","parking","organizer","profileImg"],"searchable":false,"uid":false},{"type":"string","label":"Profile Link","name":"profileLink","namespace":["offices","parking","organizer","profileLink"],"searchable":true,"uid":false},{"type":"string","label":"Name","name":"name","namespace":["offices","parking","organizer","name"],"searchable":true,"uid":false},{"type":"string","label":"Position","name":"position","namespace":["offices","parking","organizer","position"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","namespace":["offices","parking","organizer","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["offices","parking","organizer"]},{"label":"Payment Block","name":"paymentBlock","ui":{"previewSrc":"/images/thumbs/tina/payment-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","parking","paymentBlock","title"],"searchable":true,"uid":false},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["offices","parking","paymentBlock","subTitle"],"searchable":true,"uid":false},{"type":"reference","label":"Payment Links","name":"payments","collections":["paymentDetails"],"namespace":["offices","parking","paymentBlock","payments"],"searchable":true,"uid":false},{"type":"rich-text","label":"Footer","name":"footer","namespace":["offices","parking","paymentBlock","footer"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"image","label":"Credit Cards Image","name":"creditImgSrc","namespace":["offices","parking","paymentBlock","creditImgSrc"],"searchable":false,"uid":false},{"type":"string","label":"Alt Text","name":"altTxt","namespace":["offices","parking","paymentBlock","altTxt"],"searchable":true,"uid":false}],"namespace":["offices","parking","paymentBlock"]},{"name":"PresenterBlock","label":"Presenters","ui":{"previewSrc":"/images/thumbs/tina/presenters.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["offices","parking","PresenterBlock","header"],"searchable":true,"uid":false},{"type":"object","name":"presenterList","label":"Presenters","list":true,"ui":{},"fields":[{"type":"reference","name":"presenter","label":"Presenters","collections":["presenter"],"namespace":["offices","publicTransport","PresenterBlock","presenterList","presenter"]}],"namespace":["offices","parking","PresenterBlock","presenterList"],"searchable":true,"uid":false},{"type":"object","label":"Other Events","name":"otherEvent","fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","publicTransport","PresenterBlock","otherEvent","title"]},{"type":"string","label":"URL","name":"eventURL","namespace":["offices","publicTransport","PresenterBlock","otherEvent","eventURL"]}],"namespace":["offices","parking","PresenterBlock","otherEvent"],"searchable":true,"uid":false}],"namespace":["offices","parking","PresenterBlock"]},{"label":"Recurring Event","name":"RecurringEvent","ui":{"previewSrc":"/images/thumbs/tina/recurring-event.jpg"},"fields":[{"type":"string","label":"Apply Link Redirect","name":"applyLinkRedirect","namespace":["offices","parking","RecurringEvent","applyLinkRedirect"],"searchable":true,"uid":false},{"type":"string","label":"Day","name":"day","options":[{"label":"Monday","value":"monday"},{"label":"Tuesday","value":"tuesday"},{"label":"Wednesday","value":"wednesday"},{"label":"Thursday","value":"thursday"},{"label":"Friday","value":"friday"},{"label":"Saturday","value":"saturday"},{"label":"Sunday","value":"sunday"}],"required":true,"namespace":["offices","parking","RecurringEvent","day"],"searchable":true,"uid":false}],"namespace":["offices","parking","RecurringEvent"]},{"name":"SectionHeader","label":"Section Header","ui":{"previewSrc":"/images/thumbs/tina/section-header.jpg"},"fields":[{"type":"string","label":"Header Text","name":"headerText","namespace":["offices","parking","SectionHeader","headerText"],"searchable":true,"uid":false}],"namespace":["offices","parking","SectionHeader"]},{"name":"ServiceCards","label":"Service Cards","ui":{"previewSrc":"/images/thumbs/tina/services-cards.jpg"},"fields":[{"type":"string","label":"Big Cards Label","name":"bigCardsLabel","namespace":["offices","parking","ServiceCards","bigCardsLabel"],"searchable":true,"uid":false},{"label":"Big Cards","name":"bigCards","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","publicTransport","ServiceCards","bigCards","title"]},{"type":"string","label":"Description","component":"textarea","name":"description","namespace":["offices","publicTransport","ServiceCards","bigCards","description"]},{"type":"string","label":"URL","name":"link","namespace":["offices","publicTransport","ServiceCards","bigCards","link"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Red","value":"red"},{"label":"Light Gray","value":"lightgray"},{"label":"Medium Gray","value":"mediumgray"},{"label":"Dark Gray","value":"darkgray"}],"namespace":["offices","publicTransport","ServiceCards","bigCards","color"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","ServiceCards","bigCards","imgSrc","uploadDir"]},"namespace":["offices","publicTransport","ServiceCards","bigCards","imgSrc"]}],"namespace":["offices","parking","ServiceCards","bigCards"],"searchable":true,"uid":false},{"type":"string","label":"Small Cards Label","name":"smallCardsLabel","namespace":["offices","parking","ServiceCards","smallCardsLabel"],"searchable":true,"uid":false},{"label":"Small Cards","name":"smallCards","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","publicTransport","ServiceCards","smallCards","title"]},{"type":"string","label":"URL","name":"link","namespace":["offices","publicTransport","ServiceCards","smallCards","link"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Red","value":"red"},{"label":"Light Gray","value":"lightgray"},{"label":"Medium Gray","value":"mediumgray"},{"label":"Dark Gray","value":"darkgray"}],"namespace":["offices","publicTransport","ServiceCards","smallCards","color"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","ServiceCards","smallCards","imgSrc","uploadDir"]},"namespace":["offices","publicTransport","ServiceCards","smallCards","imgSrc"]},{"type":"boolean","label":"External Page","description":"Select this if the link is not part of the website. This includes SSW.Rules, and SSW.People links","name":"isExternal","namespace":["offices","publicTransport","ServiceCards","smallCards","isExternal"]}],"namespace":["offices","parking","ServiceCards","smallCards"],"searchable":true,"uid":false},{"label":"Links","name":"links","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["offices","publicTransport","ServiceCards","links","label"]},{"type":"string","label":"URL","name":"link","namespace":["offices","publicTransport","ServiceCards","links","link"]}],"namespace":["offices","parking","ServiceCards","links"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["offices","parking","ServiceCards","backgroundColor"],"searchable":true,"uid":false}],"namespace":["offices","parking","ServiceCards"]},{"label":"Table Layout","name":"TableLayout","ui":{"previewSrc":"/images/thumbs/tina/table-layout.jpg"},"fields":[{"label":"Table Style","name":"tableStyle","type":"string","options":["none","basicBorder","styled","benefits"],"namespace":["offices","parking","TableLayout","tableStyle"],"searchable":true,"uid":false},{"label":"First column bolded + left aligned","name":"firstColBold","type":"boolean","required":false,"namespace":["offices","parking","TableLayout","firstColBold"],"searchable":true,"uid":false},{"type":"string","label":"Table Headers","name":"headers","list":true,"namespace":["offices","parking","TableLayout","headers"],"searchable":true,"uid":false},{"type":"object","label":"Rows","name":"rows","list":true,"fields":[{"type":"object","label":"Cells","name":"cells","list":true,"fields":[{"type":"string","label":"Value","name":"cellValue","required":true,"component":{"namespace":["page","beforeBody","TableLayout","rows","cells","cellValue",""]},"namespace":["offices","team","TableLayout","rows","cells","cellValue"]}],"ui":{},"namespace":["offices","publicTransport","TableLayout","rows","cells"]},{"type":"boolean","label":"Is Heading","name":"isHeader","required":false,"namespace":["offices","publicTransport","TableLayout","rows","isHeader"]}],"ui":{},"namespace":["offices","parking","TableLayout","rows"],"searchable":true,"uid":false}],"namespace":["offices","parking","TableLayout"]},{"name":"TestimonialsList","label":"Testimonials List","ui":{"previewSrc":"/images/thumbs/tina/testimonials.jpg"},"fields":[{"type":"object","label":"Exclude Categories","name":"excludedCategories","ui":{},"list":true,"fields":[{"type":"reference","label":"Category Name","name":"categoryName","collections":["testimonialCategories"],"namespace":["offices","publicTransport","TestimonialsList","excludedCategories","categoryName"]}],"namespace":["offices","parking","TestimonialsList","excludedCategories"],"searchable":true,"uid":false}],"namespace":["offices","parking","TestimonialsList"]},{"label":"Training Information","name":"TrainingInformation","ui":{"previewSrc":"/images/thumbs/tina/training-information.jpg"},"fields":[{"type":"object","label":"Training Information Items","name":"trainingInformationItems","list":true,"fields":[{"type":"string","label":"Header","name":"header","namespace":["offices","publicTransport","TrainingInformation","trainingInformationItems","header"]},{"type":"rich-text","label":"Body","name":"body","templates":[{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["offices","photos","TrainingInformation","trainingInformationItems","body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["offices","photos","TrainingInformation","trainingInformationItems","body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["offices","photos","TrainingInformation","trainingInformationItems","body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["offices","photos","TrainingInformation","trainingInformationItems","body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["offices","photos","TrainingInformation","trainingInformationItems","body","VerticalListItem","afterBody"]}],"namespace":["offices","team","TrainingInformation","trainingInformationItems","body","VerticalListItem"]},{"label":"Recurring Event","name":"RecurringEvent","ui":{"previewSrc":"/images/thumbs/tina/recurring-event.jpg"},"fields":[{"type":"string","label":"Apply Link Redirect","name":"applyLinkRedirect","namespace":["offices","photos","TrainingInformation","trainingInformationItems","body","RecurringEvent","applyLinkRedirect"]},{"type":"string","label":"Day","name":"day","options":[{"label":"Monday","value":"monday"},{"label":"Tuesday","value":"tuesday"},{"label":"Wednesday","value":"wednesday"},{"label":"Thursday","value":"thursday"},{"label":"Friday","value":"friday"},{"label":"Saturday","value":"saturday"},{"label":"Sunday","value":"sunday"}],"required":true,"namespace":["offices","photos","TrainingInformation","trainingInformationItems","body","RecurringEvent","day"]}],"namespace":["offices","team","TrainingInformation","trainingInformationItems","body","RecurringEvent"]}],"namespace":["offices","publicTransport","TrainingInformation","trainingInformationItems","body"]}],"namespace":["offices","parking","TrainingInformation","trainingInformationItems"],"searchable":true,"uid":false}],"namespace":["offices","parking","TrainingInformation"]},{"label":"Training Learning Outcomes","name":"TrainingLearningOutcome","ui":{"previewSrc":"/images/thumbs/tina/training-learning-outcomes.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["offices","parking","TrainingLearningOutcome","header"],"searchable":true,"uid":false},{"type":"object","label":"List Items","name":"listItems","list":true,"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","publicTransport","TrainingLearningOutcome","listItems","title"]},{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["offices","publicTransport","TrainingLearningOutcome","listItems","content"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","TrainingLearningOutcome","listItems","icon","uploadDir"]},"namespace":["offices","publicTransport","TrainingLearningOutcome","listItems","icon"]}],"namespace":["offices","parking","TrainingLearningOutcome","listItems"],"searchable":true,"uid":false}],"namespace":["offices","parking","TrainingLearningOutcome"]},{"label":"Tweet Embed","name":"TweetEmbed","ui":{"previewSrc":"/images/thumbs/tina/tweet-embed.jpg"},"fields":[{"type":"string","name":"url","label":"Tweet URL","required":true,"namespace":["offices","parking","TweetEmbed","url"],"searchable":true,"uid":false}],"namespace":["offices","parking","TweetEmbed"]},{"name":"UpcomingEvents","label":"Upcoming Events","ui":{"previewSrc":"/images/thumbs/tina/upcoming-events.jpg","defaultItem":{"title":"Upcoming Events","numberOfEvents":30}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","parking","UpcomingEvents","title"],"searchable":true,"uid":false},{"type":"number","label":"Number of Events","name":"numberOfEvents","namespace":["offices","parking","UpcomingEvents","numberOfEvents"],"searchable":true,"uid":false}],"namespace":["offices","parking","UpcomingEvents"]},{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["offices","parking","UtilityButton","buttonText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"link","required":false,"namespace":["offices","parking","UtilityButton","link"],"searchable":true,"uid":false},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["offices","parking","UtilityButton","size"],"searchable":true,"uid":false},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["offices","parking","UtilityButton","btnIcon"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["offices","parking","UtilityButton","animated"],"searchable":true,"uid":false},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["offices","parking","UtilityButton","uncentered"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["offices","parking","UtilityButton","removeTopMargin"],"searchable":true,"uid":false},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["offices","parking","UtilityButton","openInNewTab"],"searchable":true,"uid":false}],"namespace":["offices","parking","UtilityButton"]},{"name":"VerticalImageLayout","label":"Vertical Image Layout","fields":[{"type":"image","label":"Image","name":"imageSrc","uploadDir":{"namespace":["page","beforeBody","VerticalImageLayout","imageSrc","uploadDir"]},"namespace":["offices","parking","VerticalImageLayout","imageSrc"],"searchable":false,"uid":false},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","parking","VerticalImageLayout","altText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"imageLink","namespace":["offices","parking","VerticalImageLayout","imageLink"],"searchable":true,"uid":false},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","parking","VerticalImageLayout","height"],"searchable":true,"uid":false},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","parking","VerticalImageLayout","width"],"searchable":true,"uid":false},{"type":"rich-text","label":"Message","name":"message","required":true,"namespace":["offices","parking","VerticalImageLayout","message"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","parking","VerticalImageLayout","sizes"],"searchable":true,"uid":false}],"namespace":["offices","parking","VerticalImageLayout"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["offices","parking","VerticalListItem","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"number","label":"Index number","name":"index","namespace":["offices","parking","VerticalListItem","index"],"searchable":true,"uid":false},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["offices","parking","VerticalListItem","icon"],"searchable":false,"uid":false},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["offices","parking","VerticalListItem","iconScale"],"searchable":true,"uid":false},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["offices","parking","VerticalListItem","afterBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["offices","parking","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","parking","VideoEmbed","url"],"searchable":true,"uid":false},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","parking","VideoEmbed","videoWidth"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","parking","VideoEmbed","removeMargin"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","parking","VideoEmbed","uncentre"],"searchable":true,"uid":false},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","parking","VideoEmbed","overflow"],"searchable":true,"uid":false},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","parking","VideoEmbed","caption"],"searchable":true,"uid":false},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","parking","VideoEmbed","duration"],"searchable":true,"uid":false}],"namespace":["offices","parking","VideoEmbed"]},{"name":"InlineJotForm","label":"In-line JotForm","ui":{"previewSrc":"/images/thumbs/tina/inline-jot-form.jpg"},"fields":[{"type":"string","name":"title","label":"Title","description":"Optional title for JotForm","namespace":["offices","parking","InlineJotForm","title"],"searchable":true,"uid":false},{"type":"string","name":"jotFormId","label":"JotForm ID","required":true,"namespace":["offices","parking","InlineJotForm","jotFormId"],"searchable":true,"uid":false},{"type":"string","name":"additionalClasses","label":"Additional classnames","description":"Optional styling for iframe element only","namespace":["offices","parking","InlineJotForm","additionalClasses"],"searchable":true,"uid":false}],"namespace":["offices","parking","InlineJotForm"]}],"namespace":["offices","parking"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"Public Transport","name":"publicTransport","templates":[{"name":"AboutUs","label":"About Us","ui":{"previewSrc":"/images/thumbs/tina/about-us.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["offices","publicTransport","AboutUs","backgroundColor"],"searchable":true,"uid":false},{"type":"boolean","label":"Show Map","name":"showMap","required":false,"namespace":["offices","publicTransport","AboutUs","showMap"],"searchable":true,"uid":false}],"namespace":["offices","publicTransport","AboutUs"]},{"label":"Agenda","name":"Agenda","ui":{"previewSrc":"/images/thumbs/tina/agenda.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["offices","publicTransport","Agenda","header"],"searchable":true,"uid":false},{"type":"string","label":"Header Color","name":"textColor","options":[{"label":"Red","value":"red"},{"label":"Gray","value":"gray"},{"label":"Default","value":"default"}],"namespace":["offices","publicTransport","Agenda","textColor"],"searchable":true,"uid":false},{"type":"object","label":"Agenda Items","name":"agendaItemList","ui":{},"list":true,"fields":[{"type":"string","label":"Placeholder Text","name":"placeholder","namespace":["offices","team","Agenda","agendaItemList","placeholder"]},{"type":"rich-text","label":"Body","name":"body","templates":[{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["offices","_body","Agenda","agendaItemList","body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["offices","_body","Agenda","agendaItemList","body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["offices","_body","Agenda","agendaItemList","body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["offices","_body","Agenda","agendaItemList","body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["offices","_body","Agenda","agendaItemList","body","VerticalListItem","afterBody"]}],"namespace":["offices","photos","Agenda","agendaItemList","body","VerticalListItem"]}],"namespace":["offices","team","Agenda","agendaItemList","body"]}],"namespace":["offices","publicTransport","Agenda","agendaItemList"],"searchable":true,"uid":false}],"namespace":["offices","publicTransport","Agenda"]},{"label":"Agreement Form","name":"AgreementForm","ui":{"previewSrc":"/images/thumbs/tina/agreement-form.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["offices","publicTransport","AgreementForm","backgroundColor"],"searchable":true,"uid":false},{"type":"object","label":"Form fields","name":"fields","list":true,"fields":[{"type":"string","label":"ID","name":"id","required":true,"namespace":["offices","team","AgreementForm","fields","id"]},{"type":"string","label":"Label","name":"label","required":true,"namespace":["offices","team","AgreementForm","fields","label"]},{"type":"string","label":"Placeholder","name":"placeholder","namespace":["offices","team","AgreementForm","fields","placeholder"]},{"type":"boolean","label":"Resizeable","name":"resizeable","required":true,"namespace":["offices","team","AgreementForm","fields","resizeable"]}],"namespace":["offices","publicTransport","AgreementForm","fields"],"searchable":true,"uid":false}],"namespace":["offices","publicTransport","AgreementForm"]},{"label":"Interest Form","name":"InterestForm","ui":{"previewSrc":"/images/thumbs/tina/interest-form.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["offices","publicTransport","InterestForm","buttonText"],"searchable":true,"uid":false}],"namespace":["offices","publicTransport","InterestForm"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["offices","publicTransport","BookingButton","buttonText"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","namespace":["offices","publicTransport","BookingButton","animated"],"searchable":true,"uid":false},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["offices","publicTransport","BookingButton","buttonSubtitle"],"searchable":true,"uid":false}],"namespace":["offices","publicTransport","BookingButton"]},{"name":"BuiltOnAzure","label":"Built on Azure","ui":{"previewSrc":"/images/thumbs/tina/built-on-azure.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["offices","publicTransport","BuiltOnAzure","backgroundColor"],"searchable":true,"uid":false}],"namespace":["offices","publicTransport","BuiltOnAzure"]},{"name":"Carousel","label":"Carousel","ui":{"previewSrc":"/images/thumbs/tina/carousel.jpg"},"fields":[{"label":"Items","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Item description","link":"/","openIn":"sameWindow"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["offices","team","Carousel","items","label"]},{"type":"string","label":"URL","name":"link","description":"If link contains ssw.com.au, you can skip the full URL and just use the path. e.g. /services","namespace":["offices","team","Carousel","items","link"]},{"type":"string","label":"Open in","name":"openIn","description":"If it is external link, please select 'New window' option.","options":[{"label":"Same window","value":"sameWindow"},{"label":"Modal","value":"modal"},{"label":"New window","value":"newWindow"}],"namespace":["offices","team","Carousel","items","openIn"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","Carousel","items","imgSrc","uploadDir"]},"namespace":["offices","team","Carousel","items","imgSrc"]}],"namespace":["offices","publicTransport","Carousel","items"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["offices","publicTransport","Carousel","backgroundColor"],"searchable":true,"uid":false},{"type":"number","label":"Delay (Seconds)","name":"delay","required":true,"namespace":["offices","publicTransport","Carousel","delay"],"searchable":true,"uid":false},{"type":"boolean","label":"Show on mobile devices","name":"showOnMobileDevices","namespace":["offices","publicTransport","Carousel","showOnMobileDevices"],"searchable":true,"uid":false}],"namespace":["offices","publicTransport","Carousel"]},{"name":"Citation","label":"Citation","fields":[{"type":"string","label":"author","name":"author","namespace":["offices","publicTransport","Citation","author"],"searchable":true,"uid":false},{"type":"string","label":"article","name":"article","required":true,"namespace":["offices","publicTransport","Citation","article"],"searchable":true,"uid":false}],"namespace":["offices","publicTransport","Citation"]},{"label":"Client List","name":"ClientList","ui":{"previewSrc":"/images/thumbs/tina/clients-list.jpg"},"fields":[{"type":"object","name":"categories","label":"Categories","list":true,"fields":[{"type":"reference","name":"category","label":"Category","collections":["clientCategories"],"namespace":["offices","team","ClientList","categories","category"]}],"ui":{},"namespace":["offices","publicTransport","ClientList","categories"],"searchable":true,"uid":false},{"type":"object","name":"clients","label":"Clients list","list":true,"ui":{"previewSrc":"/images/thumbs/tina/clients-list.jpg"},"fields":[{"type":"string","name":"name","label":"Name","namespace":["offices","team","ClientList","clients","name"]},{"type":"image","name":"logo","label":"Logo","namespace":["offices","team","ClientList","clients","logo"]},{"type":"string","name":"logoUrl","label":"Logo URL","namespace":["offices","team","ClientList","clients","logoUrl"]},{"type":"rich-text","name":"content","label":"Content","templates":[{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["offices","_body","ClientList","clients","content","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["offices","_body","ClientList","clients","content","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["offices","_body","ClientList","clients","content","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["offices","_body","ClientList","clients","content","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["offices","_body","ClientList","clients","content","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["offices","_body","ClientList","clients","content","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["offices","_body","ClientList","clients","content","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["offices","_body","ClientList","clients","content","UtilityButton","openInNewTab"]}],"namespace":["offices","photos","ClientList","clients","content","UtilityButton"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","_body","ClientList","clients","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","_body","ClientList","clients","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","_body","ClientList","clients","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","_body","ClientList","clients","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","_body","ClientList","clients","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","_body","ClientList","clients","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","_body","ClientList","clients","content","VideoEmbed","duration"]}],"namespace":["offices","photos","ClientList","clients","content","VideoEmbed"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","_body","ClientList","clients","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","_body","ClientList","clients","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","_body","ClientList","clients","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","_body","ClientList","clients","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","_body","ClientList","clients","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","_body","ClientList","clients","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","_body","ClientList","clients","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","_body","ClientList","clients","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","_body","ClientList","clients","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","_body","ClientList","clients","content","CustomImage","sizes"]}],"namespace":["offices","photos","ClientList","clients","content","CustomImage"]},{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["offices","_body","ClientList","clients","content","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["offices","_body","ClientList","clients","content","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["training","_body","ClientList","clients","content","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["training","_body","ClientList","clients","content","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["training","_body","ClientList","clients","content","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["training","_body","ClientList","clients","content","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["training","_body","ClientList","clients","content","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["training","_body","ClientList","clients","content","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["training","_body","ClientList","clients","content","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["training","_body","ClientList","clients","content","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["training","_body","ClientList","clients","content","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["training","_body","ClientList","clients","content","ContentCard","content","CustomImage","sizes"]}],"namespace":["products","_body","ClientList","clients","content","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["training","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["training","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["training","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["training","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["training","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["products","_body","ClientList","clients","content","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["training","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["training","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["training","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["training","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["training","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["training","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["training","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","duration"]}],"namespace":["products","_body","ClientList","clients","content","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["training","_body","ClientList","clients","content","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["training","_body","ClientList","clients","content","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["training","footer","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["training","footer","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["training","footer","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["training","footer","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["training","footer","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["training","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["products","_body","ClientList","clients","content","ContentCard","content","ColorBlock"]}],"namespace":["offices","_body","ClientList","clients","content","ContentCard","content"]}],"namespace":["offices","photos","ClientList","clients","content","ContentCard"]}],"namespace":["offices","team","ClientList","clients","content"]},{"type":"string","name":"caseStudyUrl","label":"Case study URL","namespace":["offices","team","ClientList","clients","caseStudyUrl"]},{"type":"object","name":"categories","label":"Categories","list":true,"ui":{},"fields":[{"type":"reference","name":"category","label":"Category","collections":["clientCategories"],"namespace":["offices","photos","ClientList","clients","categories","category"]}],"namespace":["offices","team","ClientList","clients","categories"]}],"namespace":["offices","publicTransport","ClientList","clients"],"searchable":true,"uid":false}],"namespace":["offices","publicTransport","ClientList"]},{"name":"ClientLogos","label":"Client Logos","ui":{"previewSrc":"/images/thumbs/tina/client-logos.jpg"},"fields":[{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","publicTransport","ClientLogos","altText"],"searchable":true,"uid":false}],"namespace":["offices","publicTransport","ClientLogos"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","publicTransport","ColorBlock","title"],"searchable":true,"uid":false},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["offices","publicTransport","ColorBlock","subTitle"],"searchable":true,"uid":false},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","team","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["offices","team","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","team","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["offices","team","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["offices","team","ColorBlock","colorRow","caption"]}],"namespace":["offices","publicTransport","ColorBlock","colorRow"],"searchable":true,"uid":false}],"namespace":["offices","publicTransport","ColorBlock"]},{"name":"ColorPalette","label":"Color Palette","ui":{"previewSrc":"/images/thumbs/tina/color-palette.jpg"},"fields":[{"type":"string","label":"Name","name":"name","namespace":["offices","publicTransport","ColorPalette","name"],"searchable":true,"uid":false}],"namespace":["offices","publicTransport","ColorPalette"]},{"name":"Content","label":"Content","ui":{"previewSrc":"/images/thumbs/tina/content.jpg","defaultItem":{"body":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","publicTransport","Content","title"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","photos","Content","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","photos","Content","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","photos","Content","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","photos","Content","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","photos","Content","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","photos","Content","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","photos","Content","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","photos","Content","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","photos","Content","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","photos","Content","content","CustomImage","sizes"]}],"namespace":["offices","team","Content","content","CustomImage"]},{"name":"ClientLogos","label":"Client Logos","ui":{"previewSrc":"/images/thumbs/tina/client-logos.jpg"},"fields":[{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","photos","Content","content","ClientLogos","altText"]}],"namespace":["offices","team","Content","content","ClientLogos"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","photos","Content","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","photos","Content","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","photos","Content","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","photos","Content","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","photos","Content","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","photos","Content","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","photos","Content","content","VideoEmbed","duration"]}],"namespace":["offices","team","Content","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","photos","Content","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["offices","photos","Content","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","_body","Content","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["offices","_body","Content","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","_body","Content","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["offices","_body","Content","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["offices","_body","Content","content","ColorBlock","colorRow","caption"]}],"namespace":["offices","photos","Content","content","ColorBlock","colorRow"]}],"namespace":["offices","team","Content","content","ColorBlock"]}],"namespace":["offices","publicTransport","Content","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Container Padding","name":"paddingClass","options":["Mobile: No Padding","Mobile: No Top and Horizontal Padding"],"namespace":["offices","publicTransport","Content","paddingClass"],"searchable":true,"uid":false},{"type":"string","label":"Text size","name":"size","options":[{"label":"small","value":"sm"},{"label":"normal","value":"base"},{"label":"large","value":"lg"},{"label":"extra large","value":"xl"},{"label":"2x large","value":"2xl"}],"namespace":["offices","publicTransport","Content","size"],"searchable":true,"uid":false},{"type":"string","label":"Align","name":"align","options":[{"label":"Left","value":"left"},{"label":"Center","value":"center"},{"label":"Right","value":"right"}],"namespace":["offices","publicTransport","Content","align"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["offices","publicTransport","Content","backgroundColor"],"searchable":true,"uid":false}],"namespace":["offices","publicTransport","Content"]},{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["offices","publicTransport","ContentCard","prose"],"searchable":true,"uid":false},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["offices","publicTransport","ContentCard","centerAlignedText"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","photos","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","photos","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","photos","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","photos","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","photos","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","photos","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","photos","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","photos","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","photos","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","photos","ContentCard","content","CustomImage","sizes"]}],"namespace":["offices","team","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["offices","photos","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["offices","photos","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["offices","photos","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["offices","photos","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["offices","photos","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["offices","team","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","photos","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","photos","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","photos","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","photos","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","photos","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","photos","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","photos","ContentCard","content","VideoEmbed","duration"]}],"namespace":["offices","team","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","photos","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["offices","photos","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","_body","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["offices","_body","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","_body","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["offices","_body","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["offices","_body","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["offices","photos","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["offices","team","ContentCard","content","ColorBlock"]}],"namespace":["offices","publicTransport","ContentCard","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["offices","publicTransport","ContentCard"]},{"name":"CustomDownloadButton","label":"Custom Download Button","ui":{"previewSrc":"/images/thumbs/tina/custom-download-button.jpg"},"fields":[{"type":"string","label":"Text","name":"btnText","namespace":["offices","publicTransport","CustomDownloadButton","btnText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"btnLink","namespace":["offices","publicTransport","CustomDownloadButton","btnLink"],"searchable":true,"uid":false}],"namespace":["offices","publicTransport","CustomDownloadButton"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","publicTransport","CustomImage","src"],"searchable":false,"uid":false},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","publicTransport","CustomImage","altText"],"searchable":true,"uid":false},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","publicTransport","CustomImage","alignment"],"searchable":true,"uid":false},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","publicTransport","CustomImage","height"],"searchable":true,"uid":false},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","publicTransport","CustomImage","width"],"searchable":true,"uid":false},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","publicTransport","CustomImage","link"],"searchable":true,"uid":false},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","publicTransport","CustomImage","customClass"],"searchable":true,"uid":false},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","publicTransport","CustomImage","caption"],"searchable":true,"uid":false},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","publicTransport","CustomImage","captionColor"],"searchable":true,"uid":false},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","publicTransport","CustomImage","sizes"],"searchable":true,"uid":false}],"namespace":["offices","publicTransport","CustomImage"]},{"name":"DomainFromQuery","label":"Domain from query","ui":{"previewSrc":"/images/thumbs/tina/domain-from-query.jpg"},"fields":[{"name":"title","label":"Title","type":"string","description":"This is a H1 heading","namespace":["offices","publicTransport","DomainFromQuery","title"],"searchable":true,"uid":false},{"name":"showDomain","label":"Show domain name","type":"boolean","description":"Query param in URL must have key of 'domain'","namespace":["offices","publicTransport","DomainFromQuery","showDomain"],"searchable":true,"uid":false}],"namespace":["offices","publicTransport","DomainFromQuery"]},{"name":"DownloadBlock","label":"Download Block","ui":{"previewSrc":"/images/thumbs/tina/download-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","publicTransport","DownloadBlock","title"],"searchable":true,"uid":false},{"type":"object","label":"Downloads","name":"downloads","ui":{},"list":true,"fields":[{"type":"string","label":"Header","name":"header","namespace":["offices","team","DownloadBlock","downloads","header"]},{"type":"image","label":"Image","name":"img","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","img","uploadDir"]},"namespace":["offices","team","DownloadBlock","downloads","img"]},{"type":"string","label":"Image Background","name":"imgBackground","options":["black","grey","white","darkgrey","darkgreen"],"namespace":["offices","team","DownloadBlock","downloads","imgBackground"]},{"type":"string","label":"First Link Text","name":"firstLinkText","description":"Defaults to PNG","namespace":["offices","team","DownloadBlock","downloads","firstLinkText"]},{"type":"image","label":"First Link","name":"firstLink","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","firstLink","uploadDir"]},"namespace":["offices","team","DownloadBlock","downloads","firstLink"]},{"type":"string","label":"Second Link Text","name":"secondLinkText","description":"Defaults to PDF","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","secondLinkText","uploadDir"]},"namespace":["offices","team","DownloadBlock","downloads","secondLinkText"]},{"type":"image","label":"Second Link","name":"secondLink","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","secondLink","uploadDir"]},"namespace":["offices","team","DownloadBlock","downloads","secondLink"]}],"namespace":["offices","publicTransport","DownloadBlock","downloads"],"searchable":true,"uid":false},{"type":"boolean","label":"Bottom border","name":"bottomBorder","namespace":["offices","publicTransport","DownloadBlock","bottomBorder"],"searchable":true,"uid":false}],"namespace":["offices","publicTransport","DownloadBlock"]},{"name":"DynamicColumns","label":"Dynamic Column Layout","fields":[{"type":"rich-text","label":"Column text body","name":"colBody","required":true,"namespace":["offices","publicTransport","DynamicColumns","colBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"number","label":"Number of columns","name":"colCount","required":true,"ui":{},"namespace":["offices","publicTransport","DynamicColumns","colCount"],"searchable":true,"uid":false}],"namespace":["offices","publicTransport","DynamicColumns"]},{"name":"EventBooking","label":"Events Booking","ui":{"previewSrc":"/images/thumbs/tina/events-booking.jpg"},"fields":[{"type":"number","label":"Duration (In Days)","name":"eventDurationInDays","required":true,"namespace":["offices","publicTransport","EventBooking","eventDurationInDays"],"searchable":true,"uid":false},{"type":"number","label":"Price","name":"price","required":true,"namespace":["offices","publicTransport","EventBooking","price"],"searchable":true,"uid":false},{"type":"number","label":"Discount Price","name":"discountPrice","namespace":["offices","publicTransport","EventBooking","discountPrice"],"searchable":true,"uid":false},{"type":"string","name":"gstText","label":"Select GST Option","options":["inc GST","+ GST"],"required":true,"namespace":["offices","publicTransport","EventBooking","gstText"],"searchable":true,"uid":false},{"type":"string","label":"Discount Note","name":"discountNote","namespace":["offices","publicTransport","EventBooking","discountNote"],"searchable":true,"uid":false},{"type":"object","label":"Event","name":"eventList","ui":{},"list":true,"fields":[{"type":"string","label":"City","name":"city","namespace":["offices","team","EventBooking","eventList","city"]},{"type":"datetime","label":"Start Date","name":"date","ui":{},"namespace":["offices","team","EventBooking","eventList","date"]},{"type":"string","label":"Booking URL","name":"bookingURL","namespace":["offices","team","EventBooking","eventList","bookingURL"]},{"type":"reference","label":"Location","name":"location","collections":["locations"],"namespace":["offices","team","EventBooking","eventList","location"]}],"namespace":["offices","publicTransport","EventBooking","eventList"],"searchable":true,"uid":false}],"namespace":["offices","publicTransport","EventBooking"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["offices","photos","EventLink","content","Flag","country"]}],"namespace":["offices","team","EventLink","content","Flag"]}],"namespace":["offices","publicTransport","EventLink","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Link","name":"link","namespace":["offices","publicTransport","EventLink","link"],"searchable":true,"uid":false},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["offices","publicTransport","EventLink","eventThumbnail"],"searchable":false,"uid":false},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["offices","publicTransport","EventLink","thumbnailAlt"],"searchable":true,"uid":false}],"namespace":["offices","publicTransport","EventLink"]},{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["offices","publicTransport","Flag","country"],"searchable":true,"uid":false}],"namespace":["offices","publicTransport","Flag"]},{"name":"FixedColumns","label":"Fixed Column Layout (2 columns)","ui":{"previewSrc":"/images/thumbs/tina/fixed-columns.jpg"},"fields":[{"type":"rich-text","label":"Header Section (Optional)","name":"headerSection","namespace":["offices","publicTransport","FixedColumns","headerSection"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"First column text","name":"firstColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["offices","photos","FixedColumns","firstColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["offices","photos","FixedColumns","firstColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["products","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["products","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["products","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["products","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["products","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["products","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["products","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["products","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["products","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["products","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["offices","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["products","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["products","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["products","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["products","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["products","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["offices","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["products","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["products","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["products","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["products","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["products","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["products","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["products","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["offices","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["products","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["products","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["training","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["training","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["training","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["training","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["training","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["products","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["offices","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock"]}],"namespace":["offices","photos","FixedColumns","firstColBody","ContentCard","content"]}],"namespace":["offices","team","FixedColumns","firstColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","photos","FixedColumns","firstColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","photos","FixedColumns","firstColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","photos","FixedColumns","firstColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","photos","FixedColumns","firstColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","photos","FixedColumns","firstColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","photos","FixedColumns","firstColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","photos","FixedColumns","firstColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","photos","FixedColumns","firstColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","photos","FixedColumns","firstColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","photos","FixedColumns","firstColBody","CustomImage","sizes"]}],"namespace":["offices","team","FixedColumns","firstColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["products","_body","FixedColumns","firstColBody","EventLink","content","Flag","country"]}],"namespace":["offices","_body","FixedColumns","firstColBody","EventLink","content","Flag"]}],"namespace":["offices","photos","FixedColumns","firstColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["offices","photos","FixedColumns","firstColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["offices","photos","FixedColumns","firstColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["offices","photos","FixedColumns","firstColBody","EventLink","thumbnailAlt"]}],"namespace":["offices","team","FixedColumns","firstColBody","EventLink"]}],"namespace":["offices","publicTransport","FixedColumns","firstColBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"Second column text","name":"secondColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["offices","photos","FixedColumns","secondColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["offices","photos","FixedColumns","secondColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["products","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["products","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["products","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["products","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["products","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["products","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["products","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["products","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["products","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["products","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["offices","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["products","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["products","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["products","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["products","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["products","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["offices","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["products","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["products","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["products","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["products","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["products","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["products","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["products","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["offices","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["products","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["products","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["training","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["training","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["training","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["training","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["training","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["products","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["offices","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock"]}],"namespace":["offices","photos","FixedColumns","secondColBody","ContentCard","content"]}],"namespace":["offices","team","FixedColumns","secondColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","photos","FixedColumns","secondColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","photos","FixedColumns","secondColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","photos","FixedColumns","secondColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","photos","FixedColumns","secondColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","photos","FixedColumns","secondColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","photos","FixedColumns","secondColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","photos","FixedColumns","secondColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","photos","FixedColumns","secondColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","photos","FixedColumns","secondColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","photos","FixedColumns","secondColBody","CustomImage","sizes"]}],"namespace":["offices","team","FixedColumns","secondColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["products","_body","FixedColumns","secondColBody","EventLink","content","Flag","country"]}],"namespace":["offices","_body","FixedColumns","secondColBody","EventLink","content","Flag"]}],"namespace":["offices","photos","FixedColumns","secondColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["offices","photos","FixedColumns","secondColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["offices","photos","FixedColumns","secondColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["offices","photos","FixedColumns","secondColBody","EventLink","thumbnailAlt"]}],"namespace":["offices","team","FixedColumns","secondColBody","EventLink"]}],"namespace":["offices","publicTransport","FixedColumns","secondColBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["offices","publicTransport","FixedColumns"]},{"name":"FixedTabsLayout","label":"Fixed Tabs Layout","ui":{"previewSrc":"/images/thumbs/tina/fixed-tabs-layout.jpg"},"fields":[{"type":"string","name":"firstTab","label":"First Tab","namespace":["offices","publicTransport","FixedTabsLayout","firstTab"],"searchable":true,"uid":false},{"type":"rich-text","name":"firstHeading","label":"First Heading","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","photos","FixedTabsLayout","firstHeading","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","photos","FixedTabsLayout","firstHeading","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","photos","FixedTabsLayout","firstHeading","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","photos","FixedTabsLayout","firstHeading","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","photos","FixedTabsLayout","firstHeading","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","photos","FixedTabsLayout","firstHeading","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","photos","FixedTabsLayout","firstHeading","VideoEmbed","duration"]}],"namespace":["offices","team","FixedTabsLayout","firstHeading","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["offices","photos","FixedTabsLayout","firstHeading","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["offices","photos","FixedTabsLayout","firstHeading","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["offices","photos","FixedTabsLayout","firstHeading","BookingButton","buttonSubtitle"]}],"namespace":["offices","team","FixedTabsLayout","firstHeading","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["offices","photos","FixedTabsLayout","firstHeading","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["offices","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["offices","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["offices","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["offices","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList","skills"]}],"namespace":["offices","photos","FixedTabsLayout","firstHeading","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["offices","_body","FixedTabsLayout","firstHeading","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["offices","_body","FixedTabsLayout","firstHeading","ExpertBlock","link","url"]}],"namespace":["offices","photos","FixedTabsLayout","firstHeading","ExpertBlock","link"]}],"namespace":["offices","team","FixedTabsLayout","firstHeading","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["offices","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["offices","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["products","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["products","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["products","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["offices","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["offices","photos","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["offices","team","FixedTabsLayout","firstHeading","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","photos","FixedTabsLayout","firstHeading","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","photos","FixedTabsLayout","firstHeading","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","photos","FixedTabsLayout","firstHeading","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","photos","FixedTabsLayout","firstHeading","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","photos","FixedTabsLayout","firstHeading","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","photos","FixedTabsLayout","firstHeading","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","photos","FixedTabsLayout","firstHeading","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","photos","FixedTabsLayout","firstHeading","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","photos","FixedTabsLayout","firstHeading","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","photos","FixedTabsLayout","firstHeading","CustomImage","sizes"]}],"namespace":["offices","team","FixedTabsLayout","firstHeading","CustomImage"]}],"namespace":["offices","publicTransport","FixedTabsLayout","firstHeading"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","name":"firstBody","label":"First Body","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","photos","FixedTabsLayout","firstBody","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","photos","FixedTabsLayout","firstBody","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","photos","FixedTabsLayout","firstBody","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","photos","FixedTabsLayout","firstBody","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","photos","FixedTabsLayout","firstBody","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","photos","FixedTabsLayout","firstBody","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","photos","FixedTabsLayout","firstBody","VideoEmbed","duration"]}],"namespace":["offices","team","FixedTabsLayout","firstBody","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["offices","photos","FixedTabsLayout","firstBody","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["offices","photos","FixedTabsLayout","firstBody","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["offices","photos","FixedTabsLayout","firstBody","BookingButton","buttonSubtitle"]}],"namespace":["offices","team","FixedTabsLayout","firstBody","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["offices","photos","FixedTabsLayout","firstBody","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["offices","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["offices","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["offices","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["offices","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList","skills"]}],"namespace":["offices","photos","FixedTabsLayout","firstBody","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["offices","_body","FixedTabsLayout","firstBody","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["offices","_body","FixedTabsLayout","firstBody","ExpertBlock","link","url"]}],"namespace":["offices","photos","FixedTabsLayout","firstBody","ExpertBlock","link"]}],"namespace":["offices","team","FixedTabsLayout","firstBody","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["offices","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["offices","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["products","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["products","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["products","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["offices","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["offices","photos","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["offices","team","FixedTabsLayout","firstBody","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","photos","FixedTabsLayout","firstBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","photos","FixedTabsLayout","firstBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","photos","FixedTabsLayout","firstBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","photos","FixedTabsLayout","firstBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","photos","FixedTabsLayout","firstBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","photos","FixedTabsLayout","firstBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","photos","FixedTabsLayout","firstBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","photos","FixedTabsLayout","firstBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","photos","FixedTabsLayout","firstBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","photos","FixedTabsLayout","firstBody","CustomImage","sizes"]}],"namespace":["offices","team","FixedTabsLayout","firstBody","CustomImage"]}],"namespace":["offices","publicTransport","FixedTabsLayout","firstBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","name":"secondTab","label":"Second Tab","namespace":["offices","publicTransport","FixedTabsLayout","secondTab"],"searchable":true,"uid":false},{"type":"rich-text","name":"secondHeading","label":"Second Heading","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","photos","FixedTabsLayout","secondHeading","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","photos","FixedTabsLayout","secondHeading","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","photos","FixedTabsLayout","secondHeading","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","photos","FixedTabsLayout","secondHeading","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","photos","FixedTabsLayout","secondHeading","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","photos","FixedTabsLayout","secondHeading","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","photos","FixedTabsLayout","secondHeading","VideoEmbed","duration"]}],"namespace":["offices","team","FixedTabsLayout","secondHeading","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["offices","photos","FixedTabsLayout","secondHeading","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["offices","photos","FixedTabsLayout","secondHeading","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["offices","photos","FixedTabsLayout","secondHeading","BookingButton","buttonSubtitle"]}],"namespace":["offices","team","FixedTabsLayout","secondHeading","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["offices","photos","FixedTabsLayout","secondHeading","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["offices","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["offices","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["offices","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["offices","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList","skills"]}],"namespace":["offices","photos","FixedTabsLayout","secondHeading","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["offices","_body","FixedTabsLayout","secondHeading","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["offices","_body","FixedTabsLayout","secondHeading","ExpertBlock","link","url"]}],"namespace":["offices","photos","FixedTabsLayout","secondHeading","ExpertBlock","link"]}],"namespace":["offices","team","FixedTabsLayout","secondHeading","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["offices","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["offices","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["products","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["products","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["products","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["offices","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["offices","photos","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["offices","team","FixedTabsLayout","secondHeading","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","photos","FixedTabsLayout","secondHeading","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","photos","FixedTabsLayout","secondHeading","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","photos","FixedTabsLayout","secondHeading","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","photos","FixedTabsLayout","secondHeading","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","photos","FixedTabsLayout","secondHeading","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","photos","FixedTabsLayout","secondHeading","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","photos","FixedTabsLayout","secondHeading","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","photos","FixedTabsLayout","secondHeading","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","photos","FixedTabsLayout","secondHeading","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","photos","FixedTabsLayout","secondHeading","CustomImage","sizes"]}],"namespace":["offices","team","FixedTabsLayout","secondHeading","CustomImage"]}],"namespace":["offices","publicTransport","FixedTabsLayout","secondHeading"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","name":"secondBody","label":"Second Body","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","photos","FixedTabsLayout","secondBody","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","photos","FixedTabsLayout","secondBody","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","photos","FixedTabsLayout","secondBody","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","photos","FixedTabsLayout","secondBody","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","photos","FixedTabsLayout","secondBody","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","photos","FixedTabsLayout","secondBody","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","photos","FixedTabsLayout","secondBody","VideoEmbed","duration"]}],"namespace":["offices","team","FixedTabsLayout","secondBody","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["offices","photos","FixedTabsLayout","secondBody","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["offices","photos","FixedTabsLayout","secondBody","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["offices","photos","FixedTabsLayout","secondBody","BookingButton","buttonSubtitle"]}],"namespace":["offices","team","FixedTabsLayout","secondBody","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["offices","photos","FixedTabsLayout","secondBody","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["offices","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["offices","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["offices","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["offices","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList","skills"]}],"namespace":["offices","photos","FixedTabsLayout","secondBody","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["offices","_body","FixedTabsLayout","secondBody","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["offices","_body","FixedTabsLayout","secondBody","ExpertBlock","link","url"]}],"namespace":["offices","photos","FixedTabsLayout","secondBody","ExpertBlock","link"]}],"namespace":["offices","team","FixedTabsLayout","secondBody","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["offices","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["offices","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["products","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["products","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["products","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["offices","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["offices","photos","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["offices","team","FixedTabsLayout","secondBody","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","photos","FixedTabsLayout","secondBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","photos","FixedTabsLayout","secondBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","photos","FixedTabsLayout","secondBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","photos","FixedTabsLayout","secondBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","photos","FixedTabsLayout","secondBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","photos","FixedTabsLayout","secondBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","photos","FixedTabsLayout","secondBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","photos","FixedTabsLayout","secondBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","photos","FixedTabsLayout","secondBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","photos","FixedTabsLayout","secondBody","CustomImage","sizes"]}],"namespace":["offices","team","FixedTabsLayout","secondBody","CustomImage"]}],"namespace":["offices","publicTransport","FixedTabsLayout","secondBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["offices","publicTransport","FixedTabsLayout"]},{"label":"Google Maps","name":"GoogleMaps","ui":{"previewSrc":"/images/thumbs/tina/google-maps.jpg"},"fields":[{"type":"string","label":"URL","name":"embedUrl","required":true,"namespace":["offices","publicTransport","GoogleMaps","embedUrl"],"searchable":true,"uid":false},{"type":"string","label":"Width","name":"embedWidth","namespace":["offices","publicTransport","GoogleMaps","embedWidth"],"searchable":true,"uid":false},{"type":"string","label":"Height","name":"embedHeight","namespace":["offices","publicTransport","GoogleMaps","embedHeight"],"searchable":true,"uid":false}],"namespace":["offices","publicTransport","GoogleMaps"]},{"label":"Grid Layout","name":"GridLayout","ui":{"previewSrc":"/images/thumbs/tina/grid-layout.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","publicTransport","GridLayout","title"],"searchable":true,"uid":false},{"type":"object","list":true,"label":"Grid Items","name":"grids","ui":{},"fields":[{"type":"string","label":"Grid Title","name":"gridTitle","namespace":["offices","team","GridLayout","grids","gridTitle"]},{"type":"boolean","label":"Show Grid Title","name":"showGridTitle","namespace":["offices","team","GridLayout","grids","showGridTitle"]},{"type":"boolean","label":"Centered Grid Title","name":"centeredGridTitle","namespace":["offices","team","GridLayout","grids","centeredGridTitle"]},{"type":"boolean","label":"Show Header Divider","name":"showHeaderDivider","namespace":["offices","team","GridLayout","grids","showHeaderDivider"]},{"type":"boolean","label":"Offset Grid Start","name":"offsetGridStart","namespace":["offices","team","GridLayout","grids","offsetGridStart"]},{"type":"object","label":"Blocks","name":"blocks","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","photos","GridLayout","grids","blocks","title"]},{"type":"boolean","label":"Show Title","name":"showTitle","namespace":["offices","photos","GridLayout","grids","blocks","showTitle"]},{"type":"image","label":"Image","name":"image","uploadDir":{"namespace":["page","beforeBody","GridLayout","grids","blocks","image","uploadDir"]},"namespace":["offices","photos","GridLayout","grids","blocks","image"]},{"type":"image","label":"Related Image","name":"relatedImage","uploadDir":{"namespace":["page","beforeBody","GridLayout","grids","blocks","relatedImage","uploadDir"]},"namespace":["offices","photos","GridLayout","grids","blocks","relatedImage"]},{"type":"rich-text","name":"linkContent","label":"Link Content","templates":[{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["products","_body","GridLayout","grids","blocks","linkContent","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["products","_body","GridLayout","grids","blocks","linkContent","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["products","_body","GridLayout","grids","blocks","linkContent","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["products","_body","GridLayout","grids","blocks","linkContent","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["products","_body","GridLayout","grids","blocks","linkContent","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["products","_body","GridLayout","grids","blocks","linkContent","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["products","_body","GridLayout","grids","blocks","linkContent","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["products","_body","GridLayout","grids","blocks","linkContent","UtilityButton","openInNewTab"]}],"namespace":["offices","_body","GridLayout","grids","blocks","linkContent","UtilityButton"]}],"namespace":["offices","photos","GridLayout","grids","blocks","linkContent"]}],"namespace":["offices","team","GridLayout","grids","blocks"]}],"namespace":["offices","publicTransport","GridLayout","grids"],"searchable":true,"uid":false}],"namespace":["offices","publicTransport","GridLayout"]},{"name":"Hero","label":"Hero","ui":{"previewSrc":"/blocks/hero.png","defaultItem":{"tagline":"Here's some text above the other text","headline":"This Big Text is Totally Awesome","text":"Phasellus scelerisque, libero eu finibus rutrum, risus risus accumsan libero, nec molestie urna dui a leo."}},"fields":[{"type":"string","label":"Tagline","name":"tagline","namespace":["offices","publicTransport","Hero","tagline"],"searchable":true,"uid":false},{"type":"string","label":"Headline","name":"headline","namespace":["offices","publicTransport","Hero","headline"],"searchable":true,"uid":false},{"label":"Text","name":"text","type":"rich-text","namespace":["offices","publicTransport","Hero","text"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"label":"Actions","name":"actions","type":"object","list":true,"ui":{"defaultItem":{"label":"Action Label","type":"button","icon":true,"link":"/"}},"fields":[{"label":"Label","name":"label","type":"string","namespace":["offices","team","Hero","actions","label"]},{"label":"Type","name":"type","type":"string","options":[{"label":"Button","value":"button"},{"label":"Link","value":"link"}],"namespace":["offices","team","Hero","actions","type"]},{"label":"Icon","name":"icon","type":"boolean","namespace":["offices","team","Hero","actions","icon"]},{"label":"Link","name":"link","type":"string","namespace":["offices","team","Hero","actions","link"]}],"namespace":["offices","publicTransport","Hero","actions"],"searchable":true,"uid":false},{"type":"object","label":"Image","name":"image","fields":[{"name":"src","label":"Image Source","type":"image","namespace":["offices","team","Hero","image","src"]},{"name":"alt","label":"Alt Text","type":"string","namespace":["offices","team","Hero","image","alt"]}],"namespace":["offices","publicTransport","Hero","image"],"searchable":true,"uid":false},{"type":"string","label":"Color","name":"color","options":[{"label":"Default","value":"default"},{"label":"Tint","value":"tint"},{"label":"Primary","value":"primary"}],"namespace":["offices","publicTransport","Hero","color"],"searchable":true,"uid":false}],"namespace":["offices","publicTransport","Hero"]},{"name":"HorizontalCard","label":"Horizontal Card","ui":{"previewSrc":"/images/thumbs/tina/horizontal-card.jpg"},"fields":[{"type":"object","label":"Cards","name":"cardList","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","team","HorizontalCard","cardList","title"]},{"type":"rich-text","label":"Content","name":"content","namespace":["offices","team","HorizontalCard","cardList","content"]},{"type":"image","label":"Thumbnail","name":"thumbnail","uploadDir":{"namespace":["page","beforeBody","HorizontalCard","cardList","thumbnail","uploadDir"]},"namespace":["offices","team","HorizontalCard","cardList","thumbnail"]},{"type":"string","label":"Link","name":"link","namespace":["offices","team","HorizontalCard","cardList","link"]}],"namespace":["offices","publicTransport","HorizontalCard","cardList"],"searchable":true,"uid":false},{"type":"object","label":"Button","name":"button","fields":[{"type":"string","label":"Text","name":"text","namespace":["offices","team","HorizontalCard","button","text"]},{"type":"string","label":"Link","name":"link","namespace":["offices","team","HorizontalCard","button","link"]}],"namespace":["offices","publicTransport","HorizontalCard","button"],"searchable":true,"uid":false}],"namespace":["offices","publicTransport","HorizontalCard"]},{"name":"InternalCarousel","label":"Internal Carousel","ui":{"previewSrc":"/images/thumbs/tina/internal-carousel.jpg"},"fields":[{"label":"Images","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Image description"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["offices","team","InternalCarousel","items","label"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","InternalCarousel","items","imgSrc","uploadDir"]},"namespace":["offices","team","InternalCarousel","items","imgSrc"]}],"namespace":["offices","publicTransport","InternalCarousel","items"],"searchable":true,"uid":false},{"type":"string","label":"Header","name":"header","namespace":["offices","publicTransport","InternalCarousel","header"],"searchable":true,"uid":false},{"type":"rich-text","label":"Text","name":"paragraph","isBody":false,"namespace":["offices","publicTransport","InternalCarousel","paragraph"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Website","name":"website","namespace":["offices","publicTransport","InternalCarousel","website"],"searchable":true,"uid":false},{"type":"object","label":"Technologies","name":"technologies","list":true,"ui":{},"fields":[{"type":"string","label":"Name","name":"name","namespace":["offices","team","InternalCarousel","technologies","name"]}],"namespace":["offices","publicTransport","InternalCarousel","technologies"],"searchable":true,"uid":false},{"type":"string","label":"Case Study","name":"caseStudyUrl","namespace":["offices","publicTransport","InternalCarousel","caseStudyUrl"],"searchable":true,"uid":false},{"type":"string","label":"Video URL","name":"videoUrl","namespace":["offices","publicTransport","InternalCarousel","videoUrl"],"searchable":true,"uid":false}],"namespace":["offices","publicTransport","InternalCarousel"]},{"label":"Join As Presenter","name":"joinAsPresenter","fields":[{"label":"Learn More Link","name":"link","type":"string","namespace":["offices","publicTransport","joinAsPresenter","link"],"searchable":true,"uid":false},{"label":"Image","name":"img","type":"image","namespace":["offices","publicTransport","joinAsPresenter","img"],"searchable":false,"uid":false}],"namespace":["offices","publicTransport","joinAsPresenter"]},{"label":"Join Github","name":"joinGithub","ui":{"previewSrc":"/images/thumbs/tina/join-github.jpg"},"fields":[{"label":"Title","name":"title","type":"string","namespace":["offices","publicTransport","joinGithub","title"],"searchable":true,"uid":false},{"label":"Join Github Link","name":"link","type":"string","namespace":["offices","publicTransport","joinGithub","link"],"searchable":true,"uid":false}],"namespace":["offices","publicTransport","joinGithub"]},{"name":"JotFormEmbed","label":"JotForm Embed","ui":{"previewSrc":"/images/thumbs/tina/jotform-embed.jpg"},"fields":[{"type":"string","name":"jotFormId","label":"JotForm Id","required":true,"namespace":["offices","publicTransport","JotFormEmbed","jotFormId"],"searchable":true,"uid":false},{"type":"string","label":"Button Text","name":"buttonText","namespace":["offices","publicTransport","JotFormEmbed","buttonText"],"searchable":true,"uid":false},{"type":"string","name":"containerClass","label":"Container Class","namespace":["offices","publicTransport","JotFormEmbed","containerClass"],"searchable":true,"uid":false},{"type":"string","label":"Button Class","name":"buttonClass","namespace":["offices","publicTransport","JotFormEmbed","buttonClass"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","namespace":["offices","publicTransport","JotFormEmbed","animated"],"searchable":true,"uid":false}],"namespace":["offices","publicTransport","JotFormEmbed"]},{"name":"LatestTech","label":"Latest Tech","ui":{"previewSrc":"/images/thumbs/tina/latest-tech.jpg"},"fields":[{"type":"reference","description":"Select a config file including a set of badges","collections":["userGroupGlobal"],"label":"Badges","name":"badges","namespace":["offices","publicTransport","LatestTech","badges"],"searchable":true,"uid":false}],"namespace":["offices","publicTransport","LatestTech"]},{"name":"LocationBlock","label":"Locations","ui":{"previewSrc":"/images/thumbs/tina/locations.jpg"},"fields":[{"type":"string","name":"title","label":"Title","namespace":["offices","publicTransport","LocationBlock","title"],"searchable":true,"uid":false},{"type":"object","label":"Location List","name":"locationList","list":true,"ui":{},"fields":[{"type":"reference","collections":["locations"],"label":"Location","name":"location","namespace":["offices","team","LocationBlock","locationList","location"]}],"namespace":["offices","publicTransport","LocationBlock","locationList"],"searchable":true,"uid":false},{"type":"object","name":"chapelWebsite","label":"Chapel Website","fields":[{"type":"string","name":"title","label":"Text","namespace":["offices","team","LocationBlock","chapelWebsite","title"]},{"type":"string","name":"URL","label":"URL","namespace":["offices","team","LocationBlock","chapelWebsite","URL"]}],"namespace":["offices","publicTransport","LocationBlock","chapelWebsite"],"searchable":true,"uid":false}],"namespace":["offices","publicTransport","LocationBlock"]},{"name":"NewslettersTable","label":"Newsletters Table","ui":{"previewSrc":"/images/thumbs/tina/newsletters-table.jpg"},"fields":[{"type":"string","label":"Header text","name":"headerText","namespace":["offices","publicTransport","NewslettersTable","headerText"],"searchable":true,"uid":false}],"namespace":["offices","publicTransport","NewslettersTable"]},{"label":"Organizer","name":"organizer","fields":[{"type":"image","label":"Profile Image","name":"profileImg","namespace":["offices","publicTransport","organizer","profileImg"],"searchable":false,"uid":false},{"type":"string","label":"Profile Link","name":"profileLink","namespace":["offices","publicTransport","organizer","profileLink"],"searchable":true,"uid":false},{"type":"string","label":"Name","name":"name","namespace":["offices","publicTransport","organizer","name"],"searchable":true,"uid":false},{"type":"string","label":"Position","name":"position","namespace":["offices","publicTransport","organizer","position"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","namespace":["offices","publicTransport","organizer","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["offices","publicTransport","organizer"]},{"label":"Payment Block","name":"paymentBlock","ui":{"previewSrc":"/images/thumbs/tina/payment-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","publicTransport","paymentBlock","title"],"searchable":true,"uid":false},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["offices","publicTransport","paymentBlock","subTitle"],"searchable":true,"uid":false},{"type":"reference","label":"Payment Links","name":"payments","collections":["paymentDetails"],"namespace":["offices","publicTransport","paymentBlock","payments"],"searchable":true,"uid":false},{"type":"rich-text","label":"Footer","name":"footer","namespace":["offices","publicTransport","paymentBlock","footer"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"image","label":"Credit Cards Image","name":"creditImgSrc","namespace":["offices","publicTransport","paymentBlock","creditImgSrc"],"searchable":false,"uid":false},{"type":"string","label":"Alt Text","name":"altTxt","namespace":["offices","publicTransport","paymentBlock","altTxt"],"searchable":true,"uid":false}],"namespace":["offices","publicTransport","paymentBlock"]},{"name":"PresenterBlock","label":"Presenters","ui":{"previewSrc":"/images/thumbs/tina/presenters.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["offices","publicTransport","PresenterBlock","header"],"searchable":true,"uid":false},{"type":"object","name":"presenterList","label":"Presenters","list":true,"ui":{},"fields":[{"type":"reference","name":"presenter","label":"Presenters","collections":["presenter"],"namespace":["offices","team","PresenterBlock","presenterList","presenter"]}],"namespace":["offices","publicTransport","PresenterBlock","presenterList"],"searchable":true,"uid":false},{"type":"object","label":"Other Events","name":"otherEvent","fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","team","PresenterBlock","otherEvent","title"]},{"type":"string","label":"URL","name":"eventURL","namespace":["offices","team","PresenterBlock","otherEvent","eventURL"]}],"namespace":["offices","publicTransport","PresenterBlock","otherEvent"],"searchable":true,"uid":false}],"namespace":["offices","publicTransport","PresenterBlock"]},{"label":"Recurring Event","name":"RecurringEvent","ui":{"previewSrc":"/images/thumbs/tina/recurring-event.jpg"},"fields":[{"type":"string","label":"Apply Link Redirect","name":"applyLinkRedirect","namespace":["offices","publicTransport","RecurringEvent","applyLinkRedirect"],"searchable":true,"uid":false},{"type":"string","label":"Day","name":"day","options":[{"label":"Monday","value":"monday"},{"label":"Tuesday","value":"tuesday"},{"label":"Wednesday","value":"wednesday"},{"label":"Thursday","value":"thursday"},{"label":"Friday","value":"friday"},{"label":"Saturday","value":"saturday"},{"label":"Sunday","value":"sunday"}],"required":true,"namespace":["offices","publicTransport","RecurringEvent","day"],"searchable":true,"uid":false}],"namespace":["offices","publicTransport","RecurringEvent"]},{"name":"SectionHeader","label":"Section Header","ui":{"previewSrc":"/images/thumbs/tina/section-header.jpg"},"fields":[{"type":"string","label":"Header Text","name":"headerText","namespace":["offices","publicTransport","SectionHeader","headerText"],"searchable":true,"uid":false}],"namespace":["offices","publicTransport","SectionHeader"]},{"name":"ServiceCards","label":"Service Cards","ui":{"previewSrc":"/images/thumbs/tina/services-cards.jpg"},"fields":[{"type":"string","label":"Big Cards Label","name":"bigCardsLabel","namespace":["offices","publicTransport","ServiceCards","bigCardsLabel"],"searchable":true,"uid":false},{"label":"Big Cards","name":"bigCards","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","team","ServiceCards","bigCards","title"]},{"type":"string","label":"Description","component":"textarea","name":"description","namespace":["offices","team","ServiceCards","bigCards","description"]},{"type":"string","label":"URL","name":"link","namespace":["offices","team","ServiceCards","bigCards","link"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Red","value":"red"},{"label":"Light Gray","value":"lightgray"},{"label":"Medium Gray","value":"mediumgray"},{"label":"Dark Gray","value":"darkgray"}],"namespace":["offices","team","ServiceCards","bigCards","color"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","ServiceCards","bigCards","imgSrc","uploadDir"]},"namespace":["offices","team","ServiceCards","bigCards","imgSrc"]}],"namespace":["offices","publicTransport","ServiceCards","bigCards"],"searchable":true,"uid":false},{"type":"string","label":"Small Cards Label","name":"smallCardsLabel","namespace":["offices","publicTransport","ServiceCards","smallCardsLabel"],"searchable":true,"uid":false},{"label":"Small Cards","name":"smallCards","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","team","ServiceCards","smallCards","title"]},{"type":"string","label":"URL","name":"link","namespace":["offices","team","ServiceCards","smallCards","link"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Red","value":"red"},{"label":"Light Gray","value":"lightgray"},{"label":"Medium Gray","value":"mediumgray"},{"label":"Dark Gray","value":"darkgray"}],"namespace":["offices","team","ServiceCards","smallCards","color"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","ServiceCards","smallCards","imgSrc","uploadDir"]},"namespace":["offices","team","ServiceCards","smallCards","imgSrc"]},{"type":"boolean","label":"External Page","description":"Select this if the link is not part of the website. This includes SSW.Rules, and SSW.People links","name":"isExternal","namespace":["offices","team","ServiceCards","smallCards","isExternal"]}],"namespace":["offices","publicTransport","ServiceCards","smallCards"],"searchable":true,"uid":false},{"label":"Links","name":"links","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["offices","team","ServiceCards","links","label"]},{"type":"string","label":"URL","name":"link","namespace":["offices","team","ServiceCards","links","link"]}],"namespace":["offices","publicTransport","ServiceCards","links"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["offices","publicTransport","ServiceCards","backgroundColor"],"searchable":true,"uid":false}],"namespace":["offices","publicTransport","ServiceCards"]},{"label":"Table Layout","name":"TableLayout","ui":{"previewSrc":"/images/thumbs/tina/table-layout.jpg"},"fields":[{"label":"Table Style","name":"tableStyle","type":"string","options":["none","basicBorder","styled","benefits"],"namespace":["offices","publicTransport","TableLayout","tableStyle"],"searchable":true,"uid":false},{"label":"First column bolded + left aligned","name":"firstColBold","type":"boolean","required":false,"namespace":["offices","publicTransport","TableLayout","firstColBold"],"searchable":true,"uid":false},{"type":"string","label":"Table Headers","name":"headers","list":true,"namespace":["offices","publicTransport","TableLayout","headers"],"searchable":true,"uid":false},{"type":"object","label":"Rows","name":"rows","list":true,"fields":[{"type":"object","label":"Cells","name":"cells","list":true,"fields":[{"type":"string","label":"Value","name":"cellValue","required":true,"component":{"namespace":["page","beforeBody","TableLayout","rows","cells","cellValue",""]},"namespace":["offices","photos","TableLayout","rows","cells","cellValue"]}],"ui":{},"namespace":["offices","team","TableLayout","rows","cells"]},{"type":"boolean","label":"Is Heading","name":"isHeader","required":false,"namespace":["offices","team","TableLayout","rows","isHeader"]}],"ui":{},"namespace":["offices","publicTransport","TableLayout","rows"],"searchable":true,"uid":false}],"namespace":["offices","publicTransport","TableLayout"]},{"name":"TestimonialsList","label":"Testimonials List","ui":{"previewSrc":"/images/thumbs/tina/testimonials.jpg"},"fields":[{"type":"object","label":"Exclude Categories","name":"excludedCategories","ui":{},"list":true,"fields":[{"type":"reference","label":"Category Name","name":"categoryName","collections":["testimonialCategories"],"namespace":["offices","team","TestimonialsList","excludedCategories","categoryName"]}],"namespace":["offices","publicTransport","TestimonialsList","excludedCategories"],"searchable":true,"uid":false}],"namespace":["offices","publicTransport","TestimonialsList"]},{"label":"Training Information","name":"TrainingInformation","ui":{"previewSrc":"/images/thumbs/tina/training-information.jpg"},"fields":[{"type":"object","label":"Training Information Items","name":"trainingInformationItems","list":true,"fields":[{"type":"string","label":"Header","name":"header","namespace":["offices","team","TrainingInformation","trainingInformationItems","header"]},{"type":"rich-text","label":"Body","name":"body","templates":[{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["offices","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["offices","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["offices","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["offices","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["offices","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","afterBody"]}],"namespace":["offices","photos","TrainingInformation","trainingInformationItems","body","VerticalListItem"]},{"label":"Recurring Event","name":"RecurringEvent","ui":{"previewSrc":"/images/thumbs/tina/recurring-event.jpg"},"fields":[{"type":"string","label":"Apply Link Redirect","name":"applyLinkRedirect","namespace":["offices","_body","TrainingInformation","trainingInformationItems","body","RecurringEvent","applyLinkRedirect"]},{"type":"string","label":"Day","name":"day","options":[{"label":"Monday","value":"monday"},{"label":"Tuesday","value":"tuesday"},{"label":"Wednesday","value":"wednesday"},{"label":"Thursday","value":"thursday"},{"label":"Friday","value":"friday"},{"label":"Saturday","value":"saturday"},{"label":"Sunday","value":"sunday"}],"required":true,"namespace":["offices","_body","TrainingInformation","trainingInformationItems","body","RecurringEvent","day"]}],"namespace":["offices","photos","TrainingInformation","trainingInformationItems","body","RecurringEvent"]}],"namespace":["offices","team","TrainingInformation","trainingInformationItems","body"]}],"namespace":["offices","publicTransport","TrainingInformation","trainingInformationItems"],"searchable":true,"uid":false}],"namespace":["offices","publicTransport","TrainingInformation"]},{"label":"Training Learning Outcomes","name":"TrainingLearningOutcome","ui":{"previewSrc":"/images/thumbs/tina/training-learning-outcomes.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["offices","publicTransport","TrainingLearningOutcome","header"],"searchable":true,"uid":false},{"type":"object","label":"List Items","name":"listItems","list":true,"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","team","TrainingLearningOutcome","listItems","title"]},{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["offices","team","TrainingLearningOutcome","listItems","content"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","TrainingLearningOutcome","listItems","icon","uploadDir"]},"namespace":["offices","team","TrainingLearningOutcome","listItems","icon"]}],"namespace":["offices","publicTransport","TrainingLearningOutcome","listItems"],"searchable":true,"uid":false}],"namespace":["offices","publicTransport","TrainingLearningOutcome"]},{"label":"Tweet Embed","name":"TweetEmbed","ui":{"previewSrc":"/images/thumbs/tina/tweet-embed.jpg"},"fields":[{"type":"string","name":"url","label":"Tweet URL","required":true,"namespace":["offices","publicTransport","TweetEmbed","url"],"searchable":true,"uid":false}],"namespace":["offices","publicTransport","TweetEmbed"]},{"name":"UpcomingEvents","label":"Upcoming Events","ui":{"previewSrc":"/images/thumbs/tina/upcoming-events.jpg","defaultItem":{"title":"Upcoming Events","numberOfEvents":30}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","publicTransport","UpcomingEvents","title"],"searchable":true,"uid":false},{"type":"number","label":"Number of Events","name":"numberOfEvents","namespace":["offices","publicTransport","UpcomingEvents","numberOfEvents"],"searchable":true,"uid":false}],"namespace":["offices","publicTransport","UpcomingEvents"]},{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["offices","publicTransport","UtilityButton","buttonText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"link","required":false,"namespace":["offices","publicTransport","UtilityButton","link"],"searchable":true,"uid":false},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["offices","publicTransport","UtilityButton","size"],"searchable":true,"uid":false},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["offices","publicTransport","UtilityButton","btnIcon"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["offices","publicTransport","UtilityButton","animated"],"searchable":true,"uid":false},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["offices","publicTransport","UtilityButton","uncentered"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["offices","publicTransport","UtilityButton","removeTopMargin"],"searchable":true,"uid":false},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["offices","publicTransport","UtilityButton","openInNewTab"],"searchable":true,"uid":false}],"namespace":["offices","publicTransport","UtilityButton"]},{"name":"VerticalImageLayout","label":"Vertical Image Layout","fields":[{"type":"image","label":"Image","name":"imageSrc","uploadDir":{"namespace":["page","beforeBody","VerticalImageLayout","imageSrc","uploadDir"]},"namespace":["offices","publicTransport","VerticalImageLayout","imageSrc"],"searchable":false,"uid":false},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","publicTransport","VerticalImageLayout","altText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"imageLink","namespace":["offices","publicTransport","VerticalImageLayout","imageLink"],"searchable":true,"uid":false},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","publicTransport","VerticalImageLayout","height"],"searchable":true,"uid":false},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","publicTransport","VerticalImageLayout","width"],"searchable":true,"uid":false},{"type":"rich-text","label":"Message","name":"message","required":true,"namespace":["offices","publicTransport","VerticalImageLayout","message"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","publicTransport","VerticalImageLayout","sizes"],"searchable":true,"uid":false}],"namespace":["offices","publicTransport","VerticalImageLayout"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["offices","publicTransport","VerticalListItem","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"number","label":"Index number","name":"index","namespace":["offices","publicTransport","VerticalListItem","index"],"searchable":true,"uid":false},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["offices","publicTransport","VerticalListItem","icon"],"searchable":false,"uid":false},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["offices","publicTransport","VerticalListItem","iconScale"],"searchable":true,"uid":false},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["offices","publicTransport","VerticalListItem","afterBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["offices","publicTransport","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","publicTransport","VideoEmbed","url"],"searchable":true,"uid":false},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","publicTransport","VideoEmbed","videoWidth"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","publicTransport","VideoEmbed","removeMargin"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","publicTransport","VideoEmbed","uncentre"],"searchable":true,"uid":false},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","publicTransport","VideoEmbed","overflow"],"searchable":true,"uid":false},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","publicTransport","VideoEmbed","caption"],"searchable":true,"uid":false},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","publicTransport","VideoEmbed","duration"],"searchable":true,"uid":false}],"namespace":["offices","publicTransport","VideoEmbed"]},{"name":"InlineJotForm","label":"In-line JotForm","ui":{"previewSrc":"/images/thumbs/tina/inline-jot-form.jpg"},"fields":[{"type":"string","name":"title","label":"Title","description":"Optional title for JotForm","namespace":["offices","publicTransport","InlineJotForm","title"],"searchable":true,"uid":false},{"type":"string","name":"jotFormId","label":"JotForm ID","required":true,"namespace":["offices","publicTransport","InlineJotForm","jotFormId"],"searchable":true,"uid":false},{"type":"string","name":"additionalClasses","label":"Additional classnames","description":"Optional styling for iframe element only","namespace":["offices","publicTransport","InlineJotForm","additionalClasses"],"searchable":true,"uid":false}],"namespace":["offices","publicTransport","InlineJotForm"]}],"namespace":["offices","publicTransport"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"Team","name":"team","templates":[{"name":"AboutUs","label":"About Us","ui":{"previewSrc":"/images/thumbs/tina/about-us.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["offices","team","AboutUs","backgroundColor"],"searchable":true,"uid":false},{"type":"boolean","label":"Show Map","name":"showMap","required":false,"namespace":["offices","team","AboutUs","showMap"],"searchable":true,"uid":false}],"namespace":["offices","team","AboutUs"]},{"label":"Agenda","name":"Agenda","ui":{"previewSrc":"/images/thumbs/tina/agenda.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["offices","team","Agenda","header"],"searchable":true,"uid":false},{"type":"string","label":"Header Color","name":"textColor","options":[{"label":"Red","value":"red"},{"label":"Gray","value":"gray"},{"label":"Default","value":"default"}],"namespace":["offices","team","Agenda","textColor"],"searchable":true,"uid":false},{"type":"object","label":"Agenda Items","name":"agendaItemList","ui":{},"list":true,"fields":[{"type":"string","label":"Placeholder Text","name":"placeholder","namespace":["offices","photos","Agenda","agendaItemList","placeholder"]},{"type":"rich-text","label":"Body","name":"body","templates":[{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["products","_body","Agenda","agendaItemList","body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["products","_body","Agenda","agendaItemList","body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["products","_body","Agenda","agendaItemList","body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["products","_body","Agenda","agendaItemList","body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["products","_body","Agenda","agendaItemList","body","VerticalListItem","afterBody"]}],"namespace":["offices","_body","Agenda","agendaItemList","body","VerticalListItem"]}],"namespace":["offices","photos","Agenda","agendaItemList","body"]}],"namespace":["offices","team","Agenda","agendaItemList"],"searchable":true,"uid":false}],"namespace":["offices","team","Agenda"]},{"label":"Agreement Form","name":"AgreementForm","ui":{"previewSrc":"/images/thumbs/tina/agreement-form.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["offices","team","AgreementForm","backgroundColor"],"searchable":true,"uid":false},{"type":"object","label":"Form fields","name":"fields","list":true,"fields":[{"type":"string","label":"ID","name":"id","required":true,"namespace":["offices","photos","AgreementForm","fields","id"]},{"type":"string","label":"Label","name":"label","required":true,"namespace":["offices","photos","AgreementForm","fields","label"]},{"type":"string","label":"Placeholder","name":"placeholder","namespace":["offices","photos","AgreementForm","fields","placeholder"]},{"type":"boolean","label":"Resizeable","name":"resizeable","required":true,"namespace":["offices","photos","AgreementForm","fields","resizeable"]}],"namespace":["offices","team","AgreementForm","fields"],"searchable":true,"uid":false}],"namespace":["offices","team","AgreementForm"]},{"label":"Interest Form","name":"InterestForm","ui":{"previewSrc":"/images/thumbs/tina/interest-form.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["offices","team","InterestForm","buttonText"],"searchable":true,"uid":false}],"namespace":["offices","team","InterestForm"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["offices","team","BookingButton","buttonText"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","namespace":["offices","team","BookingButton","animated"],"searchable":true,"uid":false},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["offices","team","BookingButton","buttonSubtitle"],"searchable":true,"uid":false}],"namespace":["offices","team","BookingButton"]},{"name":"BuiltOnAzure","label":"Built on Azure","ui":{"previewSrc":"/images/thumbs/tina/built-on-azure.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["offices","team","BuiltOnAzure","backgroundColor"],"searchable":true,"uid":false}],"namespace":["offices","team","BuiltOnAzure"]},{"name":"Carousel","label":"Carousel","ui":{"previewSrc":"/images/thumbs/tina/carousel.jpg"},"fields":[{"label":"Items","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Item description","link":"/","openIn":"sameWindow"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["offices","photos","Carousel","items","label"]},{"type":"string","label":"URL","name":"link","description":"If link contains ssw.com.au, you can skip the full URL and just use the path. e.g. /services","namespace":["offices","photos","Carousel","items","link"]},{"type":"string","label":"Open in","name":"openIn","description":"If it is external link, please select 'New window' option.","options":[{"label":"Same window","value":"sameWindow"},{"label":"Modal","value":"modal"},{"label":"New window","value":"newWindow"}],"namespace":["offices","photos","Carousel","items","openIn"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","Carousel","items","imgSrc","uploadDir"]},"namespace":["offices","photos","Carousel","items","imgSrc"]}],"namespace":["offices","team","Carousel","items"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["offices","team","Carousel","backgroundColor"],"searchable":true,"uid":false},{"type":"number","label":"Delay (Seconds)","name":"delay","required":true,"namespace":["offices","team","Carousel","delay"],"searchable":true,"uid":false},{"type":"boolean","label":"Show on mobile devices","name":"showOnMobileDevices","namespace":["offices","team","Carousel","showOnMobileDevices"],"searchable":true,"uid":false}],"namespace":["offices","team","Carousel"]},{"name":"Citation","label":"Citation","fields":[{"type":"string","label":"author","name":"author","namespace":["offices","team","Citation","author"],"searchable":true,"uid":false},{"type":"string","label":"article","name":"article","required":true,"namespace":["offices","team","Citation","article"],"searchable":true,"uid":false}],"namespace":["offices","team","Citation"]},{"label":"Client List","name":"ClientList","ui":{"previewSrc":"/images/thumbs/tina/clients-list.jpg"},"fields":[{"type":"object","name":"categories","label":"Categories","list":true,"fields":[{"type":"reference","name":"category","label":"Category","collections":["clientCategories"],"namespace":["offices","photos","ClientList","categories","category"]}],"ui":{},"namespace":["offices","team","ClientList","categories"],"searchable":true,"uid":false},{"type":"object","name":"clients","label":"Clients list","list":true,"ui":{"previewSrc":"/images/thumbs/tina/clients-list.jpg"},"fields":[{"type":"string","name":"name","label":"Name","namespace":["offices","photos","ClientList","clients","name"]},{"type":"image","name":"logo","label":"Logo","namespace":["offices","photos","ClientList","clients","logo"]},{"type":"string","name":"logoUrl","label":"Logo URL","namespace":["offices","photos","ClientList","clients","logoUrl"]},{"type":"rich-text","name":"content","label":"Content","templates":[{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["products","_body","ClientList","clients","content","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["products","_body","ClientList","clients","content","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["products","_body","ClientList","clients","content","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["products","_body","ClientList","clients","content","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["products","_body","ClientList","clients","content","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["products","_body","ClientList","clients","content","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["products","_body","ClientList","clients","content","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["products","_body","ClientList","clients","content","UtilityButton","openInNewTab"]}],"namespace":["offices","_body","ClientList","clients","content","UtilityButton"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["products","_body","ClientList","clients","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["products","_body","ClientList","clients","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["products","_body","ClientList","clients","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["products","_body","ClientList","clients","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["products","_body","ClientList","clients","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["products","_body","ClientList","clients","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["products","_body","ClientList","clients","content","VideoEmbed","duration"]}],"namespace":["offices","_body","ClientList","clients","content","VideoEmbed"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["products","_body","ClientList","clients","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["products","_body","ClientList","clients","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["products","_body","ClientList","clients","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["products","_body","ClientList","clients","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["products","_body","ClientList","clients","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["products","_body","ClientList","clients","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["products","_body","ClientList","clients","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["products","_body","ClientList","clients","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["products","_body","ClientList","clients","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["products","_body","ClientList","clients","content","CustomImage","sizes"]}],"namespace":["offices","_body","ClientList","clients","content","CustomImage"]},{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["products","_body","ClientList","clients","content","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["products","_body","ClientList","clients","content","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["training","footer","ClientList","clients","content","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["training","footer","ClientList","clients","content","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["training","footer","ClientList","clients","content","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["training","footer","ClientList","clients","content","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["training","footer","ClientList","clients","content","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["training","footer","ClientList","clients","content","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["training","footer","ClientList","clients","content","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["training","footer","ClientList","clients","content","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["training","footer","ClientList","clients","content","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["training","footer","ClientList","clients","content","ContentCard","content","CustomImage","sizes"]}],"namespace":["training","_body","ClientList","clients","content","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["training","footer","ClientList","clients","content","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["training","footer","ClientList","clients","content","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["training","footer","ClientList","clients","content","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["training","footer","ClientList","clients","content","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["training","footer","ClientList","clients","content","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["training","_body","ClientList","clients","content","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["training","footer","ClientList","clients","content","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["training","footer","ClientList","clients","content","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["training","footer","ClientList","clients","content","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["training","footer","ClientList","clients","content","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["training","footer","ClientList","clients","content","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["training","footer","ClientList","clients","content","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["training","footer","ClientList","clients","content","ContentCard","content","VideoEmbed","duration"]}],"namespace":["training","_body","ClientList","clients","content","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["training","footer","ClientList","clients","content","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["training","footer","ClientList","clients","content","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["training","footer","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["training","_body","ClientList","clients","content","ContentCard","content","ColorBlock"]}],"namespace":["products","_body","ClientList","clients","content","ContentCard","content"]}],"namespace":["offices","_body","ClientList","clients","content","ContentCard"]}],"namespace":["offices","photos","ClientList","clients","content"]},{"type":"string","name":"caseStudyUrl","label":"Case study URL","namespace":["offices","photos","ClientList","clients","caseStudyUrl"]},{"type":"object","name":"categories","label":"Categories","list":true,"ui":{},"fields":[{"type":"reference","name":"category","label":"Category","collections":["clientCategories"],"namespace":["offices","_body","ClientList","clients","categories","category"]}],"namespace":["offices","photos","ClientList","clients","categories"]}],"namespace":["offices","team","ClientList","clients"],"searchable":true,"uid":false}],"namespace":["offices","team","ClientList"]},{"name":"ClientLogos","label":"Client Logos","ui":{"previewSrc":"/images/thumbs/tina/client-logos.jpg"},"fields":[{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","team","ClientLogos","altText"],"searchable":true,"uid":false}],"namespace":["offices","team","ClientLogos"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","team","ColorBlock","title"],"searchable":true,"uid":false},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["offices","team","ColorBlock","subTitle"],"searchable":true,"uid":false},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","photos","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["offices","photos","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","photos","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["offices","photos","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["offices","photos","ColorBlock","colorRow","caption"]}],"namespace":["offices","team","ColorBlock","colorRow"],"searchable":true,"uid":false}],"namespace":["offices","team","ColorBlock"]},{"name":"ColorPalette","label":"Color Palette","ui":{"previewSrc":"/images/thumbs/tina/color-palette.jpg"},"fields":[{"type":"string","label":"Name","name":"name","namespace":["offices","team","ColorPalette","name"],"searchable":true,"uid":false}],"namespace":["offices","team","ColorPalette"]},{"name":"Content","label":"Content","ui":{"previewSrc":"/images/thumbs/tina/content.jpg","defaultItem":{"body":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","team","Content","title"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","_body","Content","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","_body","Content","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","_body","Content","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","_body","Content","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","_body","Content","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","_body","Content","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","_body","Content","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","_body","Content","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","_body","Content","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","_body","Content","content","CustomImage","sizes"]}],"namespace":["offices","photos","Content","content","CustomImage"]},{"name":"ClientLogos","label":"Client Logos","ui":{"previewSrc":"/images/thumbs/tina/client-logos.jpg"},"fields":[{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","_body","Content","content","ClientLogos","altText"]}],"namespace":["offices","photos","Content","content","ClientLogos"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","_body","Content","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","_body","Content","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","_body","Content","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","_body","Content","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","_body","Content","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","_body","Content","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","_body","Content","content","VideoEmbed","duration"]}],"namespace":["offices","photos","Content","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","_body","Content","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["offices","_body","Content","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["products","_body","Content","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["products","_body","Content","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["products","_body","Content","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["products","_body","Content","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["products","_body","Content","content","ColorBlock","colorRow","caption"]}],"namespace":["offices","_body","Content","content","ColorBlock","colorRow"]}],"namespace":["offices","photos","Content","content","ColorBlock"]}],"namespace":["offices","team","Content","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Container Padding","name":"paddingClass","options":["Mobile: No Padding","Mobile: No Top and Horizontal Padding"],"namespace":["offices","team","Content","paddingClass"],"searchable":true,"uid":false},{"type":"string","label":"Text size","name":"size","options":[{"label":"small","value":"sm"},{"label":"normal","value":"base"},{"label":"large","value":"lg"},{"label":"extra large","value":"xl"},{"label":"2x large","value":"2xl"}],"namespace":["offices","team","Content","size"],"searchable":true,"uid":false},{"type":"string","label":"Align","name":"align","options":[{"label":"Left","value":"left"},{"label":"Center","value":"center"},{"label":"Right","value":"right"}],"namespace":["offices","team","Content","align"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["offices","team","Content","backgroundColor"],"searchable":true,"uid":false}],"namespace":["offices","team","Content"]},{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["offices","team","ContentCard","prose"],"searchable":true,"uid":false},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["offices","team","ContentCard","centerAlignedText"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","_body","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","_body","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","_body","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","_body","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","_body","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","_body","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","_body","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","_body","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","_body","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","_body","ContentCard","content","CustomImage","sizes"]}],"namespace":["offices","photos","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["offices","_body","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["offices","_body","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["offices","_body","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["offices","_body","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["offices","_body","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["offices","photos","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","_body","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","_body","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","_body","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","_body","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","_body","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","_body","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","_body","ContentCard","content","VideoEmbed","duration"]}],"namespace":["offices","photos","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","_body","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["offices","_body","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["products","_body","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["products","_body","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["products","_body","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["products","_body","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["products","_body","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["offices","_body","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["offices","photos","ContentCard","content","ColorBlock"]}],"namespace":["offices","team","ContentCard","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["offices","team","ContentCard"]},{"name":"CustomDownloadButton","label":"Custom Download Button","ui":{"previewSrc":"/images/thumbs/tina/custom-download-button.jpg"},"fields":[{"type":"string","label":"Text","name":"btnText","namespace":["offices","team","CustomDownloadButton","btnText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"btnLink","namespace":["offices","team","CustomDownloadButton","btnLink"],"searchable":true,"uid":false}],"namespace":["offices","team","CustomDownloadButton"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","team","CustomImage","src"],"searchable":false,"uid":false},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","team","CustomImage","altText"],"searchable":true,"uid":false},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","team","CustomImage","alignment"],"searchable":true,"uid":false},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","team","CustomImage","height"],"searchable":true,"uid":false},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","team","CustomImage","width"],"searchable":true,"uid":false},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","team","CustomImage","link"],"searchable":true,"uid":false},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","team","CustomImage","customClass"],"searchable":true,"uid":false},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","team","CustomImage","caption"],"searchable":true,"uid":false},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","team","CustomImage","captionColor"],"searchable":true,"uid":false},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","team","CustomImage","sizes"],"searchable":true,"uid":false}],"namespace":["offices","team","CustomImage"]},{"name":"DomainFromQuery","label":"Domain from query","ui":{"previewSrc":"/images/thumbs/tina/domain-from-query.jpg"},"fields":[{"name":"title","label":"Title","type":"string","description":"This is a H1 heading","namespace":["offices","team","DomainFromQuery","title"],"searchable":true,"uid":false},{"name":"showDomain","label":"Show domain name","type":"boolean","description":"Query param in URL must have key of 'domain'","namespace":["offices","team","DomainFromQuery","showDomain"],"searchable":true,"uid":false}],"namespace":["offices","team","DomainFromQuery"]},{"name":"DownloadBlock","label":"Download Block","ui":{"previewSrc":"/images/thumbs/tina/download-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","team","DownloadBlock","title"],"searchable":true,"uid":false},{"type":"object","label":"Downloads","name":"downloads","ui":{},"list":true,"fields":[{"type":"string","label":"Header","name":"header","namespace":["offices","photos","DownloadBlock","downloads","header"]},{"type":"image","label":"Image","name":"img","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","img","uploadDir"]},"namespace":["offices","photos","DownloadBlock","downloads","img"]},{"type":"string","label":"Image Background","name":"imgBackground","options":["black","grey","white","darkgrey","darkgreen"],"namespace":["offices","photos","DownloadBlock","downloads","imgBackground"]},{"type":"string","label":"First Link Text","name":"firstLinkText","description":"Defaults to PNG","namespace":["offices","photos","DownloadBlock","downloads","firstLinkText"]},{"type":"image","label":"First Link","name":"firstLink","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","firstLink","uploadDir"]},"namespace":["offices","photos","DownloadBlock","downloads","firstLink"]},{"type":"string","label":"Second Link Text","name":"secondLinkText","description":"Defaults to PDF","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","secondLinkText","uploadDir"]},"namespace":["offices","photos","DownloadBlock","downloads","secondLinkText"]},{"type":"image","label":"Second Link","name":"secondLink","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","secondLink","uploadDir"]},"namespace":["offices","photos","DownloadBlock","downloads","secondLink"]}],"namespace":["offices","team","DownloadBlock","downloads"],"searchable":true,"uid":false},{"type":"boolean","label":"Bottom border","name":"bottomBorder","namespace":["offices","team","DownloadBlock","bottomBorder"],"searchable":true,"uid":false}],"namespace":["offices","team","DownloadBlock"]},{"name":"DynamicColumns","label":"Dynamic Column Layout","fields":[{"type":"rich-text","label":"Column text body","name":"colBody","required":true,"namespace":["offices","team","DynamicColumns","colBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"number","label":"Number of columns","name":"colCount","required":true,"ui":{},"namespace":["offices","team","DynamicColumns","colCount"],"searchable":true,"uid":false}],"namespace":["offices","team","DynamicColumns"]},{"name":"EventBooking","label":"Events Booking","ui":{"previewSrc":"/images/thumbs/tina/events-booking.jpg"},"fields":[{"type":"number","label":"Duration (In Days)","name":"eventDurationInDays","required":true,"namespace":["offices","team","EventBooking","eventDurationInDays"],"searchable":true,"uid":false},{"type":"number","label":"Price","name":"price","required":true,"namespace":["offices","team","EventBooking","price"],"searchable":true,"uid":false},{"type":"number","label":"Discount Price","name":"discountPrice","namespace":["offices","team","EventBooking","discountPrice"],"searchable":true,"uid":false},{"type":"string","name":"gstText","label":"Select GST Option","options":["inc GST","+ GST"],"required":true,"namespace":["offices","team","EventBooking","gstText"],"searchable":true,"uid":false},{"type":"string","label":"Discount Note","name":"discountNote","namespace":["offices","team","EventBooking","discountNote"],"searchable":true,"uid":false},{"type":"object","label":"Event","name":"eventList","ui":{},"list":true,"fields":[{"type":"string","label":"City","name":"city","namespace":["offices","photos","EventBooking","eventList","city"]},{"type":"datetime","label":"Start Date","name":"date","ui":{},"namespace":["offices","photos","EventBooking","eventList","date"]},{"type":"string","label":"Booking URL","name":"bookingURL","namespace":["offices","photos","EventBooking","eventList","bookingURL"]},{"type":"reference","label":"Location","name":"location","collections":["locations"],"namespace":["offices","photos","EventBooking","eventList","location"]}],"namespace":["offices","team","EventBooking","eventList"],"searchable":true,"uid":false}],"namespace":["offices","team","EventBooking"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["offices","_body","EventLink","content","Flag","country"]}],"namespace":["offices","photos","EventLink","content","Flag"]}],"namespace":["offices","team","EventLink","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Link","name":"link","namespace":["offices","team","EventLink","link"],"searchable":true,"uid":false},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["offices","team","EventLink","eventThumbnail"],"searchable":false,"uid":false},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["offices","team","EventLink","thumbnailAlt"],"searchable":true,"uid":false}],"namespace":["offices","team","EventLink"]},{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["offices","team","Flag","country"],"searchable":true,"uid":false}],"namespace":["offices","team","Flag"]},{"name":"FixedColumns","label":"Fixed Column Layout (2 columns)","ui":{"previewSrc":"/images/thumbs/tina/fixed-columns.jpg"},"fields":[{"type":"rich-text","label":"Header Section (Optional)","name":"headerSection","namespace":["offices","team","FixedColumns","headerSection"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"First column text","name":"firstColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["offices","_body","FixedColumns","firstColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["offices","_body","FixedColumns","firstColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["training","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["training","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["training","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["training","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["training","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["training","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["training","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["training","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["training","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["training","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["products","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["training","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["training","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["training","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["training","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["training","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["products","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["training","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["training","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["training","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["training","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["training","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["training","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["training","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["products","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["training","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["training","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["training","footer","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["training","footer","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["training","footer","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["training","footer","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["training","footer","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["training","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["products","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock"]}],"namespace":["offices","_body","FixedColumns","firstColBody","ContentCard","content"]}],"namespace":["offices","photos","FixedColumns","firstColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","_body","FixedColumns","firstColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","_body","FixedColumns","firstColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","_body","FixedColumns","firstColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","_body","FixedColumns","firstColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","_body","FixedColumns","firstColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","_body","FixedColumns","firstColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","_body","FixedColumns","firstColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","_body","FixedColumns","firstColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","_body","FixedColumns","firstColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","_body","FixedColumns","firstColBody","CustomImage","sizes"]}],"namespace":["offices","photos","FixedColumns","firstColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["training","_body","FixedColumns","firstColBody","EventLink","content","Flag","country"]}],"namespace":["products","_body","FixedColumns","firstColBody","EventLink","content","Flag"]}],"namespace":["offices","_body","FixedColumns","firstColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["offices","_body","FixedColumns","firstColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["offices","_body","FixedColumns","firstColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["offices","_body","FixedColumns","firstColBody","EventLink","thumbnailAlt"]}],"namespace":["offices","photos","FixedColumns","firstColBody","EventLink"]}],"namespace":["offices","team","FixedColumns","firstColBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"Second column text","name":"secondColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["offices","_body","FixedColumns","secondColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["offices","_body","FixedColumns","secondColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["training","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["training","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["training","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["training","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["training","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["training","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["training","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["training","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["training","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["training","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["products","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["training","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["training","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["training","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["training","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["training","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["products","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["training","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["training","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["training","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["training","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["training","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["training","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["training","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["products","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["training","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["training","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["training","footer","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["training","footer","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["training","footer","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["training","footer","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["training","footer","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["training","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["products","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock"]}],"namespace":["offices","_body","FixedColumns","secondColBody","ContentCard","content"]}],"namespace":["offices","photos","FixedColumns","secondColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","_body","FixedColumns","secondColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","_body","FixedColumns","secondColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","_body","FixedColumns","secondColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","_body","FixedColumns","secondColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","_body","FixedColumns","secondColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","_body","FixedColumns","secondColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","_body","FixedColumns","secondColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","_body","FixedColumns","secondColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","_body","FixedColumns","secondColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","_body","FixedColumns","secondColBody","CustomImage","sizes"]}],"namespace":["offices","photos","FixedColumns","secondColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["training","_body","FixedColumns","secondColBody","EventLink","content","Flag","country"]}],"namespace":["products","_body","FixedColumns","secondColBody","EventLink","content","Flag"]}],"namespace":["offices","_body","FixedColumns","secondColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["offices","_body","FixedColumns","secondColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["offices","_body","FixedColumns","secondColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["offices","_body","FixedColumns","secondColBody","EventLink","thumbnailAlt"]}],"namespace":["offices","photos","FixedColumns","secondColBody","EventLink"]}],"namespace":["offices","team","FixedColumns","secondColBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["offices","team","FixedColumns"]},{"name":"FixedTabsLayout","label":"Fixed Tabs Layout","ui":{"previewSrc":"/images/thumbs/tina/fixed-tabs-layout.jpg"},"fields":[{"type":"string","name":"firstTab","label":"First Tab","namespace":["offices","team","FixedTabsLayout","firstTab"],"searchable":true,"uid":false},{"type":"rich-text","name":"firstHeading","label":"First Heading","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","_body","FixedTabsLayout","firstHeading","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","_body","FixedTabsLayout","firstHeading","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","_body","FixedTabsLayout","firstHeading","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","_body","FixedTabsLayout","firstHeading","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","_body","FixedTabsLayout","firstHeading","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","_body","FixedTabsLayout","firstHeading","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","_body","FixedTabsLayout","firstHeading","VideoEmbed","duration"]}],"namespace":["offices","photos","FixedTabsLayout","firstHeading","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["offices","_body","FixedTabsLayout","firstHeading","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["offices","_body","FixedTabsLayout","firstHeading","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["offices","_body","FixedTabsLayout","firstHeading","BookingButton","buttonSubtitle"]}],"namespace":["offices","photos","FixedTabsLayout","firstHeading","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["offices","_body","FixedTabsLayout","firstHeading","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["products","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["products","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["products","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["products","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList","skills"]}],"namespace":["offices","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["products","_body","FixedTabsLayout","firstHeading","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["products","_body","FixedTabsLayout","firstHeading","ExpertBlock","link","url"]}],"namespace":["offices","_body","FixedTabsLayout","firstHeading","ExpertBlock","link"]}],"namespace":["offices","photos","FixedTabsLayout","firstHeading","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["products","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["products","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["products","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["training","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["training","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["training","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["products","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["offices","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["offices","photos","FixedTabsLayout","firstHeading","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","_body","FixedTabsLayout","firstHeading","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","_body","FixedTabsLayout","firstHeading","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","_body","FixedTabsLayout","firstHeading","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","_body","FixedTabsLayout","firstHeading","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","_body","FixedTabsLayout","firstHeading","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","_body","FixedTabsLayout","firstHeading","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","_body","FixedTabsLayout","firstHeading","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","_body","FixedTabsLayout","firstHeading","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","_body","FixedTabsLayout","firstHeading","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","_body","FixedTabsLayout","firstHeading","CustomImage","sizes"]}],"namespace":["offices","photos","FixedTabsLayout","firstHeading","CustomImage"]}],"namespace":["offices","team","FixedTabsLayout","firstHeading"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","name":"firstBody","label":"First Body","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","_body","FixedTabsLayout","firstBody","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","_body","FixedTabsLayout","firstBody","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","_body","FixedTabsLayout","firstBody","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","_body","FixedTabsLayout","firstBody","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","_body","FixedTabsLayout","firstBody","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","_body","FixedTabsLayout","firstBody","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","_body","FixedTabsLayout","firstBody","VideoEmbed","duration"]}],"namespace":["offices","photos","FixedTabsLayout","firstBody","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["offices","_body","FixedTabsLayout","firstBody","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["offices","_body","FixedTabsLayout","firstBody","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["offices","_body","FixedTabsLayout","firstBody","BookingButton","buttonSubtitle"]}],"namespace":["offices","photos","FixedTabsLayout","firstBody","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["offices","_body","FixedTabsLayout","firstBody","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["products","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["products","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["products","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["products","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList","skills"]}],"namespace":["offices","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["products","_body","FixedTabsLayout","firstBody","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["products","_body","FixedTabsLayout","firstBody","ExpertBlock","link","url"]}],"namespace":["offices","_body","FixedTabsLayout","firstBody","ExpertBlock","link"]}],"namespace":["offices","photos","FixedTabsLayout","firstBody","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["products","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["products","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["products","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["training","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["training","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["training","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["products","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["offices","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["offices","photos","FixedTabsLayout","firstBody","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","_body","FixedTabsLayout","firstBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","_body","FixedTabsLayout","firstBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","_body","FixedTabsLayout","firstBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","_body","FixedTabsLayout","firstBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","_body","FixedTabsLayout","firstBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","_body","FixedTabsLayout","firstBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","_body","FixedTabsLayout","firstBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","_body","FixedTabsLayout","firstBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","_body","FixedTabsLayout","firstBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","_body","FixedTabsLayout","firstBody","CustomImage","sizes"]}],"namespace":["offices","photos","FixedTabsLayout","firstBody","CustomImage"]}],"namespace":["offices","team","FixedTabsLayout","firstBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","name":"secondTab","label":"Second Tab","namespace":["offices","team","FixedTabsLayout","secondTab"],"searchable":true,"uid":false},{"type":"rich-text","name":"secondHeading","label":"Second Heading","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","_body","FixedTabsLayout","secondHeading","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","_body","FixedTabsLayout","secondHeading","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","_body","FixedTabsLayout","secondHeading","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","_body","FixedTabsLayout","secondHeading","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","_body","FixedTabsLayout","secondHeading","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","_body","FixedTabsLayout","secondHeading","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","_body","FixedTabsLayout","secondHeading","VideoEmbed","duration"]}],"namespace":["offices","photos","FixedTabsLayout","secondHeading","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["offices","_body","FixedTabsLayout","secondHeading","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["offices","_body","FixedTabsLayout","secondHeading","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["offices","_body","FixedTabsLayout","secondHeading","BookingButton","buttonSubtitle"]}],"namespace":["offices","photos","FixedTabsLayout","secondHeading","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["offices","_body","FixedTabsLayout","secondHeading","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["products","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["products","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["products","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["products","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList","skills"]}],"namespace":["offices","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["products","_body","FixedTabsLayout","secondHeading","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["products","_body","FixedTabsLayout","secondHeading","ExpertBlock","link","url"]}],"namespace":["offices","_body","FixedTabsLayout","secondHeading","ExpertBlock","link"]}],"namespace":["offices","photos","FixedTabsLayout","secondHeading","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["products","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["products","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["products","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["training","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["training","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["training","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["products","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["offices","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["offices","photos","FixedTabsLayout","secondHeading","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","_body","FixedTabsLayout","secondHeading","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","_body","FixedTabsLayout","secondHeading","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","_body","FixedTabsLayout","secondHeading","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","_body","FixedTabsLayout","secondHeading","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","_body","FixedTabsLayout","secondHeading","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","_body","FixedTabsLayout","secondHeading","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","_body","FixedTabsLayout","secondHeading","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","_body","FixedTabsLayout","secondHeading","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","_body","FixedTabsLayout","secondHeading","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","_body","FixedTabsLayout","secondHeading","CustomImage","sizes"]}],"namespace":["offices","photos","FixedTabsLayout","secondHeading","CustomImage"]}],"namespace":["offices","team","FixedTabsLayout","secondHeading"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","name":"secondBody","label":"Second Body","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","_body","FixedTabsLayout","secondBody","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","_body","FixedTabsLayout","secondBody","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","_body","FixedTabsLayout","secondBody","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","_body","FixedTabsLayout","secondBody","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","_body","FixedTabsLayout","secondBody","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","_body","FixedTabsLayout","secondBody","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","_body","FixedTabsLayout","secondBody","VideoEmbed","duration"]}],"namespace":["offices","photos","FixedTabsLayout","secondBody","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["offices","_body","FixedTabsLayout","secondBody","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["offices","_body","FixedTabsLayout","secondBody","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["offices","_body","FixedTabsLayout","secondBody","BookingButton","buttonSubtitle"]}],"namespace":["offices","photos","FixedTabsLayout","secondBody","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["offices","_body","FixedTabsLayout","secondBody","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["products","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["products","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["products","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["products","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList","skills"]}],"namespace":["offices","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["products","_body","FixedTabsLayout","secondBody","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["products","_body","FixedTabsLayout","secondBody","ExpertBlock","link","url"]}],"namespace":["offices","_body","FixedTabsLayout","secondBody","ExpertBlock","link"]}],"namespace":["offices","photos","FixedTabsLayout","secondBody","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["products","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["products","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["products","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["training","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["training","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["training","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["products","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["offices","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["offices","photos","FixedTabsLayout","secondBody","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","_body","FixedTabsLayout","secondBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","_body","FixedTabsLayout","secondBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","_body","FixedTabsLayout","secondBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","_body","FixedTabsLayout","secondBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","_body","FixedTabsLayout","secondBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","_body","FixedTabsLayout","secondBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","_body","FixedTabsLayout","secondBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","_body","FixedTabsLayout","secondBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","_body","FixedTabsLayout","secondBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","_body","FixedTabsLayout","secondBody","CustomImage","sizes"]}],"namespace":["offices","photos","FixedTabsLayout","secondBody","CustomImage"]}],"namespace":["offices","team","FixedTabsLayout","secondBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["offices","team","FixedTabsLayout"]},{"label":"Google Maps","name":"GoogleMaps","ui":{"previewSrc":"/images/thumbs/tina/google-maps.jpg"},"fields":[{"type":"string","label":"URL","name":"embedUrl","required":true,"namespace":["offices","team","GoogleMaps","embedUrl"],"searchable":true,"uid":false},{"type":"string","label":"Width","name":"embedWidth","namespace":["offices","team","GoogleMaps","embedWidth"],"searchable":true,"uid":false},{"type":"string","label":"Height","name":"embedHeight","namespace":["offices","team","GoogleMaps","embedHeight"],"searchable":true,"uid":false}],"namespace":["offices","team","GoogleMaps"]},{"label":"Grid Layout","name":"GridLayout","ui":{"previewSrc":"/images/thumbs/tina/grid-layout.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","team","GridLayout","title"],"searchable":true,"uid":false},{"type":"object","list":true,"label":"Grid Items","name":"grids","ui":{},"fields":[{"type":"string","label":"Grid Title","name":"gridTitle","namespace":["offices","photos","GridLayout","grids","gridTitle"]},{"type":"boolean","label":"Show Grid Title","name":"showGridTitle","namespace":["offices","photos","GridLayout","grids","showGridTitle"]},{"type":"boolean","label":"Centered Grid Title","name":"centeredGridTitle","namespace":["offices","photos","GridLayout","grids","centeredGridTitle"]},{"type":"boolean","label":"Show Header Divider","name":"showHeaderDivider","namespace":["offices","photos","GridLayout","grids","showHeaderDivider"]},{"type":"boolean","label":"Offset Grid Start","name":"offsetGridStart","namespace":["offices","photos","GridLayout","grids","offsetGridStart"]},{"type":"object","label":"Blocks","name":"blocks","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","_body","GridLayout","grids","blocks","title"]},{"type":"boolean","label":"Show Title","name":"showTitle","namespace":["offices","_body","GridLayout","grids","blocks","showTitle"]},{"type":"image","label":"Image","name":"image","uploadDir":{"namespace":["page","beforeBody","GridLayout","grids","blocks","image","uploadDir"]},"namespace":["offices","_body","GridLayout","grids","blocks","image"]},{"type":"image","label":"Related Image","name":"relatedImage","uploadDir":{"namespace":["page","beforeBody","GridLayout","grids","blocks","relatedImage","uploadDir"]},"namespace":["offices","_body","GridLayout","grids","blocks","relatedImage"]},{"type":"rich-text","name":"linkContent","label":"Link Content","templates":[{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["training","_body","GridLayout","grids","blocks","linkContent","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["training","_body","GridLayout","grids","blocks","linkContent","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["training","_body","GridLayout","grids","blocks","linkContent","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["training","_body","GridLayout","grids","blocks","linkContent","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["training","_body","GridLayout","grids","blocks","linkContent","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["training","_body","GridLayout","grids","blocks","linkContent","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["training","_body","GridLayout","grids","blocks","linkContent","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["training","_body","GridLayout","grids","blocks","linkContent","UtilityButton","openInNewTab"]}],"namespace":["products","_body","GridLayout","grids","blocks","linkContent","UtilityButton"]}],"namespace":["offices","_body","GridLayout","grids","blocks","linkContent"]}],"namespace":["offices","photos","GridLayout","grids","blocks"]}],"namespace":["offices","team","GridLayout","grids"],"searchable":true,"uid":false}],"namespace":["offices","team","GridLayout"]},{"name":"Hero","label":"Hero","ui":{"previewSrc":"/blocks/hero.png","defaultItem":{"tagline":"Here's some text above the other text","headline":"This Big Text is Totally Awesome","text":"Phasellus scelerisque, libero eu finibus rutrum, risus risus accumsan libero, nec molestie urna dui a leo."}},"fields":[{"type":"string","label":"Tagline","name":"tagline","namespace":["offices","team","Hero","tagline"],"searchable":true,"uid":false},{"type":"string","label":"Headline","name":"headline","namespace":["offices","team","Hero","headline"],"searchable":true,"uid":false},{"label":"Text","name":"text","type":"rich-text","namespace":["offices","team","Hero","text"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"label":"Actions","name":"actions","type":"object","list":true,"ui":{"defaultItem":{"label":"Action Label","type":"button","icon":true,"link":"/"}},"fields":[{"label":"Label","name":"label","type":"string","namespace":["offices","photos","Hero","actions","label"]},{"label":"Type","name":"type","type":"string","options":[{"label":"Button","value":"button"},{"label":"Link","value":"link"}],"namespace":["offices","photos","Hero","actions","type"]},{"label":"Icon","name":"icon","type":"boolean","namespace":["offices","photos","Hero","actions","icon"]},{"label":"Link","name":"link","type":"string","namespace":["offices","photos","Hero","actions","link"]}],"namespace":["offices","team","Hero","actions"],"searchable":true,"uid":false},{"type":"object","label":"Image","name":"image","fields":[{"name":"src","label":"Image Source","type":"image","namespace":["offices","photos","Hero","image","src"]},{"name":"alt","label":"Alt Text","type":"string","namespace":["offices","photos","Hero","image","alt"]}],"namespace":["offices","team","Hero","image"],"searchable":true,"uid":false},{"type":"string","label":"Color","name":"color","options":[{"label":"Default","value":"default"},{"label":"Tint","value":"tint"},{"label":"Primary","value":"primary"}],"namespace":["offices","team","Hero","color"],"searchable":true,"uid":false}],"namespace":["offices","team","Hero"]},{"name":"HorizontalCard","label":"Horizontal Card","ui":{"previewSrc":"/images/thumbs/tina/horizontal-card.jpg"},"fields":[{"type":"object","label":"Cards","name":"cardList","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","photos","HorizontalCard","cardList","title"]},{"type":"rich-text","label":"Content","name":"content","namespace":["offices","photos","HorizontalCard","cardList","content"]},{"type":"image","label":"Thumbnail","name":"thumbnail","uploadDir":{"namespace":["page","beforeBody","HorizontalCard","cardList","thumbnail","uploadDir"]},"namespace":["offices","photos","HorizontalCard","cardList","thumbnail"]},{"type":"string","label":"Link","name":"link","namespace":["offices","photos","HorizontalCard","cardList","link"]}],"namespace":["offices","team","HorizontalCard","cardList"],"searchable":true,"uid":false},{"type":"object","label":"Button","name":"button","fields":[{"type":"string","label":"Text","name":"text","namespace":["offices","photos","HorizontalCard","button","text"]},{"type":"string","label":"Link","name":"link","namespace":["offices","photos","HorizontalCard","button","link"]}],"namespace":["offices","team","HorizontalCard","button"],"searchable":true,"uid":false}],"namespace":["offices","team","HorizontalCard"]},{"name":"InternalCarousel","label":"Internal Carousel","ui":{"previewSrc":"/images/thumbs/tina/internal-carousel.jpg"},"fields":[{"label":"Images","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Image description"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["offices","photos","InternalCarousel","items","label"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","InternalCarousel","items","imgSrc","uploadDir"]},"namespace":["offices","photos","InternalCarousel","items","imgSrc"]}],"namespace":["offices","team","InternalCarousel","items"],"searchable":true,"uid":false},{"type":"string","label":"Header","name":"header","namespace":["offices","team","InternalCarousel","header"],"searchable":true,"uid":false},{"type":"rich-text","label":"Text","name":"paragraph","isBody":false,"namespace":["offices","team","InternalCarousel","paragraph"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Website","name":"website","namespace":["offices","team","InternalCarousel","website"],"searchable":true,"uid":false},{"type":"object","label":"Technologies","name":"technologies","list":true,"ui":{},"fields":[{"type":"string","label":"Name","name":"name","namespace":["offices","photos","InternalCarousel","technologies","name"]}],"namespace":["offices","team","InternalCarousel","technologies"],"searchable":true,"uid":false},{"type":"string","label":"Case Study","name":"caseStudyUrl","namespace":["offices","team","InternalCarousel","caseStudyUrl"],"searchable":true,"uid":false},{"type":"string","label":"Video URL","name":"videoUrl","namespace":["offices","team","InternalCarousel","videoUrl"],"searchable":true,"uid":false}],"namespace":["offices","team","InternalCarousel"]},{"label":"Join As Presenter","name":"joinAsPresenter","fields":[{"label":"Learn More Link","name":"link","type":"string","namespace":["offices","team","joinAsPresenter","link"],"searchable":true,"uid":false},{"label":"Image","name":"img","type":"image","namespace":["offices","team","joinAsPresenter","img"],"searchable":false,"uid":false}],"namespace":["offices","team","joinAsPresenter"]},{"label":"Join Github","name":"joinGithub","ui":{"previewSrc":"/images/thumbs/tina/join-github.jpg"},"fields":[{"label":"Title","name":"title","type":"string","namespace":["offices","team","joinGithub","title"],"searchable":true,"uid":false},{"label":"Join Github Link","name":"link","type":"string","namespace":["offices","team","joinGithub","link"],"searchable":true,"uid":false}],"namespace":["offices","team","joinGithub"]},{"name":"JotFormEmbed","label":"JotForm Embed","ui":{"previewSrc":"/images/thumbs/tina/jotform-embed.jpg"},"fields":[{"type":"string","name":"jotFormId","label":"JotForm Id","required":true,"namespace":["offices","team","JotFormEmbed","jotFormId"],"searchable":true,"uid":false},{"type":"string","label":"Button Text","name":"buttonText","namespace":["offices","team","JotFormEmbed","buttonText"],"searchable":true,"uid":false},{"type":"string","name":"containerClass","label":"Container Class","namespace":["offices","team","JotFormEmbed","containerClass"],"searchable":true,"uid":false},{"type":"string","label":"Button Class","name":"buttonClass","namespace":["offices","team","JotFormEmbed","buttonClass"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","namespace":["offices","team","JotFormEmbed","animated"],"searchable":true,"uid":false}],"namespace":["offices","team","JotFormEmbed"]},{"name":"LatestTech","label":"Latest Tech","ui":{"previewSrc":"/images/thumbs/tina/latest-tech.jpg"},"fields":[{"type":"reference","description":"Select a config file including a set of badges","collections":["userGroupGlobal"],"label":"Badges","name":"badges","namespace":["offices","team","LatestTech","badges"],"searchable":true,"uid":false}],"namespace":["offices","team","LatestTech"]},{"name":"LocationBlock","label":"Locations","ui":{"previewSrc":"/images/thumbs/tina/locations.jpg"},"fields":[{"type":"string","name":"title","label":"Title","namespace":["offices","team","LocationBlock","title"],"searchable":true,"uid":false},{"type":"object","label":"Location List","name":"locationList","list":true,"ui":{},"fields":[{"type":"reference","collections":["locations"],"label":"Location","name":"location","namespace":["offices","photos","LocationBlock","locationList","location"]}],"namespace":["offices","team","LocationBlock","locationList"],"searchable":true,"uid":false},{"type":"object","name":"chapelWebsite","label":"Chapel Website","fields":[{"type":"string","name":"title","label":"Text","namespace":["offices","photos","LocationBlock","chapelWebsite","title"]},{"type":"string","name":"URL","label":"URL","namespace":["offices","photos","LocationBlock","chapelWebsite","URL"]}],"namespace":["offices","team","LocationBlock","chapelWebsite"],"searchable":true,"uid":false}],"namespace":["offices","team","LocationBlock"]},{"name":"NewslettersTable","label":"Newsletters Table","ui":{"previewSrc":"/images/thumbs/tina/newsletters-table.jpg"},"fields":[{"type":"string","label":"Header text","name":"headerText","namespace":["offices","team","NewslettersTable","headerText"],"searchable":true,"uid":false}],"namespace":["offices","team","NewslettersTable"]},{"label":"Organizer","name":"organizer","fields":[{"type":"image","label":"Profile Image","name":"profileImg","namespace":["offices","team","organizer","profileImg"],"searchable":false,"uid":false},{"type":"string","label":"Profile Link","name":"profileLink","namespace":["offices","team","organizer","profileLink"],"searchable":true,"uid":false},{"type":"string","label":"Name","name":"name","namespace":["offices","team","organizer","name"],"searchable":true,"uid":false},{"type":"string","label":"Position","name":"position","namespace":["offices","team","organizer","position"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","namespace":["offices","team","organizer","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["offices","team","organizer"]},{"label":"Payment Block","name":"paymentBlock","ui":{"previewSrc":"/images/thumbs/tina/payment-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","team","paymentBlock","title"],"searchable":true,"uid":false},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["offices","team","paymentBlock","subTitle"],"searchable":true,"uid":false},{"type":"reference","label":"Payment Links","name":"payments","collections":["paymentDetails"],"namespace":["offices","team","paymentBlock","payments"],"searchable":true,"uid":false},{"type":"rich-text","label":"Footer","name":"footer","namespace":["offices","team","paymentBlock","footer"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"image","label":"Credit Cards Image","name":"creditImgSrc","namespace":["offices","team","paymentBlock","creditImgSrc"],"searchable":false,"uid":false},{"type":"string","label":"Alt Text","name":"altTxt","namespace":["offices","team","paymentBlock","altTxt"],"searchable":true,"uid":false}],"namespace":["offices","team","paymentBlock"]},{"name":"PresenterBlock","label":"Presenters","ui":{"previewSrc":"/images/thumbs/tina/presenters.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["offices","team","PresenterBlock","header"],"searchable":true,"uid":false},{"type":"object","name":"presenterList","label":"Presenters","list":true,"ui":{},"fields":[{"type":"reference","name":"presenter","label":"Presenters","collections":["presenter"],"namespace":["offices","photos","PresenterBlock","presenterList","presenter"]}],"namespace":["offices","team","PresenterBlock","presenterList"],"searchable":true,"uid":false},{"type":"object","label":"Other Events","name":"otherEvent","fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","photos","PresenterBlock","otherEvent","title"]},{"type":"string","label":"URL","name":"eventURL","namespace":["offices","photos","PresenterBlock","otherEvent","eventURL"]}],"namespace":["offices","team","PresenterBlock","otherEvent"],"searchable":true,"uid":false}],"namespace":["offices","team","PresenterBlock"]},{"label":"Recurring Event","name":"RecurringEvent","ui":{"previewSrc":"/images/thumbs/tina/recurring-event.jpg"},"fields":[{"type":"string","label":"Apply Link Redirect","name":"applyLinkRedirect","namespace":["offices","team","RecurringEvent","applyLinkRedirect"],"searchable":true,"uid":false},{"type":"string","label":"Day","name":"day","options":[{"label":"Monday","value":"monday"},{"label":"Tuesday","value":"tuesday"},{"label":"Wednesday","value":"wednesday"},{"label":"Thursday","value":"thursday"},{"label":"Friday","value":"friday"},{"label":"Saturday","value":"saturday"},{"label":"Sunday","value":"sunday"}],"required":true,"namespace":["offices","team","RecurringEvent","day"],"searchable":true,"uid":false}],"namespace":["offices","team","RecurringEvent"]},{"name":"SectionHeader","label":"Section Header","ui":{"previewSrc":"/images/thumbs/tina/section-header.jpg"},"fields":[{"type":"string","label":"Header Text","name":"headerText","namespace":["offices","team","SectionHeader","headerText"],"searchable":true,"uid":false}],"namespace":["offices","team","SectionHeader"]},{"name":"ServiceCards","label":"Service Cards","ui":{"previewSrc":"/images/thumbs/tina/services-cards.jpg"},"fields":[{"type":"string","label":"Big Cards Label","name":"bigCardsLabel","namespace":["offices","team","ServiceCards","bigCardsLabel"],"searchable":true,"uid":false},{"label":"Big Cards","name":"bigCards","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","photos","ServiceCards","bigCards","title"]},{"type":"string","label":"Description","component":"textarea","name":"description","namespace":["offices","photos","ServiceCards","bigCards","description"]},{"type":"string","label":"URL","name":"link","namespace":["offices","photos","ServiceCards","bigCards","link"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Red","value":"red"},{"label":"Light Gray","value":"lightgray"},{"label":"Medium Gray","value":"mediumgray"},{"label":"Dark Gray","value":"darkgray"}],"namespace":["offices","photos","ServiceCards","bigCards","color"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","ServiceCards","bigCards","imgSrc","uploadDir"]},"namespace":["offices","photos","ServiceCards","bigCards","imgSrc"]}],"namespace":["offices","team","ServiceCards","bigCards"],"searchable":true,"uid":false},{"type":"string","label":"Small Cards Label","name":"smallCardsLabel","namespace":["offices","team","ServiceCards","smallCardsLabel"],"searchable":true,"uid":false},{"label":"Small Cards","name":"smallCards","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","photos","ServiceCards","smallCards","title"]},{"type":"string","label":"URL","name":"link","namespace":["offices","photos","ServiceCards","smallCards","link"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Red","value":"red"},{"label":"Light Gray","value":"lightgray"},{"label":"Medium Gray","value":"mediumgray"},{"label":"Dark Gray","value":"darkgray"}],"namespace":["offices","photos","ServiceCards","smallCards","color"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","ServiceCards","smallCards","imgSrc","uploadDir"]},"namespace":["offices","photos","ServiceCards","smallCards","imgSrc"]},{"type":"boolean","label":"External Page","description":"Select this if the link is not part of the website. This includes SSW.Rules, and SSW.People links","name":"isExternal","namespace":["offices","photos","ServiceCards","smallCards","isExternal"]}],"namespace":["offices","team","ServiceCards","smallCards"],"searchable":true,"uid":false},{"label":"Links","name":"links","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["offices","photos","ServiceCards","links","label"]},{"type":"string","label":"URL","name":"link","namespace":["offices","photos","ServiceCards","links","link"]}],"namespace":["offices","team","ServiceCards","links"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["offices","team","ServiceCards","backgroundColor"],"searchable":true,"uid":false}],"namespace":["offices","team","ServiceCards"]},{"label":"Table Layout","name":"TableLayout","ui":{"previewSrc":"/images/thumbs/tina/table-layout.jpg"},"fields":[{"label":"Table Style","name":"tableStyle","type":"string","options":["none","basicBorder","styled","benefits"],"namespace":["offices","team","TableLayout","tableStyle"],"searchable":true,"uid":false},{"label":"First column bolded + left aligned","name":"firstColBold","type":"boolean","required":false,"namespace":["offices","team","TableLayout","firstColBold"],"searchable":true,"uid":false},{"type":"string","label":"Table Headers","name":"headers","list":true,"namespace":["offices","team","TableLayout","headers"],"searchable":true,"uid":false},{"type":"object","label":"Rows","name":"rows","list":true,"fields":[{"type":"object","label":"Cells","name":"cells","list":true,"fields":[{"type":"string","label":"Value","name":"cellValue","required":true,"component":{"namespace":["page","beforeBody","TableLayout","rows","cells","cellValue",""]},"namespace":["offices","_body","TableLayout","rows","cells","cellValue"]}],"ui":{},"namespace":["offices","photos","TableLayout","rows","cells"]},{"type":"boolean","label":"Is Heading","name":"isHeader","required":false,"namespace":["offices","photos","TableLayout","rows","isHeader"]}],"ui":{},"namespace":["offices","team","TableLayout","rows"],"searchable":true,"uid":false}],"namespace":["offices","team","TableLayout"]},{"name":"TestimonialsList","label":"Testimonials List","ui":{"previewSrc":"/images/thumbs/tina/testimonials.jpg"},"fields":[{"type":"object","label":"Exclude Categories","name":"excludedCategories","ui":{},"list":true,"fields":[{"type":"reference","label":"Category Name","name":"categoryName","collections":["testimonialCategories"],"namespace":["offices","photos","TestimonialsList","excludedCategories","categoryName"]}],"namespace":["offices","team","TestimonialsList","excludedCategories"],"searchable":true,"uid":false}],"namespace":["offices","team","TestimonialsList"]},{"label":"Training Information","name":"TrainingInformation","ui":{"previewSrc":"/images/thumbs/tina/training-information.jpg"},"fields":[{"type":"object","label":"Training Information Items","name":"trainingInformationItems","list":true,"fields":[{"type":"string","label":"Header","name":"header","namespace":["offices","photos","TrainingInformation","trainingInformationItems","header"]},{"type":"rich-text","label":"Body","name":"body","templates":[{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["products","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["products","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["products","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["products","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["products","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","afterBody"]}],"namespace":["offices","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem"]},{"label":"Recurring Event","name":"RecurringEvent","ui":{"previewSrc":"/images/thumbs/tina/recurring-event.jpg"},"fields":[{"type":"string","label":"Apply Link Redirect","name":"applyLinkRedirect","namespace":["products","_body","TrainingInformation","trainingInformationItems","body","RecurringEvent","applyLinkRedirect"]},{"type":"string","label":"Day","name":"day","options":[{"label":"Monday","value":"monday"},{"label":"Tuesday","value":"tuesday"},{"label":"Wednesday","value":"wednesday"},{"label":"Thursday","value":"thursday"},{"label":"Friday","value":"friday"},{"label":"Saturday","value":"saturday"},{"label":"Sunday","value":"sunday"}],"required":true,"namespace":["products","_body","TrainingInformation","trainingInformationItems","body","RecurringEvent","day"]}],"namespace":["offices","_body","TrainingInformation","trainingInformationItems","body","RecurringEvent"]}],"namespace":["offices","photos","TrainingInformation","trainingInformationItems","body"]}],"namespace":["offices","team","TrainingInformation","trainingInformationItems"],"searchable":true,"uid":false}],"namespace":["offices","team","TrainingInformation"]},{"label":"Training Learning Outcomes","name":"TrainingLearningOutcome","ui":{"previewSrc":"/images/thumbs/tina/training-learning-outcomes.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["offices","team","TrainingLearningOutcome","header"],"searchable":true,"uid":false},{"type":"object","label":"List Items","name":"listItems","list":true,"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","photos","TrainingLearningOutcome","listItems","title"]},{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["offices","photos","TrainingLearningOutcome","listItems","content"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","TrainingLearningOutcome","listItems","icon","uploadDir"]},"namespace":["offices","photos","TrainingLearningOutcome","listItems","icon"]}],"namespace":["offices","team","TrainingLearningOutcome","listItems"],"searchable":true,"uid":false}],"namespace":["offices","team","TrainingLearningOutcome"]},{"label":"Tweet Embed","name":"TweetEmbed","ui":{"previewSrc":"/images/thumbs/tina/tweet-embed.jpg"},"fields":[{"type":"string","name":"url","label":"Tweet URL","required":true,"namespace":["offices","team","TweetEmbed","url"],"searchable":true,"uid":false}],"namespace":["offices","team","TweetEmbed"]},{"name":"UpcomingEvents","label":"Upcoming Events","ui":{"previewSrc":"/images/thumbs/tina/upcoming-events.jpg","defaultItem":{"title":"Upcoming Events","numberOfEvents":30}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","team","UpcomingEvents","title"],"searchable":true,"uid":false},{"type":"number","label":"Number of Events","name":"numberOfEvents","namespace":["offices","team","UpcomingEvents","numberOfEvents"],"searchable":true,"uid":false}],"namespace":["offices","team","UpcomingEvents"]},{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["offices","team","UtilityButton","buttonText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"link","required":false,"namespace":["offices","team","UtilityButton","link"],"searchable":true,"uid":false},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["offices","team","UtilityButton","size"],"searchable":true,"uid":false},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["offices","team","UtilityButton","btnIcon"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["offices","team","UtilityButton","animated"],"searchable":true,"uid":false},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["offices","team","UtilityButton","uncentered"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["offices","team","UtilityButton","removeTopMargin"],"searchable":true,"uid":false},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["offices","team","UtilityButton","openInNewTab"],"searchable":true,"uid":false}],"namespace":["offices","team","UtilityButton"]},{"name":"VerticalImageLayout","label":"Vertical Image Layout","fields":[{"type":"image","label":"Image","name":"imageSrc","uploadDir":{"namespace":["page","beforeBody","VerticalImageLayout","imageSrc","uploadDir"]},"namespace":["offices","team","VerticalImageLayout","imageSrc"],"searchable":false,"uid":false},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","team","VerticalImageLayout","altText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"imageLink","namespace":["offices","team","VerticalImageLayout","imageLink"],"searchable":true,"uid":false},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","team","VerticalImageLayout","height"],"searchable":true,"uid":false},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","team","VerticalImageLayout","width"],"searchable":true,"uid":false},{"type":"rich-text","label":"Message","name":"message","required":true,"namespace":["offices","team","VerticalImageLayout","message"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","team","VerticalImageLayout","sizes"],"searchable":true,"uid":false}],"namespace":["offices","team","VerticalImageLayout"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["offices","team","VerticalListItem","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"number","label":"Index number","name":"index","namespace":["offices","team","VerticalListItem","index"],"searchable":true,"uid":false},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["offices","team","VerticalListItem","icon"],"searchable":false,"uid":false},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["offices","team","VerticalListItem","iconScale"],"searchable":true,"uid":false},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["offices","team","VerticalListItem","afterBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["offices","team","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","team","VideoEmbed","url"],"searchable":true,"uid":false},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","team","VideoEmbed","videoWidth"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","team","VideoEmbed","removeMargin"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","team","VideoEmbed","uncentre"],"searchable":true,"uid":false},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","team","VideoEmbed","overflow"],"searchable":true,"uid":false},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","team","VideoEmbed","caption"],"searchable":true,"uid":false},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","team","VideoEmbed","duration"],"searchable":true,"uid":false}],"namespace":["offices","team","VideoEmbed"]},{"name":"InlineJotForm","label":"In-line JotForm","ui":{"previewSrc":"/images/thumbs/tina/inline-jot-form.jpg"},"fields":[{"type":"string","name":"title","label":"Title","description":"Optional title for JotForm","namespace":["offices","team","InlineJotForm","title"],"searchable":true,"uid":false},{"type":"string","name":"jotFormId","label":"JotForm ID","required":true,"namespace":["offices","team","InlineJotForm","jotFormId"],"searchable":true,"uid":false},{"type":"string","name":"additionalClasses","label":"Additional classnames","description":"Optional styling for iframe element only","namespace":["offices","team","InlineJotForm","additionalClasses"],"searchable":true,"uid":false}],"namespace":["offices","team","InlineJotForm"]}],"namespace":["offices","team"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"Photos","name":"photos","templates":[{"name":"AboutUs","label":"About Us","ui":{"previewSrc":"/images/thumbs/tina/about-us.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["offices","photos","AboutUs","backgroundColor"],"searchable":true,"uid":false},{"type":"boolean","label":"Show Map","name":"showMap","required":false,"namespace":["offices","photos","AboutUs","showMap"],"searchable":true,"uid":false}],"namespace":["offices","photos","AboutUs"]},{"label":"Agenda","name":"Agenda","ui":{"previewSrc":"/images/thumbs/tina/agenda.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["offices","photos","Agenda","header"],"searchable":true,"uid":false},{"type":"string","label":"Header Color","name":"textColor","options":[{"label":"Red","value":"red"},{"label":"Gray","value":"gray"},{"label":"Default","value":"default"}],"namespace":["offices","photos","Agenda","textColor"],"searchable":true,"uid":false},{"type":"object","label":"Agenda Items","name":"agendaItemList","ui":{},"list":true,"fields":[{"type":"string","label":"Placeholder Text","name":"placeholder","namespace":["offices","_body","Agenda","agendaItemList","placeholder"]},{"type":"rich-text","label":"Body","name":"body","templates":[{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["training","_body","Agenda","agendaItemList","body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["training","_body","Agenda","agendaItemList","body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["training","_body","Agenda","agendaItemList","body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["training","_body","Agenda","agendaItemList","body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["training","_body","Agenda","agendaItemList","body","VerticalListItem","afterBody"]}],"namespace":["products","_body","Agenda","agendaItemList","body","VerticalListItem"]}],"namespace":["offices","_body","Agenda","agendaItemList","body"]}],"namespace":["offices","photos","Agenda","agendaItemList"],"searchable":true,"uid":false}],"namespace":["offices","photos","Agenda"]},{"label":"Agreement Form","name":"AgreementForm","ui":{"previewSrc":"/images/thumbs/tina/agreement-form.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["offices","photos","AgreementForm","backgroundColor"],"searchable":true,"uid":false},{"type":"object","label":"Form fields","name":"fields","list":true,"fields":[{"type":"string","label":"ID","name":"id","required":true,"namespace":["offices","_body","AgreementForm","fields","id"]},{"type":"string","label":"Label","name":"label","required":true,"namespace":["offices","_body","AgreementForm","fields","label"]},{"type":"string","label":"Placeholder","name":"placeholder","namespace":["offices","_body","AgreementForm","fields","placeholder"]},{"type":"boolean","label":"Resizeable","name":"resizeable","required":true,"namespace":["offices","_body","AgreementForm","fields","resizeable"]}],"namespace":["offices","photos","AgreementForm","fields"],"searchable":true,"uid":false}],"namespace":["offices","photos","AgreementForm"]},{"label":"Interest Form","name":"InterestForm","ui":{"previewSrc":"/images/thumbs/tina/interest-form.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["offices","photos","InterestForm","buttonText"],"searchable":true,"uid":false}],"namespace":["offices","photos","InterestForm"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["offices","photos","BookingButton","buttonText"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","namespace":["offices","photos","BookingButton","animated"],"searchable":true,"uid":false},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["offices","photos","BookingButton","buttonSubtitle"],"searchable":true,"uid":false}],"namespace":["offices","photos","BookingButton"]},{"name":"BuiltOnAzure","label":"Built on Azure","ui":{"previewSrc":"/images/thumbs/tina/built-on-azure.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["offices","photos","BuiltOnAzure","backgroundColor"],"searchable":true,"uid":false}],"namespace":["offices","photos","BuiltOnAzure"]},{"name":"Carousel","label":"Carousel","ui":{"previewSrc":"/images/thumbs/tina/carousel.jpg"},"fields":[{"label":"Items","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Item description","link":"/","openIn":"sameWindow"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["offices","_body","Carousel","items","label"]},{"type":"string","label":"URL","name":"link","description":"If link contains ssw.com.au, you can skip the full URL and just use the path. e.g. /services","namespace":["offices","_body","Carousel","items","link"]},{"type":"string","label":"Open in","name":"openIn","description":"If it is external link, please select 'New window' option.","options":[{"label":"Same window","value":"sameWindow"},{"label":"Modal","value":"modal"},{"label":"New window","value":"newWindow"}],"namespace":["offices","_body","Carousel","items","openIn"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","Carousel","items","imgSrc","uploadDir"]},"namespace":["offices","_body","Carousel","items","imgSrc"]}],"namespace":["offices","photos","Carousel","items"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["offices","photos","Carousel","backgroundColor"],"searchable":true,"uid":false},{"type":"number","label":"Delay (Seconds)","name":"delay","required":true,"namespace":["offices","photos","Carousel","delay"],"searchable":true,"uid":false},{"type":"boolean","label":"Show on mobile devices","name":"showOnMobileDevices","namespace":["offices","photos","Carousel","showOnMobileDevices"],"searchable":true,"uid":false}],"namespace":["offices","photos","Carousel"]},{"name":"Citation","label":"Citation","fields":[{"type":"string","label":"author","name":"author","namespace":["offices","photos","Citation","author"],"searchable":true,"uid":false},{"type":"string","label":"article","name":"article","required":true,"namespace":["offices","photos","Citation","article"],"searchable":true,"uid":false}],"namespace":["offices","photos","Citation"]},{"label":"Client List","name":"ClientList","ui":{"previewSrc":"/images/thumbs/tina/clients-list.jpg"},"fields":[{"type":"object","name":"categories","label":"Categories","list":true,"fields":[{"type":"reference","name":"category","label":"Category","collections":["clientCategories"],"namespace":["offices","_body","ClientList","categories","category"]}],"ui":{},"namespace":["offices","photos","ClientList","categories"],"searchable":true,"uid":false},{"type":"object","name":"clients","label":"Clients list","list":true,"ui":{"previewSrc":"/images/thumbs/tina/clients-list.jpg"},"fields":[{"type":"string","name":"name","label":"Name","namespace":["offices","_body","ClientList","clients","name"]},{"type":"image","name":"logo","label":"Logo","namespace":["offices","_body","ClientList","clients","logo"]},{"type":"string","name":"logoUrl","label":"Logo URL","namespace":["offices","_body","ClientList","clients","logoUrl"]},{"type":"rich-text","name":"content","label":"Content","templates":[{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["training","_body","ClientList","clients","content","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["training","_body","ClientList","clients","content","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["training","_body","ClientList","clients","content","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["training","_body","ClientList","clients","content","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["training","_body","ClientList","clients","content","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["training","_body","ClientList","clients","content","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["training","_body","ClientList","clients","content","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["training","_body","ClientList","clients","content","UtilityButton","openInNewTab"]}],"namespace":["products","_body","ClientList","clients","content","UtilityButton"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["training","_body","ClientList","clients","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["training","_body","ClientList","clients","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["training","_body","ClientList","clients","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["training","_body","ClientList","clients","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["training","_body","ClientList","clients","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["training","_body","ClientList","clients","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["training","_body","ClientList","clients","content","VideoEmbed","duration"]}],"namespace":["products","_body","ClientList","clients","content","VideoEmbed"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["training","_body","ClientList","clients","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["training","_body","ClientList","clients","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["training","_body","ClientList","clients","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["training","_body","ClientList","clients","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["training","_body","ClientList","clients","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["training","_body","ClientList","clients","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["training","_body","ClientList","clients","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["training","_body","ClientList","clients","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["training","_body","ClientList","clients","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["training","_body","ClientList","clients","content","CustomImage","sizes"]}],"namespace":["products","_body","ClientList","clients","content","CustomImage"]},{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["training","_body","ClientList","clients","content","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["training","_body","ClientList","clients","content","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","CustomImage","sizes"]}],"namespace":["training","footer","ClientList","clients","content","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["training","footer","ClientList","clients","content","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","duration"]}],"namespace":["training","footer","ClientList","clients","content","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["training","footer","ClientList","clients","content","ContentCard","content","ColorBlock"]}],"namespace":["training","_body","ClientList","clients","content","ContentCard","content"]}],"namespace":["products","_body","ClientList","clients","content","ContentCard"]}],"namespace":["offices","_body","ClientList","clients","content"]},{"type":"string","name":"caseStudyUrl","label":"Case study URL","namespace":["offices","_body","ClientList","clients","caseStudyUrl"]},{"type":"object","name":"categories","label":"Categories","list":true,"ui":{},"fields":[{"type":"reference","name":"category","label":"Category","collections":["clientCategories"],"namespace":["products","_body","ClientList","clients","categories","category"]}],"namespace":["offices","_body","ClientList","clients","categories"]}],"namespace":["offices","photos","ClientList","clients"],"searchable":true,"uid":false}],"namespace":["offices","photos","ClientList"]},{"name":"ClientLogos","label":"Client Logos","ui":{"previewSrc":"/images/thumbs/tina/client-logos.jpg"},"fields":[{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","photos","ClientLogos","altText"],"searchable":true,"uid":false}],"namespace":["offices","photos","ClientLogos"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","photos","ColorBlock","title"],"searchable":true,"uid":false},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["offices","photos","ColorBlock","subTitle"],"searchable":true,"uid":false},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","_body","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["offices","_body","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["offices","_body","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["offices","_body","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["offices","_body","ColorBlock","colorRow","caption"]}],"namespace":["offices","photos","ColorBlock","colorRow"],"searchable":true,"uid":false}],"namespace":["offices","photos","ColorBlock"]},{"name":"ColorPalette","label":"Color Palette","ui":{"previewSrc":"/images/thumbs/tina/color-palette.jpg"},"fields":[{"type":"string","label":"Name","name":"name","namespace":["offices","photos","ColorPalette","name"],"searchable":true,"uid":false}],"namespace":["offices","photos","ColorPalette"]},{"name":"Content","label":"Content","ui":{"previewSrc":"/images/thumbs/tina/content.jpg","defaultItem":{"body":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","photos","Content","title"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["products","_body","Content","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["products","_body","Content","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["products","_body","Content","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["products","_body","Content","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["products","_body","Content","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["products","_body","Content","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["products","_body","Content","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["products","_body","Content","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["products","_body","Content","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["products","_body","Content","content","CustomImage","sizes"]}],"namespace":["offices","_body","Content","content","CustomImage"]},{"name":"ClientLogos","label":"Client Logos","ui":{"previewSrc":"/images/thumbs/tina/client-logos.jpg"},"fields":[{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["products","_body","Content","content","ClientLogos","altText"]}],"namespace":["offices","_body","Content","content","ClientLogos"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["products","_body","Content","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["products","_body","Content","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["products","_body","Content","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["products","_body","Content","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["products","_body","Content","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["products","_body","Content","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["products","_body","Content","content","VideoEmbed","duration"]}],"namespace":["offices","_body","Content","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["products","_body","Content","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["products","_body","Content","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["training","_body","Content","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["training","_body","Content","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["training","_body","Content","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["training","_body","Content","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["training","_body","Content","content","ColorBlock","colorRow","caption"]}],"namespace":["products","_body","Content","content","ColorBlock","colorRow"]}],"namespace":["offices","_body","Content","content","ColorBlock"]}],"namespace":["offices","photos","Content","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Container Padding","name":"paddingClass","options":["Mobile: No Padding","Mobile: No Top and Horizontal Padding"],"namespace":["offices","photos","Content","paddingClass"],"searchable":true,"uid":false},{"type":"string","label":"Text size","name":"size","options":[{"label":"small","value":"sm"},{"label":"normal","value":"base"},{"label":"large","value":"lg"},{"label":"extra large","value":"xl"},{"label":"2x large","value":"2xl"}],"namespace":["offices","photos","Content","size"],"searchable":true,"uid":false},{"type":"string","label":"Align","name":"align","options":[{"label":"Left","value":"left"},{"label":"Center","value":"center"},{"label":"Right","value":"right"}],"namespace":["offices","photos","Content","align"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["offices","photos","Content","backgroundColor"],"searchable":true,"uid":false}],"namespace":["offices","photos","Content"]},{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["offices","photos","ContentCard","prose"],"searchable":true,"uid":false},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["offices","photos","ContentCard","centerAlignedText"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["products","_body","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["products","_body","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["products","_body","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["products","_body","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["products","_body","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["products","_body","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["products","_body","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["products","_body","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["products","_body","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["products","_body","ContentCard","content","CustomImage","sizes"]}],"namespace":["offices","_body","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["products","_body","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["products","_body","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["products","_body","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["products","_body","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["products","_body","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["offices","_body","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["products","_body","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["products","_body","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["products","_body","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["products","_body","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["products","_body","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["products","_body","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["products","_body","ContentCard","content","VideoEmbed","duration"]}],"namespace":["offices","_body","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["products","_body","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["products","_body","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["training","_body","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["training","_body","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["training","_body","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["training","_body","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["training","_body","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["products","_body","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["offices","_body","ContentCard","content","ColorBlock"]}],"namespace":["offices","photos","ContentCard","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["offices","photos","ContentCard"]},{"name":"CustomDownloadButton","label":"Custom Download Button","ui":{"previewSrc":"/images/thumbs/tina/custom-download-button.jpg"},"fields":[{"type":"string","label":"Text","name":"btnText","namespace":["offices","photos","CustomDownloadButton","btnText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"btnLink","namespace":["offices","photos","CustomDownloadButton","btnLink"],"searchable":true,"uid":false}],"namespace":["offices","photos","CustomDownloadButton"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","photos","CustomImage","src"],"searchable":false,"uid":false},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","photos","CustomImage","altText"],"searchable":true,"uid":false},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","photos","CustomImage","alignment"],"searchable":true,"uid":false},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","photos","CustomImage","height"],"searchable":true,"uid":false},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","photos","CustomImage","width"],"searchable":true,"uid":false},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","photos","CustomImage","link"],"searchable":true,"uid":false},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","photos","CustomImage","customClass"],"searchable":true,"uid":false},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","photos","CustomImage","caption"],"searchable":true,"uid":false},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","photos","CustomImage","captionColor"],"searchable":true,"uid":false},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","photos","CustomImage","sizes"],"searchable":true,"uid":false}],"namespace":["offices","photos","CustomImage"]},{"name":"DomainFromQuery","label":"Domain from query","ui":{"previewSrc":"/images/thumbs/tina/domain-from-query.jpg"},"fields":[{"name":"title","label":"Title","type":"string","description":"This is a H1 heading","namespace":["offices","photos","DomainFromQuery","title"],"searchable":true,"uid":false},{"name":"showDomain","label":"Show domain name","type":"boolean","description":"Query param in URL must have key of 'domain'","namespace":["offices","photos","DomainFromQuery","showDomain"],"searchable":true,"uid":false}],"namespace":["offices","photos","DomainFromQuery"]},{"name":"DownloadBlock","label":"Download Block","ui":{"previewSrc":"/images/thumbs/tina/download-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","photos","DownloadBlock","title"],"searchable":true,"uid":false},{"type":"object","label":"Downloads","name":"downloads","ui":{},"list":true,"fields":[{"type":"string","label":"Header","name":"header","namespace":["offices","_body","DownloadBlock","downloads","header"]},{"type":"image","label":"Image","name":"img","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","img","uploadDir"]},"namespace":["offices","_body","DownloadBlock","downloads","img"]},{"type":"string","label":"Image Background","name":"imgBackground","options":["black","grey","white","darkgrey","darkgreen"],"namespace":["offices","_body","DownloadBlock","downloads","imgBackground"]},{"type":"string","label":"First Link Text","name":"firstLinkText","description":"Defaults to PNG","namespace":["offices","_body","DownloadBlock","downloads","firstLinkText"]},{"type":"image","label":"First Link","name":"firstLink","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","firstLink","uploadDir"]},"namespace":["offices","_body","DownloadBlock","downloads","firstLink"]},{"type":"string","label":"Second Link Text","name":"secondLinkText","description":"Defaults to PDF","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","secondLinkText","uploadDir"]},"namespace":["offices","_body","DownloadBlock","downloads","secondLinkText"]},{"type":"image","label":"Second Link","name":"secondLink","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","secondLink","uploadDir"]},"namespace":["offices","_body","DownloadBlock","downloads","secondLink"]}],"namespace":["offices","photos","DownloadBlock","downloads"],"searchable":true,"uid":false},{"type":"boolean","label":"Bottom border","name":"bottomBorder","namespace":["offices","photos","DownloadBlock","bottomBorder"],"searchable":true,"uid":false}],"namespace":["offices","photos","DownloadBlock"]},{"name":"DynamicColumns","label":"Dynamic Column Layout","fields":[{"type":"rich-text","label":"Column text body","name":"colBody","required":true,"namespace":["offices","photos","DynamicColumns","colBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"number","label":"Number of columns","name":"colCount","required":true,"ui":{},"namespace":["offices","photos","DynamicColumns","colCount"],"searchable":true,"uid":false}],"namespace":["offices","photos","DynamicColumns"]},{"name":"EventBooking","label":"Events Booking","ui":{"previewSrc":"/images/thumbs/tina/events-booking.jpg"},"fields":[{"type":"number","label":"Duration (In Days)","name":"eventDurationInDays","required":true,"namespace":["offices","photos","EventBooking","eventDurationInDays"],"searchable":true,"uid":false},{"type":"number","label":"Price","name":"price","required":true,"namespace":["offices","photos","EventBooking","price"],"searchable":true,"uid":false},{"type":"number","label":"Discount Price","name":"discountPrice","namespace":["offices","photos","EventBooking","discountPrice"],"searchable":true,"uid":false},{"type":"string","name":"gstText","label":"Select GST Option","options":["inc GST","+ GST"],"required":true,"namespace":["offices","photos","EventBooking","gstText"],"searchable":true,"uid":false},{"type":"string","label":"Discount Note","name":"discountNote","namespace":["offices","photos","EventBooking","discountNote"],"searchable":true,"uid":false},{"type":"object","label":"Event","name":"eventList","ui":{},"list":true,"fields":[{"type":"string","label":"City","name":"city","namespace":["offices","_body","EventBooking","eventList","city"]},{"type":"datetime","label":"Start Date","name":"date","ui":{},"namespace":["offices","_body","EventBooking","eventList","date"]},{"type":"string","label":"Booking URL","name":"bookingURL","namespace":["offices","_body","EventBooking","eventList","bookingURL"]},{"type":"reference","label":"Location","name":"location","collections":["locations"],"namespace":["offices","_body","EventBooking","eventList","location"]}],"namespace":["offices","photos","EventBooking","eventList"],"searchable":true,"uid":false}],"namespace":["offices","photos","EventBooking"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["products","_body","EventLink","content","Flag","country"]}],"namespace":["offices","_body","EventLink","content","Flag"]}],"namespace":["offices","photos","EventLink","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Link","name":"link","namespace":["offices","photos","EventLink","link"],"searchable":true,"uid":false},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["offices","photos","EventLink","eventThumbnail"],"searchable":false,"uid":false},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["offices","photos","EventLink","thumbnailAlt"],"searchable":true,"uid":false}],"namespace":["offices","photos","EventLink"]},{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["offices","photos","Flag","country"],"searchable":true,"uid":false}],"namespace":["offices","photos","Flag"]},{"name":"FixedColumns","label":"Fixed Column Layout (2 columns)","ui":{"previewSrc":"/images/thumbs/tina/fixed-columns.jpg"},"fields":[{"type":"rich-text","label":"Header Section (Optional)","name":"headerSection","namespace":["offices","photos","FixedColumns","headerSection"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"First column text","name":"firstColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["products","_body","FixedColumns","firstColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["products","_body","FixedColumns","firstColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["training","footer","FixedColumns","firstColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["training","footer","FixedColumns","firstColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["training","footer","FixedColumns","firstColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["training","footer","FixedColumns","firstColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["training","footer","FixedColumns","firstColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["training","footer","FixedColumns","firstColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["training","footer","FixedColumns","firstColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["training","footer","FixedColumns","firstColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["training","footer","FixedColumns","firstColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["training","footer","FixedColumns","firstColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["training","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["training","footer","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["training","footer","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["training","footer","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["training","footer","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["training","footer","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["training","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["training","footer","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["training","footer","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["training","footer","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["training","footer","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["training","footer","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["training","footer","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["training","footer","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["training","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["training","footer","FixedColumns","firstColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["training","footer","FixedColumns","firstColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["training","footer","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["training","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock"]}],"namespace":["products","_body","FixedColumns","firstColBody","ContentCard","content"]}],"namespace":["offices","_body","FixedColumns","firstColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["products","_body","FixedColumns","firstColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["products","_body","FixedColumns","firstColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["products","_body","FixedColumns","firstColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["products","_body","FixedColumns","firstColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["products","_body","FixedColumns","firstColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["products","_body","FixedColumns","firstColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["products","_body","FixedColumns","firstColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["products","_body","FixedColumns","firstColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["products","_body","FixedColumns","firstColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["products","_body","FixedColumns","firstColBody","CustomImage","sizes"]}],"namespace":["offices","_body","FixedColumns","firstColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["training","footer","FixedColumns","firstColBody","EventLink","content","Flag","country"]}],"namespace":["training","_body","FixedColumns","firstColBody","EventLink","content","Flag"]}],"namespace":["products","_body","FixedColumns","firstColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["products","_body","FixedColumns","firstColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["products","_body","FixedColumns","firstColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["products","_body","FixedColumns","firstColBody","EventLink","thumbnailAlt"]}],"namespace":["offices","_body","FixedColumns","firstColBody","EventLink"]}],"namespace":["offices","photos","FixedColumns","firstColBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"Second column text","name":"secondColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["products","_body","FixedColumns","secondColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["products","_body","FixedColumns","secondColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["training","footer","FixedColumns","secondColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["training","footer","FixedColumns","secondColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["training","footer","FixedColumns","secondColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["training","footer","FixedColumns","secondColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["training","footer","FixedColumns","secondColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["training","footer","FixedColumns","secondColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["training","footer","FixedColumns","secondColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["training","footer","FixedColumns","secondColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["training","footer","FixedColumns","secondColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["training","footer","FixedColumns","secondColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["training","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["training","footer","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["training","footer","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["training","footer","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["training","footer","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["training","footer","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["training","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["training","footer","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["training","footer","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["training","footer","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["training","footer","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["training","footer","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["training","footer","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["training","footer","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["training","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["training","footer","FixedColumns","secondColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["training","footer","FixedColumns","secondColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["training","footer","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["training","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock"]}],"namespace":["products","_body","FixedColumns","secondColBody","ContentCard","content"]}],"namespace":["offices","_body","FixedColumns","secondColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["products","_body","FixedColumns","secondColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["products","_body","FixedColumns","secondColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["products","_body","FixedColumns","secondColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["products","_body","FixedColumns","secondColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["products","_body","FixedColumns","secondColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["products","_body","FixedColumns","secondColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["products","_body","FixedColumns","secondColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["products","_body","FixedColumns","secondColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["products","_body","FixedColumns","secondColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["products","_body","FixedColumns","secondColBody","CustomImage","sizes"]}],"namespace":["offices","_body","FixedColumns","secondColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["training","footer","FixedColumns","secondColBody","EventLink","content","Flag","country"]}],"namespace":["training","_body","FixedColumns","secondColBody","EventLink","content","Flag"]}],"namespace":["products","_body","FixedColumns","secondColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["products","_body","FixedColumns","secondColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["products","_body","FixedColumns","secondColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["products","_body","FixedColumns","secondColBody","EventLink","thumbnailAlt"]}],"namespace":["offices","_body","FixedColumns","secondColBody","EventLink"]}],"namespace":["offices","photos","FixedColumns","secondColBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["offices","photos","FixedColumns"]},{"name":"FixedTabsLayout","label":"Fixed Tabs Layout","ui":{"previewSrc":"/images/thumbs/tina/fixed-tabs-layout.jpg"},"fields":[{"type":"string","name":"firstTab","label":"First Tab","namespace":["offices","photos","FixedTabsLayout","firstTab"],"searchable":true,"uid":false},{"type":"rich-text","name":"firstHeading","label":"First Heading","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["products","_body","FixedTabsLayout","firstHeading","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["products","_body","FixedTabsLayout","firstHeading","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["products","_body","FixedTabsLayout","firstHeading","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["products","_body","FixedTabsLayout","firstHeading","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["products","_body","FixedTabsLayout","firstHeading","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["products","_body","FixedTabsLayout","firstHeading","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["products","_body","FixedTabsLayout","firstHeading","VideoEmbed","duration"]}],"namespace":["offices","_body","FixedTabsLayout","firstHeading","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["products","_body","FixedTabsLayout","firstHeading","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["products","_body","FixedTabsLayout","firstHeading","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["products","_body","FixedTabsLayout","firstHeading","BookingButton","buttonSubtitle"]}],"namespace":["offices","_body","FixedTabsLayout","firstHeading","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["products","_body","FixedTabsLayout","firstHeading","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["training","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["training","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["training","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["training","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList","skills"]}],"namespace":["products","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["training","_body","FixedTabsLayout","firstHeading","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["training","_body","FixedTabsLayout","firstHeading","ExpertBlock","link","url"]}],"namespace":["products","_body","FixedTabsLayout","firstHeading","ExpertBlock","link"]}],"namespace":["offices","_body","FixedTabsLayout","firstHeading","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["training","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["training","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["training","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["training","footer","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["training","footer","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["training","footer","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["training","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["products","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["offices","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["products","_body","FixedTabsLayout","firstHeading","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["products","_body","FixedTabsLayout","firstHeading","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["products","_body","FixedTabsLayout","firstHeading","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["products","_body","FixedTabsLayout","firstHeading","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["products","_body","FixedTabsLayout","firstHeading","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["products","_body","FixedTabsLayout","firstHeading","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["products","_body","FixedTabsLayout","firstHeading","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["products","_body","FixedTabsLayout","firstHeading","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["products","_body","FixedTabsLayout","firstHeading","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["products","_body","FixedTabsLayout","firstHeading","CustomImage","sizes"]}],"namespace":["offices","_body","FixedTabsLayout","firstHeading","CustomImage"]}],"namespace":["offices","photos","FixedTabsLayout","firstHeading"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","name":"firstBody","label":"First Body","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["products","_body","FixedTabsLayout","firstBody","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["products","_body","FixedTabsLayout","firstBody","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["products","_body","FixedTabsLayout","firstBody","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["products","_body","FixedTabsLayout","firstBody","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["products","_body","FixedTabsLayout","firstBody","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["products","_body","FixedTabsLayout","firstBody","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["products","_body","FixedTabsLayout","firstBody","VideoEmbed","duration"]}],"namespace":["offices","_body","FixedTabsLayout","firstBody","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["products","_body","FixedTabsLayout","firstBody","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["products","_body","FixedTabsLayout","firstBody","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["products","_body","FixedTabsLayout","firstBody","BookingButton","buttonSubtitle"]}],"namespace":["offices","_body","FixedTabsLayout","firstBody","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["products","_body","FixedTabsLayout","firstBody","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["training","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["training","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["training","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["training","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList","skills"]}],"namespace":["products","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["training","_body","FixedTabsLayout","firstBody","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["training","_body","FixedTabsLayout","firstBody","ExpertBlock","link","url"]}],"namespace":["products","_body","FixedTabsLayout","firstBody","ExpertBlock","link"]}],"namespace":["offices","_body","FixedTabsLayout","firstBody","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["training","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["training","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["training","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["training","footer","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["training","footer","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["training","footer","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["training","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["products","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["offices","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["products","_body","FixedTabsLayout","firstBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["products","_body","FixedTabsLayout","firstBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["products","_body","FixedTabsLayout","firstBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["products","_body","FixedTabsLayout","firstBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["products","_body","FixedTabsLayout","firstBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["products","_body","FixedTabsLayout","firstBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["products","_body","FixedTabsLayout","firstBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["products","_body","FixedTabsLayout","firstBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["products","_body","FixedTabsLayout","firstBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["products","_body","FixedTabsLayout","firstBody","CustomImage","sizes"]}],"namespace":["offices","_body","FixedTabsLayout","firstBody","CustomImage"]}],"namespace":["offices","photos","FixedTabsLayout","firstBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","name":"secondTab","label":"Second Tab","namespace":["offices","photos","FixedTabsLayout","secondTab"],"searchable":true,"uid":false},{"type":"rich-text","name":"secondHeading","label":"Second Heading","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["products","_body","FixedTabsLayout","secondHeading","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["products","_body","FixedTabsLayout","secondHeading","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["products","_body","FixedTabsLayout","secondHeading","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["products","_body","FixedTabsLayout","secondHeading","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["products","_body","FixedTabsLayout","secondHeading","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["products","_body","FixedTabsLayout","secondHeading","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["products","_body","FixedTabsLayout","secondHeading","VideoEmbed","duration"]}],"namespace":["offices","_body","FixedTabsLayout","secondHeading","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["products","_body","FixedTabsLayout","secondHeading","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["products","_body","FixedTabsLayout","secondHeading","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["products","_body","FixedTabsLayout","secondHeading","BookingButton","buttonSubtitle"]}],"namespace":["offices","_body","FixedTabsLayout","secondHeading","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["products","_body","FixedTabsLayout","secondHeading","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["training","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["training","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["training","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["training","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList","skills"]}],"namespace":["products","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["training","_body","FixedTabsLayout","secondHeading","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["training","_body","FixedTabsLayout","secondHeading","ExpertBlock","link","url"]}],"namespace":["products","_body","FixedTabsLayout","secondHeading","ExpertBlock","link"]}],"namespace":["offices","_body","FixedTabsLayout","secondHeading","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["training","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["training","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["training","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["training","footer","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["training","footer","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["training","footer","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["training","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["products","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["offices","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["products","_body","FixedTabsLayout","secondHeading","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["products","_body","FixedTabsLayout","secondHeading","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["products","_body","FixedTabsLayout","secondHeading","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["products","_body","FixedTabsLayout","secondHeading","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["products","_body","FixedTabsLayout","secondHeading","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["products","_body","FixedTabsLayout","secondHeading","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["products","_body","FixedTabsLayout","secondHeading","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["products","_body","FixedTabsLayout","secondHeading","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["products","_body","FixedTabsLayout","secondHeading","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["products","_body","FixedTabsLayout","secondHeading","CustomImage","sizes"]}],"namespace":["offices","_body","FixedTabsLayout","secondHeading","CustomImage"]}],"namespace":["offices","photos","FixedTabsLayout","secondHeading"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","name":"secondBody","label":"Second Body","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["products","_body","FixedTabsLayout","secondBody","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["products","_body","FixedTabsLayout","secondBody","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["products","_body","FixedTabsLayout","secondBody","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["products","_body","FixedTabsLayout","secondBody","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["products","_body","FixedTabsLayout","secondBody","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["products","_body","FixedTabsLayout","secondBody","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["products","_body","FixedTabsLayout","secondBody","VideoEmbed","duration"]}],"namespace":["offices","_body","FixedTabsLayout","secondBody","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["products","_body","FixedTabsLayout","secondBody","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["products","_body","FixedTabsLayout","secondBody","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["products","_body","FixedTabsLayout","secondBody","BookingButton","buttonSubtitle"]}],"namespace":["offices","_body","FixedTabsLayout","secondBody","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["products","_body","FixedTabsLayout","secondBody","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["training","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["training","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["training","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["training","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList","skills"]}],"namespace":["products","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["training","_body","FixedTabsLayout","secondBody","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["training","_body","FixedTabsLayout","secondBody","ExpertBlock","link","url"]}],"namespace":["products","_body","FixedTabsLayout","secondBody","ExpertBlock","link"]}],"namespace":["offices","_body","FixedTabsLayout","secondBody","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["training","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["training","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["training","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["training","footer","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["training","footer","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["training","footer","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["training","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["products","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["offices","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["products","_body","FixedTabsLayout","secondBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["products","_body","FixedTabsLayout","secondBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["products","_body","FixedTabsLayout","secondBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["products","_body","FixedTabsLayout","secondBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["products","_body","FixedTabsLayout","secondBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["products","_body","FixedTabsLayout","secondBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["products","_body","FixedTabsLayout","secondBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["products","_body","FixedTabsLayout","secondBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["products","_body","FixedTabsLayout","secondBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["products","_body","FixedTabsLayout","secondBody","CustomImage","sizes"]}],"namespace":["offices","_body","FixedTabsLayout","secondBody","CustomImage"]}],"namespace":["offices","photos","FixedTabsLayout","secondBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["offices","photos","FixedTabsLayout"]},{"label":"Google Maps","name":"GoogleMaps","ui":{"previewSrc":"/images/thumbs/tina/google-maps.jpg"},"fields":[{"type":"string","label":"URL","name":"embedUrl","required":true,"namespace":["offices","photos","GoogleMaps","embedUrl"],"searchable":true,"uid":false},{"type":"string","label":"Width","name":"embedWidth","namespace":["offices","photos","GoogleMaps","embedWidth"],"searchable":true,"uid":false},{"type":"string","label":"Height","name":"embedHeight","namespace":["offices","photos","GoogleMaps","embedHeight"],"searchable":true,"uid":false}],"namespace":["offices","photos","GoogleMaps"]},{"label":"Grid Layout","name":"GridLayout","ui":{"previewSrc":"/images/thumbs/tina/grid-layout.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","photos","GridLayout","title"],"searchable":true,"uid":false},{"type":"object","list":true,"label":"Grid Items","name":"grids","ui":{},"fields":[{"type":"string","label":"Grid Title","name":"gridTitle","namespace":["offices","_body","GridLayout","grids","gridTitle"]},{"type":"boolean","label":"Show Grid Title","name":"showGridTitle","namespace":["offices","_body","GridLayout","grids","showGridTitle"]},{"type":"boolean","label":"Centered Grid Title","name":"centeredGridTitle","namespace":["offices","_body","GridLayout","grids","centeredGridTitle"]},{"type":"boolean","label":"Show Header Divider","name":"showHeaderDivider","namespace":["offices","_body","GridLayout","grids","showHeaderDivider"]},{"type":"boolean","label":"Offset Grid Start","name":"offsetGridStart","namespace":["offices","_body","GridLayout","grids","offsetGridStart"]},{"type":"object","label":"Blocks","name":"blocks","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["products","_body","GridLayout","grids","blocks","title"]},{"type":"boolean","label":"Show Title","name":"showTitle","namespace":["products","_body","GridLayout","grids","blocks","showTitle"]},{"type":"image","label":"Image","name":"image","uploadDir":{"namespace":["page","beforeBody","GridLayout","grids","blocks","image","uploadDir"]},"namespace":["products","_body","GridLayout","grids","blocks","image"]},{"type":"image","label":"Related Image","name":"relatedImage","uploadDir":{"namespace":["page","beforeBody","GridLayout","grids","blocks","relatedImage","uploadDir"]},"namespace":["products","_body","GridLayout","grids","blocks","relatedImage"]},{"type":"rich-text","name":"linkContent","label":"Link Content","templates":[{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["training","footer","GridLayout","grids","blocks","linkContent","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["training","footer","GridLayout","grids","blocks","linkContent","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["training","footer","GridLayout","grids","blocks","linkContent","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["training","footer","GridLayout","grids","blocks","linkContent","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["training","footer","GridLayout","grids","blocks","linkContent","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["training","footer","GridLayout","grids","blocks","linkContent","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["training","footer","GridLayout","grids","blocks","linkContent","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["training","footer","GridLayout","grids","blocks","linkContent","UtilityButton","openInNewTab"]}],"namespace":["training","_body","GridLayout","grids","blocks","linkContent","UtilityButton"]}],"namespace":["products","_body","GridLayout","grids","blocks","linkContent"]}],"namespace":["offices","_body","GridLayout","grids","blocks"]}],"namespace":["offices","photos","GridLayout","grids"],"searchable":true,"uid":false}],"namespace":["offices","photos","GridLayout"]},{"name":"Hero","label":"Hero","ui":{"previewSrc":"/blocks/hero.png","defaultItem":{"tagline":"Here's some text above the other text","headline":"This Big Text is Totally Awesome","text":"Phasellus scelerisque, libero eu finibus rutrum, risus risus accumsan libero, nec molestie urna dui a leo."}},"fields":[{"type":"string","label":"Tagline","name":"tagline","namespace":["offices","photos","Hero","tagline"],"searchable":true,"uid":false},{"type":"string","label":"Headline","name":"headline","namespace":["offices","photos","Hero","headline"],"searchable":true,"uid":false},{"label":"Text","name":"text","type":"rich-text","namespace":["offices","photos","Hero","text"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"label":"Actions","name":"actions","type":"object","list":true,"ui":{"defaultItem":{"label":"Action Label","type":"button","icon":true,"link":"/"}},"fields":[{"label":"Label","name":"label","type":"string","namespace":["offices","_body","Hero","actions","label"]},{"label":"Type","name":"type","type":"string","options":[{"label":"Button","value":"button"},{"label":"Link","value":"link"}],"namespace":["offices","_body","Hero","actions","type"]},{"label":"Icon","name":"icon","type":"boolean","namespace":["offices","_body","Hero","actions","icon"]},{"label":"Link","name":"link","type":"string","namespace":["offices","_body","Hero","actions","link"]}],"namespace":["offices","photos","Hero","actions"],"searchable":true,"uid":false},{"type":"object","label":"Image","name":"image","fields":[{"name":"src","label":"Image Source","type":"image","namespace":["offices","_body","Hero","image","src"]},{"name":"alt","label":"Alt Text","type":"string","namespace":["offices","_body","Hero","image","alt"]}],"namespace":["offices","photos","Hero","image"],"searchable":true,"uid":false},{"type":"string","label":"Color","name":"color","options":[{"label":"Default","value":"default"},{"label":"Tint","value":"tint"},{"label":"Primary","value":"primary"}],"namespace":["offices","photos","Hero","color"],"searchable":true,"uid":false}],"namespace":["offices","photos","Hero"]},{"name":"HorizontalCard","label":"Horizontal Card","ui":{"previewSrc":"/images/thumbs/tina/horizontal-card.jpg"},"fields":[{"type":"object","label":"Cards","name":"cardList","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","_body","HorizontalCard","cardList","title"]},{"type":"rich-text","label":"Content","name":"content","namespace":["offices","_body","HorizontalCard","cardList","content"]},{"type":"image","label":"Thumbnail","name":"thumbnail","uploadDir":{"namespace":["page","beforeBody","HorizontalCard","cardList","thumbnail","uploadDir"]},"namespace":["offices","_body","HorizontalCard","cardList","thumbnail"]},{"type":"string","label":"Link","name":"link","namespace":["offices","_body","HorizontalCard","cardList","link"]}],"namespace":["offices","photos","HorizontalCard","cardList"],"searchable":true,"uid":false},{"type":"object","label":"Button","name":"button","fields":[{"type":"string","label":"Text","name":"text","namespace":["offices","_body","HorizontalCard","button","text"]},{"type":"string","label":"Link","name":"link","namespace":["offices","_body","HorizontalCard","button","link"]}],"namespace":["offices","photos","HorizontalCard","button"],"searchable":true,"uid":false}],"namespace":["offices","photos","HorizontalCard"]},{"name":"InternalCarousel","label":"Internal Carousel","ui":{"previewSrc":"/images/thumbs/tina/internal-carousel.jpg"},"fields":[{"label":"Images","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Image description"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["offices","_body","InternalCarousel","items","label"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","InternalCarousel","items","imgSrc","uploadDir"]},"namespace":["offices","_body","InternalCarousel","items","imgSrc"]}],"namespace":["offices","photos","InternalCarousel","items"],"searchable":true,"uid":false},{"type":"string","label":"Header","name":"header","namespace":["offices","photos","InternalCarousel","header"],"searchable":true,"uid":false},{"type":"rich-text","label":"Text","name":"paragraph","isBody":false,"namespace":["offices","photos","InternalCarousel","paragraph"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Website","name":"website","namespace":["offices","photos","InternalCarousel","website"],"searchable":true,"uid":false},{"type":"object","label":"Technologies","name":"technologies","list":true,"ui":{},"fields":[{"type":"string","label":"Name","name":"name","namespace":["offices","_body","InternalCarousel","technologies","name"]}],"namespace":["offices","photos","InternalCarousel","technologies"],"searchable":true,"uid":false},{"type":"string","label":"Case Study","name":"caseStudyUrl","namespace":["offices","photos","InternalCarousel","caseStudyUrl"],"searchable":true,"uid":false},{"type":"string","label":"Video URL","name":"videoUrl","namespace":["offices","photos","InternalCarousel","videoUrl"],"searchable":true,"uid":false}],"namespace":["offices","photos","InternalCarousel"]},{"label":"Join As Presenter","name":"joinAsPresenter","fields":[{"label":"Learn More Link","name":"link","type":"string","namespace":["offices","photos","joinAsPresenter","link"],"searchable":true,"uid":false},{"label":"Image","name":"img","type":"image","namespace":["offices","photos","joinAsPresenter","img"],"searchable":false,"uid":false}],"namespace":["offices","photos","joinAsPresenter"]},{"label":"Join Github","name":"joinGithub","ui":{"previewSrc":"/images/thumbs/tina/join-github.jpg"},"fields":[{"label":"Title","name":"title","type":"string","namespace":["offices","photos","joinGithub","title"],"searchable":true,"uid":false},{"label":"Join Github Link","name":"link","type":"string","namespace":["offices","photos","joinGithub","link"],"searchable":true,"uid":false}],"namespace":["offices","photos","joinGithub"]},{"name":"JotFormEmbed","label":"JotForm Embed","ui":{"previewSrc":"/images/thumbs/tina/jotform-embed.jpg"},"fields":[{"type":"string","name":"jotFormId","label":"JotForm Id","required":true,"namespace":["offices","photos","JotFormEmbed","jotFormId"],"searchable":true,"uid":false},{"type":"string","label":"Button Text","name":"buttonText","namespace":["offices","photos","JotFormEmbed","buttonText"],"searchable":true,"uid":false},{"type":"string","name":"containerClass","label":"Container Class","namespace":["offices","photos","JotFormEmbed","containerClass"],"searchable":true,"uid":false},{"type":"string","label":"Button Class","name":"buttonClass","namespace":["offices","photos","JotFormEmbed","buttonClass"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","namespace":["offices","photos","JotFormEmbed","animated"],"searchable":true,"uid":false}],"namespace":["offices","photos","JotFormEmbed"]},{"name":"LatestTech","label":"Latest Tech","ui":{"previewSrc":"/images/thumbs/tina/latest-tech.jpg"},"fields":[{"type":"reference","description":"Select a config file including a set of badges","collections":["userGroupGlobal"],"label":"Badges","name":"badges","namespace":["offices","photos","LatestTech","badges"],"searchable":true,"uid":false}],"namespace":["offices","photos","LatestTech"]},{"name":"LocationBlock","label":"Locations","ui":{"previewSrc":"/images/thumbs/tina/locations.jpg"},"fields":[{"type":"string","name":"title","label":"Title","namespace":["offices","photos","LocationBlock","title"],"searchable":true,"uid":false},{"type":"object","label":"Location List","name":"locationList","list":true,"ui":{},"fields":[{"type":"reference","collections":["locations"],"label":"Location","name":"location","namespace":["offices","_body","LocationBlock","locationList","location"]}],"namespace":["offices","photos","LocationBlock","locationList"],"searchable":true,"uid":false},{"type":"object","name":"chapelWebsite","label":"Chapel Website","fields":[{"type":"string","name":"title","label":"Text","namespace":["offices","_body","LocationBlock","chapelWebsite","title"]},{"type":"string","name":"URL","label":"URL","namespace":["offices","_body","LocationBlock","chapelWebsite","URL"]}],"namespace":["offices","photos","LocationBlock","chapelWebsite"],"searchable":true,"uid":false}],"namespace":["offices","photos","LocationBlock"]},{"name":"NewslettersTable","label":"Newsletters Table","ui":{"previewSrc":"/images/thumbs/tina/newsletters-table.jpg"},"fields":[{"type":"string","label":"Header text","name":"headerText","namespace":["offices","photos","NewslettersTable","headerText"],"searchable":true,"uid":false}],"namespace":["offices","photos","NewslettersTable"]},{"label":"Organizer","name":"organizer","fields":[{"type":"image","label":"Profile Image","name":"profileImg","namespace":["offices","photos","organizer","profileImg"],"searchable":false,"uid":false},{"type":"string","label":"Profile Link","name":"profileLink","namespace":["offices","photos","organizer","profileLink"],"searchable":true,"uid":false},{"type":"string","label":"Name","name":"name","namespace":["offices","photos","organizer","name"],"searchable":true,"uid":false},{"type":"string","label":"Position","name":"position","namespace":["offices","photos","organizer","position"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","namespace":["offices","photos","organizer","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["offices","photos","organizer"]},{"label":"Payment Block","name":"paymentBlock","ui":{"previewSrc":"/images/thumbs/tina/payment-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","photos","paymentBlock","title"],"searchable":true,"uid":false},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["offices","photos","paymentBlock","subTitle"],"searchable":true,"uid":false},{"type":"reference","label":"Payment Links","name":"payments","collections":["paymentDetails"],"namespace":["offices","photos","paymentBlock","payments"],"searchable":true,"uid":false},{"type":"rich-text","label":"Footer","name":"footer","namespace":["offices","photos","paymentBlock","footer"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"image","label":"Credit Cards Image","name":"creditImgSrc","namespace":["offices","photos","paymentBlock","creditImgSrc"],"searchable":false,"uid":false},{"type":"string","label":"Alt Text","name":"altTxt","namespace":["offices","photos","paymentBlock","altTxt"],"searchable":true,"uid":false}],"namespace":["offices","photos","paymentBlock"]},{"name":"PresenterBlock","label":"Presenters","ui":{"previewSrc":"/images/thumbs/tina/presenters.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["offices","photos","PresenterBlock","header"],"searchable":true,"uid":false},{"type":"object","name":"presenterList","label":"Presenters","list":true,"ui":{},"fields":[{"type":"reference","name":"presenter","label":"Presenters","collections":["presenter"],"namespace":["offices","_body","PresenterBlock","presenterList","presenter"]}],"namespace":["offices","photos","PresenterBlock","presenterList"],"searchable":true,"uid":false},{"type":"object","label":"Other Events","name":"otherEvent","fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","_body","PresenterBlock","otherEvent","title"]},{"type":"string","label":"URL","name":"eventURL","namespace":["offices","_body","PresenterBlock","otherEvent","eventURL"]}],"namespace":["offices","photos","PresenterBlock","otherEvent"],"searchable":true,"uid":false}],"namespace":["offices","photos","PresenterBlock"]},{"label":"Recurring Event","name":"RecurringEvent","ui":{"previewSrc":"/images/thumbs/tina/recurring-event.jpg"},"fields":[{"type":"string","label":"Apply Link Redirect","name":"applyLinkRedirect","namespace":["offices","photos","RecurringEvent","applyLinkRedirect"],"searchable":true,"uid":false},{"type":"string","label":"Day","name":"day","options":[{"label":"Monday","value":"monday"},{"label":"Tuesday","value":"tuesday"},{"label":"Wednesday","value":"wednesday"},{"label":"Thursday","value":"thursday"},{"label":"Friday","value":"friday"},{"label":"Saturday","value":"saturday"},{"label":"Sunday","value":"sunday"}],"required":true,"namespace":["offices","photos","RecurringEvent","day"],"searchable":true,"uid":false}],"namespace":["offices","photos","RecurringEvent"]},{"name":"SectionHeader","label":"Section Header","ui":{"previewSrc":"/images/thumbs/tina/section-header.jpg"},"fields":[{"type":"string","label":"Header Text","name":"headerText","namespace":["offices","photos","SectionHeader","headerText"],"searchable":true,"uid":false}],"namespace":["offices","photos","SectionHeader"]},{"name":"ServiceCards","label":"Service Cards","ui":{"previewSrc":"/images/thumbs/tina/services-cards.jpg"},"fields":[{"type":"string","label":"Big Cards Label","name":"bigCardsLabel","namespace":["offices","photos","ServiceCards","bigCardsLabel"],"searchable":true,"uid":false},{"label":"Big Cards","name":"bigCards","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","_body","ServiceCards","bigCards","title"]},{"type":"string","label":"Description","component":"textarea","name":"description","namespace":["offices","_body","ServiceCards","bigCards","description"]},{"type":"string","label":"URL","name":"link","namespace":["offices","_body","ServiceCards","bigCards","link"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Red","value":"red"},{"label":"Light Gray","value":"lightgray"},{"label":"Medium Gray","value":"mediumgray"},{"label":"Dark Gray","value":"darkgray"}],"namespace":["offices","_body","ServiceCards","bigCards","color"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","ServiceCards","bigCards","imgSrc","uploadDir"]},"namespace":["offices","_body","ServiceCards","bigCards","imgSrc"]}],"namespace":["offices","photos","ServiceCards","bigCards"],"searchable":true,"uid":false},{"type":"string","label":"Small Cards Label","name":"smallCardsLabel","namespace":["offices","photos","ServiceCards","smallCardsLabel"],"searchable":true,"uid":false},{"label":"Small Cards","name":"smallCards","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","_body","ServiceCards","smallCards","title"]},{"type":"string","label":"URL","name":"link","namespace":["offices","_body","ServiceCards","smallCards","link"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Red","value":"red"},{"label":"Light Gray","value":"lightgray"},{"label":"Medium Gray","value":"mediumgray"},{"label":"Dark Gray","value":"darkgray"}],"namespace":["offices","_body","ServiceCards","smallCards","color"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","ServiceCards","smallCards","imgSrc","uploadDir"]},"namespace":["offices","_body","ServiceCards","smallCards","imgSrc"]},{"type":"boolean","label":"External Page","description":"Select this if the link is not part of the website. This includes SSW.Rules, and SSW.People links","name":"isExternal","namespace":["offices","_body","ServiceCards","smallCards","isExternal"]}],"namespace":["offices","photos","ServiceCards","smallCards"],"searchable":true,"uid":false},{"label":"Links","name":"links","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["offices","_body","ServiceCards","links","label"]},{"type":"string","label":"URL","name":"link","namespace":["offices","_body","ServiceCards","links","link"]}],"namespace":["offices","photos","ServiceCards","links"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["offices","photos","ServiceCards","backgroundColor"],"searchable":true,"uid":false}],"namespace":["offices","photos","ServiceCards"]},{"label":"Table Layout","name":"TableLayout","ui":{"previewSrc":"/images/thumbs/tina/table-layout.jpg"},"fields":[{"label":"Table Style","name":"tableStyle","type":"string","options":["none","basicBorder","styled","benefits"],"namespace":["offices","photos","TableLayout","tableStyle"],"searchable":true,"uid":false},{"label":"First column bolded + left aligned","name":"firstColBold","type":"boolean","required":false,"namespace":["offices","photos","TableLayout","firstColBold"],"searchable":true,"uid":false},{"type":"string","label":"Table Headers","name":"headers","list":true,"namespace":["offices","photos","TableLayout","headers"],"searchable":true,"uid":false},{"type":"object","label":"Rows","name":"rows","list":true,"fields":[{"type":"object","label":"Cells","name":"cells","list":true,"fields":[{"type":"string","label":"Value","name":"cellValue","required":true,"component":{"namespace":["page","beforeBody","TableLayout","rows","cells","cellValue",""]},"namespace":["products","_body","TableLayout","rows","cells","cellValue"]}],"ui":{},"namespace":["offices","_body","TableLayout","rows","cells"]},{"type":"boolean","label":"Is Heading","name":"isHeader","required":false,"namespace":["offices","_body","TableLayout","rows","isHeader"]}],"ui":{},"namespace":["offices","photos","TableLayout","rows"],"searchable":true,"uid":false}],"namespace":["offices","photos","TableLayout"]},{"name":"TestimonialsList","label":"Testimonials List","ui":{"previewSrc":"/images/thumbs/tina/testimonials.jpg"},"fields":[{"type":"object","label":"Exclude Categories","name":"excludedCategories","ui":{},"list":true,"fields":[{"type":"reference","label":"Category Name","name":"categoryName","collections":["testimonialCategories"],"namespace":["offices","_body","TestimonialsList","excludedCategories","categoryName"]}],"namespace":["offices","photos","TestimonialsList","excludedCategories"],"searchable":true,"uid":false}],"namespace":["offices","photos","TestimonialsList"]},{"label":"Training Information","name":"TrainingInformation","ui":{"previewSrc":"/images/thumbs/tina/training-information.jpg"},"fields":[{"type":"object","label":"Training Information Items","name":"trainingInformationItems","list":true,"fields":[{"type":"string","label":"Header","name":"header","namespace":["offices","_body","TrainingInformation","trainingInformationItems","header"]},{"type":"rich-text","label":"Body","name":"body","templates":[{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["training","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["training","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["training","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["training","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["training","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","afterBody"]}],"namespace":["products","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem"]},{"label":"Recurring Event","name":"RecurringEvent","ui":{"previewSrc":"/images/thumbs/tina/recurring-event.jpg"},"fields":[{"type":"string","label":"Apply Link Redirect","name":"applyLinkRedirect","namespace":["training","_body","TrainingInformation","trainingInformationItems","body","RecurringEvent","applyLinkRedirect"]},{"type":"string","label":"Day","name":"day","options":[{"label":"Monday","value":"monday"},{"label":"Tuesday","value":"tuesday"},{"label":"Wednesday","value":"wednesday"},{"label":"Thursday","value":"thursday"},{"label":"Friday","value":"friday"},{"label":"Saturday","value":"saturday"},{"label":"Sunday","value":"sunday"}],"required":true,"namespace":["training","_body","TrainingInformation","trainingInformationItems","body","RecurringEvent","day"]}],"namespace":["products","_body","TrainingInformation","trainingInformationItems","body","RecurringEvent"]}],"namespace":["offices","_body","TrainingInformation","trainingInformationItems","body"]}],"namespace":["offices","photos","TrainingInformation","trainingInformationItems"],"searchable":true,"uid":false}],"namespace":["offices","photos","TrainingInformation"]},{"label":"Training Learning Outcomes","name":"TrainingLearningOutcome","ui":{"previewSrc":"/images/thumbs/tina/training-learning-outcomes.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["offices","photos","TrainingLearningOutcome","header"],"searchable":true,"uid":false},{"type":"object","label":"List Items","name":"listItems","list":true,"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","_body","TrainingLearningOutcome","listItems","title"]},{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["offices","_body","TrainingLearningOutcome","listItems","content"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","TrainingLearningOutcome","listItems","icon","uploadDir"]},"namespace":["offices","_body","TrainingLearningOutcome","listItems","icon"]}],"namespace":["offices","photos","TrainingLearningOutcome","listItems"],"searchable":true,"uid":false}],"namespace":["offices","photos","TrainingLearningOutcome"]},{"label":"Tweet Embed","name":"TweetEmbed","ui":{"previewSrc":"/images/thumbs/tina/tweet-embed.jpg"},"fields":[{"type":"string","name":"url","label":"Tweet URL","required":true,"namespace":["offices","photos","TweetEmbed","url"],"searchable":true,"uid":false}],"namespace":["offices","photos","TweetEmbed"]},{"name":"UpcomingEvents","label":"Upcoming Events","ui":{"previewSrc":"/images/thumbs/tina/upcoming-events.jpg","defaultItem":{"title":"Upcoming Events","numberOfEvents":30}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","photos","UpcomingEvents","title"],"searchable":true,"uid":false},{"type":"number","label":"Number of Events","name":"numberOfEvents","namespace":["offices","photos","UpcomingEvents","numberOfEvents"],"searchable":true,"uid":false}],"namespace":["offices","photos","UpcomingEvents"]},{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["offices","photos","UtilityButton","buttonText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"link","required":false,"namespace":["offices","photos","UtilityButton","link"],"searchable":true,"uid":false},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["offices","photos","UtilityButton","size"],"searchable":true,"uid":false},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["offices","photos","UtilityButton","btnIcon"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["offices","photos","UtilityButton","animated"],"searchable":true,"uid":false},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["offices","photos","UtilityButton","uncentered"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["offices","photos","UtilityButton","removeTopMargin"],"searchable":true,"uid":false},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["offices","photos","UtilityButton","openInNewTab"],"searchable":true,"uid":false}],"namespace":["offices","photos","UtilityButton"]},{"name":"VerticalImageLayout","label":"Vertical Image Layout","fields":[{"type":"image","label":"Image","name":"imageSrc","uploadDir":{"namespace":["page","beforeBody","VerticalImageLayout","imageSrc","uploadDir"]},"namespace":["offices","photos","VerticalImageLayout","imageSrc"],"searchable":false,"uid":false},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","photos","VerticalImageLayout","altText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"imageLink","namespace":["offices","photos","VerticalImageLayout","imageLink"],"searchable":true,"uid":false},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","photos","VerticalImageLayout","height"],"searchable":true,"uid":false},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","photos","VerticalImageLayout","width"],"searchable":true,"uid":false},{"type":"rich-text","label":"Message","name":"message","required":true,"namespace":["offices","photos","VerticalImageLayout","message"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","photos","VerticalImageLayout","sizes"],"searchable":true,"uid":false}],"namespace":["offices","photos","VerticalImageLayout"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["offices","photos","VerticalListItem","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"number","label":"Index number","name":"index","namespace":["offices","photos","VerticalListItem","index"],"searchable":true,"uid":false},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["offices","photos","VerticalListItem","icon"],"searchable":false,"uid":false},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["offices","photos","VerticalListItem","iconScale"],"searchable":true,"uid":false},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["offices","photos","VerticalListItem","afterBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["offices","photos","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","photos","VideoEmbed","url"],"searchable":true,"uid":false},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","photos","VideoEmbed","videoWidth"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","photos","VideoEmbed","removeMargin"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","photos","VideoEmbed","uncentre"],"searchable":true,"uid":false},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","photos","VideoEmbed","overflow"],"searchable":true,"uid":false},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","photos","VideoEmbed","caption"],"searchable":true,"uid":false},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","photos","VideoEmbed","duration"],"searchable":true,"uid":false}],"namespace":["offices","photos","VideoEmbed"]},{"name":"InlineJotForm","label":"In-line JotForm","ui":{"previewSrc":"/images/thumbs/tina/inline-jot-form.jpg"},"fields":[{"type":"string","name":"title","label":"Title","description":"Optional title for JotForm","namespace":["offices","photos","InlineJotForm","title"],"searchable":true,"uid":false},{"type":"string","name":"jotFormId","label":"JotForm ID","required":true,"namespace":["offices","photos","InlineJotForm","jotFormId"],"searchable":true,"uid":false},{"type":"string","name":"additionalClasses","label":"Additional classnames","description":"Optional styling for iframe element only","namespace":["offices","photos","InlineJotForm","additionalClasses"],"searchable":true,"uid":false}],"namespace":["offices","photos","InlineJotForm"]}],"namespace":["offices","photos"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"Body","name":"_body","templates":[{"name":"AboutUs","label":"About Us","ui":{"previewSrc":"/images/thumbs/tina/about-us.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["offices","_body","AboutUs","backgroundColor"],"searchable":true,"uid":false},{"type":"boolean","label":"Show Map","name":"showMap","required":false,"namespace":["offices","_body","AboutUs","showMap"],"searchable":true,"uid":false}],"namespace":["offices","_body","AboutUs"]},{"label":"Agenda","name":"Agenda","ui":{"previewSrc":"/images/thumbs/tina/agenda.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["offices","_body","Agenda","header"],"searchable":true,"uid":false},{"type":"string","label":"Header Color","name":"textColor","options":[{"label":"Red","value":"red"},{"label":"Gray","value":"gray"},{"label":"Default","value":"default"}],"namespace":["offices","_body","Agenda","textColor"],"searchable":true,"uid":false},{"type":"object","label":"Agenda Items","name":"agendaItemList","ui":{},"list":true,"fields":[{"type":"string","label":"Placeholder Text","name":"placeholder","namespace":["products","_body","Agenda","agendaItemList","placeholder"]},{"type":"rich-text","label":"Body","name":"body","templates":[{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["training","footer","Agenda","agendaItemList","body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["training","footer","Agenda","agendaItemList","body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["training","footer","Agenda","agendaItemList","body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["training","footer","Agenda","agendaItemList","body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["training","footer","Agenda","agendaItemList","body","VerticalListItem","afterBody"]}],"namespace":["training","_body","Agenda","agendaItemList","body","VerticalListItem"]}],"namespace":["products","_body","Agenda","agendaItemList","body"]}],"namespace":["offices","_body","Agenda","agendaItemList"],"searchable":true,"uid":false}],"namespace":["offices","_body","Agenda"]},{"label":"Agreement Form","name":"AgreementForm","ui":{"previewSrc":"/images/thumbs/tina/agreement-form.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["offices","_body","AgreementForm","backgroundColor"],"searchable":true,"uid":false},{"type":"object","label":"Form fields","name":"fields","list":true,"fields":[{"type":"string","label":"ID","name":"id","required":true,"namespace":["products","_body","AgreementForm","fields","id"]},{"type":"string","label":"Label","name":"label","required":true,"namespace":["products","_body","AgreementForm","fields","label"]},{"type":"string","label":"Placeholder","name":"placeholder","namespace":["products","_body","AgreementForm","fields","placeholder"]},{"type":"boolean","label":"Resizeable","name":"resizeable","required":true,"namespace":["products","_body","AgreementForm","fields","resizeable"]}],"namespace":["offices","_body","AgreementForm","fields"],"searchable":true,"uid":false}],"namespace":["offices","_body","AgreementForm"]},{"label":"Interest Form","name":"InterestForm","ui":{"previewSrc":"/images/thumbs/tina/interest-form.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["offices","_body","InterestForm","buttonText"],"searchable":true,"uid":false}],"namespace":["offices","_body","InterestForm"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["offices","_body","BookingButton","buttonText"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","namespace":["offices","_body","BookingButton","animated"],"searchable":true,"uid":false},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["offices","_body","BookingButton","buttonSubtitle"],"searchable":true,"uid":false}],"namespace":["offices","_body","BookingButton"]},{"name":"BuiltOnAzure","label":"Built on Azure","ui":{"previewSrc":"/images/thumbs/tina/built-on-azure.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["offices","_body","BuiltOnAzure","backgroundColor"],"searchable":true,"uid":false}],"namespace":["offices","_body","BuiltOnAzure"]},{"name":"Carousel","label":"Carousel","ui":{"previewSrc":"/images/thumbs/tina/carousel.jpg"},"fields":[{"label":"Items","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Item description","link":"/","openIn":"sameWindow"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["products","_body","Carousel","items","label"]},{"type":"string","label":"URL","name":"link","description":"If link contains ssw.com.au, you can skip the full URL and just use the path. e.g. /services","namespace":["products","_body","Carousel","items","link"]},{"type":"string","label":"Open in","name":"openIn","description":"If it is external link, please select 'New window' option.","options":[{"label":"Same window","value":"sameWindow"},{"label":"Modal","value":"modal"},{"label":"New window","value":"newWindow"}],"namespace":["products","_body","Carousel","items","openIn"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","Carousel","items","imgSrc","uploadDir"]},"namespace":["products","_body","Carousel","items","imgSrc"]}],"namespace":["offices","_body","Carousel","items"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["offices","_body","Carousel","backgroundColor"],"searchable":true,"uid":false},{"type":"number","label":"Delay (Seconds)","name":"delay","required":true,"namespace":["offices","_body","Carousel","delay"],"searchable":true,"uid":false},{"type":"boolean","label":"Show on mobile devices","name":"showOnMobileDevices","namespace":["offices","_body","Carousel","showOnMobileDevices"],"searchable":true,"uid":false}],"namespace":["offices","_body","Carousel"]},{"name":"Citation","label":"Citation","fields":[{"type":"string","label":"author","name":"author","namespace":["offices","_body","Citation","author"],"searchable":true,"uid":false},{"type":"string","label":"article","name":"article","required":true,"namespace":["offices","_body","Citation","article"],"searchable":true,"uid":false}],"namespace":["offices","_body","Citation"]},{"label":"Client List","name":"ClientList","ui":{"previewSrc":"/images/thumbs/tina/clients-list.jpg"},"fields":[{"type":"object","name":"categories","label":"Categories","list":true,"fields":[{"type":"reference","name":"category","label":"Category","collections":["clientCategories"],"namespace":["products","_body","ClientList","categories","category"]}],"ui":{},"namespace":["offices","_body","ClientList","categories"],"searchable":true,"uid":false},{"type":"object","name":"clients","label":"Clients list","list":true,"ui":{"previewSrc":"/images/thumbs/tina/clients-list.jpg"},"fields":[{"type":"string","name":"name","label":"Name","namespace":["products","_body","ClientList","clients","name"]},{"type":"image","name":"logo","label":"Logo","namespace":["products","_body","ClientList","clients","logo"]},{"type":"string","name":"logoUrl","label":"Logo URL","namespace":["products","_body","ClientList","clients","logoUrl"]},{"type":"rich-text","name":"content","label":"Content","templates":[{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["training","footer","ClientList","clients","content","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["training","footer","ClientList","clients","content","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["training","footer","ClientList","clients","content","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["training","footer","ClientList","clients","content","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["training","footer","ClientList","clients","content","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["training","footer","ClientList","clients","content","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["training","footer","ClientList","clients","content","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["training","footer","ClientList","clients","content","UtilityButton","openInNewTab"]}],"namespace":["training","_body","ClientList","clients","content","UtilityButton"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["training","footer","ClientList","clients","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["training","footer","ClientList","clients","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["training","footer","ClientList","clients","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["training","footer","ClientList","clients","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["training","footer","ClientList","clients","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["training","footer","ClientList","clients","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["training","footer","ClientList","clients","content","VideoEmbed","duration"]}],"namespace":["training","_body","ClientList","clients","content","VideoEmbed"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["training","footer","ClientList","clients","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["training","footer","ClientList","clients","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["training","footer","ClientList","clients","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["training","footer","ClientList","clients","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["training","footer","ClientList","clients","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["training","footer","ClientList","clients","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["training","footer","ClientList","clients","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["training","footer","ClientList","clients","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["training","footer","ClientList","clients","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["training","footer","ClientList","clients","content","CustomImage","sizes"]}],"namespace":["training","_body","ClientList","clients","content","CustomImage"]},{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["training","footer","ClientList","clients","content","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["training","footer","ClientList","clients","content","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","CustomImage","sizes"]}],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","duration"]}],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","ColorBlock"]}],"namespace":["training","footer","ClientList","clients","content","ContentCard","content"]}],"namespace":["training","_body","ClientList","clients","content","ContentCard"]}],"namespace":["products","_body","ClientList","clients","content"]},{"type":"string","name":"caseStudyUrl","label":"Case study URL","namespace":["products","_body","ClientList","clients","caseStudyUrl"]},{"type":"object","name":"categories","label":"Categories","list":true,"ui":{},"fields":[{"type":"reference","name":"category","label":"Category","collections":["clientCategories"],"namespace":["training","_body","ClientList","clients","categories","category"]}],"namespace":["products","_body","ClientList","clients","categories"]}],"namespace":["offices","_body","ClientList","clients"],"searchable":true,"uid":false}],"namespace":["offices","_body","ClientList"]},{"name":"ClientLogos","label":"Client Logos","ui":{"previewSrc":"/images/thumbs/tina/client-logos.jpg"},"fields":[{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","_body","ClientLogos","altText"],"searchable":true,"uid":false}],"namespace":["offices","_body","ClientLogos"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","_body","ColorBlock","title"],"searchable":true,"uid":false},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["offices","_body","ColorBlock","subTitle"],"searchable":true,"uid":false},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["products","_body","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["products","_body","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["products","_body","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["products","_body","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["products","_body","ColorBlock","colorRow","caption"]}],"namespace":["offices","_body","ColorBlock","colorRow"],"searchable":true,"uid":false}],"namespace":["offices","_body","ColorBlock"]},{"name":"ColorPalette","label":"Color Palette","ui":{"previewSrc":"/images/thumbs/tina/color-palette.jpg"},"fields":[{"type":"string","label":"Name","name":"name","namespace":["offices","_body","ColorPalette","name"],"searchable":true,"uid":false}],"namespace":["offices","_body","ColorPalette"]},{"name":"Content","label":"Content","ui":{"previewSrc":"/images/thumbs/tina/content.jpg","defaultItem":{"body":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","_body","Content","title"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["training","_body","Content","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["training","_body","Content","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["training","_body","Content","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["training","_body","Content","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["training","_body","Content","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["training","_body","Content","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["training","_body","Content","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["training","_body","Content","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["training","_body","Content","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["training","_body","Content","content","CustomImage","sizes"]}],"namespace":["products","_body","Content","content","CustomImage"]},{"name":"ClientLogos","label":"Client Logos","ui":{"previewSrc":"/images/thumbs/tina/client-logos.jpg"},"fields":[{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["training","_body","Content","content","ClientLogos","altText"]}],"namespace":["products","_body","Content","content","ClientLogos"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["training","_body","Content","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["training","_body","Content","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["training","_body","Content","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["training","_body","Content","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["training","_body","Content","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["training","_body","Content","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["training","_body","Content","content","VideoEmbed","duration"]}],"namespace":["products","_body","Content","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["training","_body","Content","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["training","_body","Content","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["training","footer","Content","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["training","footer","Content","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["training","footer","Content","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["training","footer","Content","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["training","footer","Content","content","ColorBlock","colorRow","caption"]}],"namespace":["training","_body","Content","content","ColorBlock","colorRow"]}],"namespace":["products","_body","Content","content","ColorBlock"]}],"namespace":["offices","_body","Content","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Container Padding","name":"paddingClass","options":["Mobile: No Padding","Mobile: No Top and Horizontal Padding"],"namespace":["offices","_body","Content","paddingClass"],"searchable":true,"uid":false},{"type":"string","label":"Text size","name":"size","options":[{"label":"small","value":"sm"},{"label":"normal","value":"base"},{"label":"large","value":"lg"},{"label":"extra large","value":"xl"},{"label":"2x large","value":"2xl"}],"namespace":["offices","_body","Content","size"],"searchable":true,"uid":false},{"type":"string","label":"Align","name":"align","options":[{"label":"Left","value":"left"},{"label":"Center","value":"center"},{"label":"Right","value":"right"}],"namespace":["offices","_body","Content","align"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["offices","_body","Content","backgroundColor"],"searchable":true,"uid":false}],"namespace":["offices","_body","Content"]},{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["offices","_body","ContentCard","prose"],"searchable":true,"uid":false},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["offices","_body","ContentCard","centerAlignedText"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["training","_body","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["training","_body","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["training","_body","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["training","_body","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["training","_body","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["training","_body","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["training","_body","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["training","_body","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["training","_body","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["training","_body","ContentCard","content","CustomImage","sizes"]}],"namespace":["products","_body","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["training","_body","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["training","_body","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["training","_body","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["training","_body","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["training","_body","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["products","_body","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["training","_body","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["training","_body","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["training","_body","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["training","_body","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["training","_body","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["training","_body","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["training","_body","ContentCard","content","VideoEmbed","duration"]}],"namespace":["products","_body","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["training","_body","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["training","_body","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["training","footer","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["training","footer","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["training","footer","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["training","footer","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["training","footer","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["training","_body","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["products","_body","ContentCard","content","ColorBlock"]}],"namespace":["offices","_body","ContentCard","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["offices","_body","ContentCard"]},{"name":"CustomDownloadButton","label":"Custom Download Button","ui":{"previewSrc":"/images/thumbs/tina/custom-download-button.jpg"},"fields":[{"type":"string","label":"Text","name":"btnText","namespace":["offices","_body","CustomDownloadButton","btnText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"btnLink","namespace":["offices","_body","CustomDownloadButton","btnLink"],"searchable":true,"uid":false}],"namespace":["offices","_body","CustomDownloadButton"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["offices","_body","CustomImage","src"],"searchable":false,"uid":false},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","_body","CustomImage","altText"],"searchable":true,"uid":false},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["offices","_body","CustomImage","alignment"],"searchable":true,"uid":false},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","_body","CustomImage","height"],"searchable":true,"uid":false},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","_body","CustomImage","width"],"searchable":true,"uid":false},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["offices","_body","CustomImage","link"],"searchable":true,"uid":false},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["offices","_body","CustomImage","customClass"],"searchable":true,"uid":false},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["offices","_body","CustomImage","caption"],"searchable":true,"uid":false},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["offices","_body","CustomImage","captionColor"],"searchable":true,"uid":false},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","_body","CustomImage","sizes"],"searchable":true,"uid":false}],"namespace":["offices","_body","CustomImage"]},{"name":"DomainFromQuery","label":"Domain from query","ui":{"previewSrc":"/images/thumbs/tina/domain-from-query.jpg"},"fields":[{"name":"title","label":"Title","type":"string","description":"This is a H1 heading","namespace":["offices","_body","DomainFromQuery","title"],"searchable":true,"uid":false},{"name":"showDomain","label":"Show domain name","type":"boolean","description":"Query param in URL must have key of 'domain'","namespace":["offices","_body","DomainFromQuery","showDomain"],"searchable":true,"uid":false}],"namespace":["offices","_body","DomainFromQuery"]},{"name":"DownloadBlock","label":"Download Block","ui":{"previewSrc":"/images/thumbs/tina/download-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","_body","DownloadBlock","title"],"searchable":true,"uid":false},{"type":"object","label":"Downloads","name":"downloads","ui":{},"list":true,"fields":[{"type":"string","label":"Header","name":"header","namespace":["products","_body","DownloadBlock","downloads","header"]},{"type":"image","label":"Image","name":"img","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","img","uploadDir"]},"namespace":["products","_body","DownloadBlock","downloads","img"]},{"type":"string","label":"Image Background","name":"imgBackground","options":["black","grey","white","darkgrey","darkgreen"],"namespace":["products","_body","DownloadBlock","downloads","imgBackground"]},{"type":"string","label":"First Link Text","name":"firstLinkText","description":"Defaults to PNG","namespace":["products","_body","DownloadBlock","downloads","firstLinkText"]},{"type":"image","label":"First Link","name":"firstLink","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","firstLink","uploadDir"]},"namespace":["products","_body","DownloadBlock","downloads","firstLink"]},{"type":"string","label":"Second Link Text","name":"secondLinkText","description":"Defaults to PDF","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","secondLinkText","uploadDir"]},"namespace":["products","_body","DownloadBlock","downloads","secondLinkText"]},{"type":"image","label":"Second Link","name":"secondLink","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","secondLink","uploadDir"]},"namespace":["products","_body","DownloadBlock","downloads","secondLink"]}],"namespace":["offices","_body","DownloadBlock","downloads"],"searchable":true,"uid":false},{"type":"boolean","label":"Bottom border","name":"bottomBorder","namespace":["offices","_body","DownloadBlock","bottomBorder"],"searchable":true,"uid":false}],"namespace":["offices","_body","DownloadBlock"]},{"name":"DynamicColumns","label":"Dynamic Column Layout","fields":[{"type":"rich-text","label":"Column text body","name":"colBody","required":true,"namespace":["offices","_body","DynamicColumns","colBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"number","label":"Number of columns","name":"colCount","required":true,"ui":{},"namespace":["offices","_body","DynamicColumns","colCount"],"searchable":true,"uid":false}],"namespace":["offices","_body","DynamicColumns"]},{"name":"EventBooking","label":"Events Booking","ui":{"previewSrc":"/images/thumbs/tina/events-booking.jpg"},"fields":[{"type":"number","label":"Duration (In Days)","name":"eventDurationInDays","required":true,"namespace":["offices","_body","EventBooking","eventDurationInDays"],"searchable":true,"uid":false},{"type":"number","label":"Price","name":"price","required":true,"namespace":["offices","_body","EventBooking","price"],"searchable":true,"uid":false},{"type":"number","label":"Discount Price","name":"discountPrice","namespace":["offices","_body","EventBooking","discountPrice"],"searchable":true,"uid":false},{"type":"string","name":"gstText","label":"Select GST Option","options":["inc GST","+ GST"],"required":true,"namespace":["offices","_body","EventBooking","gstText"],"searchable":true,"uid":false},{"type":"string","label":"Discount Note","name":"discountNote","namespace":["offices","_body","EventBooking","discountNote"],"searchable":true,"uid":false},{"type":"object","label":"Event","name":"eventList","ui":{},"list":true,"fields":[{"type":"string","label":"City","name":"city","namespace":["products","_body","EventBooking","eventList","city"]},{"type":"datetime","label":"Start Date","name":"date","ui":{},"namespace":["products","_body","EventBooking","eventList","date"]},{"type":"string","label":"Booking URL","name":"bookingURL","namespace":["products","_body","EventBooking","eventList","bookingURL"]},{"type":"reference","label":"Location","name":"location","collections":["locations"],"namespace":["products","_body","EventBooking","eventList","location"]}],"namespace":["offices","_body","EventBooking","eventList"],"searchable":true,"uid":false}],"namespace":["offices","_body","EventBooking"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["training","_body","EventLink","content","Flag","country"]}],"namespace":["products","_body","EventLink","content","Flag"]}],"namespace":["offices","_body","EventLink","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Link","name":"link","namespace":["offices","_body","EventLink","link"],"searchable":true,"uid":false},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["offices","_body","EventLink","eventThumbnail"],"searchable":false,"uid":false},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["offices","_body","EventLink","thumbnailAlt"],"searchable":true,"uid":false}],"namespace":["offices","_body","EventLink"]},{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["offices","_body","Flag","country"],"searchable":true,"uid":false}],"namespace":["offices","_body","Flag"]},{"name":"FixedColumns","label":"Fixed Column Layout (2 columns)","ui":{"previewSrc":"/images/thumbs/tina/fixed-columns.jpg"},"fields":[{"type":"rich-text","label":"Header Section (Optional)","name":"headerSection","namespace":["offices","_body","FixedColumns","headerSection"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"First column text","name":"firstColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["training","_body","FixedColumns","firstColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["training","_body","FixedColumns","firstColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["training","footer","FixedColumns","firstColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["training","footer","FixedColumns","firstColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["training","footer","FixedColumns","firstColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["training","footer","FixedColumns","firstColBody","ContentCard","content","ColorBlock"]}],"namespace":["training","_body","FixedColumns","firstColBody","ContentCard","content"]}],"namespace":["products","_body","FixedColumns","firstColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["training","_body","FixedColumns","firstColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["training","_body","FixedColumns","firstColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["training","_body","FixedColumns","firstColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["training","_body","FixedColumns","firstColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["training","_body","FixedColumns","firstColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["training","_body","FixedColumns","firstColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["training","_body","FixedColumns","firstColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["training","_body","FixedColumns","firstColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["training","_body","FixedColumns","firstColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["training","_body","FixedColumns","firstColBody","CustomImage","sizes"]}],"namespace":["products","_body","FixedColumns","firstColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","EventLink","content","Flag","country"]}],"namespace":["training","footer","FixedColumns","firstColBody","EventLink","content","Flag"]}],"namespace":["training","_body","FixedColumns","firstColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["training","_body","FixedColumns","firstColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["training","_body","FixedColumns","firstColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["training","_body","FixedColumns","firstColBody","EventLink","thumbnailAlt"]}],"namespace":["products","_body","FixedColumns","firstColBody","EventLink"]}],"namespace":["offices","_body","FixedColumns","firstColBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"Second column text","name":"secondColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["training","_body","FixedColumns","secondColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["training","_body","FixedColumns","secondColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["training","footer","FixedColumns","secondColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["training","footer","FixedColumns","secondColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["training","footer","FixedColumns","secondColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["training","footer","FixedColumns","secondColBody","ContentCard","content","ColorBlock"]}],"namespace":["training","_body","FixedColumns","secondColBody","ContentCard","content"]}],"namespace":["products","_body","FixedColumns","secondColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["training","_body","FixedColumns","secondColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["training","_body","FixedColumns","secondColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["training","_body","FixedColumns","secondColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["training","_body","FixedColumns","secondColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["training","_body","FixedColumns","secondColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["training","_body","FixedColumns","secondColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["training","_body","FixedColumns","secondColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["training","_body","FixedColumns","secondColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["training","_body","FixedColumns","secondColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["training","_body","FixedColumns","secondColBody","CustomImage","sizes"]}],"namespace":["products","_body","FixedColumns","secondColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","EventLink","content","Flag","country"]}],"namespace":["training","footer","FixedColumns","secondColBody","EventLink","content","Flag"]}],"namespace":["training","_body","FixedColumns","secondColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["training","_body","FixedColumns","secondColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["training","_body","FixedColumns","secondColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["training","_body","FixedColumns","secondColBody","EventLink","thumbnailAlt"]}],"namespace":["products","_body","FixedColumns","secondColBody","EventLink"]}],"namespace":["offices","_body","FixedColumns","secondColBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["offices","_body","FixedColumns"]},{"name":"FixedTabsLayout","label":"Fixed Tabs Layout","ui":{"previewSrc":"/images/thumbs/tina/fixed-tabs-layout.jpg"},"fields":[{"type":"string","name":"firstTab","label":"First Tab","namespace":["offices","_body","FixedTabsLayout","firstTab"],"searchable":true,"uid":false},{"type":"rich-text","name":"firstHeading","label":"First Heading","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["training","_body","FixedTabsLayout","firstHeading","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["training","_body","FixedTabsLayout","firstHeading","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["training","_body","FixedTabsLayout","firstHeading","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["training","_body","FixedTabsLayout","firstHeading","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["training","_body","FixedTabsLayout","firstHeading","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["training","_body","FixedTabsLayout","firstHeading","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["training","_body","FixedTabsLayout","firstHeading","VideoEmbed","duration"]}],"namespace":["products","_body","FixedTabsLayout","firstHeading","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["training","_body","FixedTabsLayout","firstHeading","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["training","_body","FixedTabsLayout","firstHeading","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["training","_body","FixedTabsLayout","firstHeading","BookingButton","buttonSubtitle"]}],"namespace":["products","_body","FixedTabsLayout","firstHeading","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["training","_body","FixedTabsLayout","firstHeading","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["training","footer","FixedTabsLayout","firstHeading","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["training","footer","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["training","footer","FixedTabsLayout","firstHeading","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["training","footer","FixedTabsLayout","firstHeading","ExpertBlock","expertList","skills"]}],"namespace":["training","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["training","footer","FixedTabsLayout","firstHeading","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["training","footer","FixedTabsLayout","firstHeading","ExpertBlock","link","url"]}],"namespace":["training","_body","FixedTabsLayout","firstHeading","ExpertBlock","link"]}],"namespace":["products","_body","FixedTabsLayout","firstHeading","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["training","footer","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["training","footer","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["training","footer","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["training","footer","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["training","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["products","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["training","_body","FixedTabsLayout","firstHeading","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["training","_body","FixedTabsLayout","firstHeading","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["training","_body","FixedTabsLayout","firstHeading","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["training","_body","FixedTabsLayout","firstHeading","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["training","_body","FixedTabsLayout","firstHeading","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["training","_body","FixedTabsLayout","firstHeading","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["training","_body","FixedTabsLayout","firstHeading","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["training","_body","FixedTabsLayout","firstHeading","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["training","_body","FixedTabsLayout","firstHeading","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["training","_body","FixedTabsLayout","firstHeading","CustomImage","sizes"]}],"namespace":["products","_body","FixedTabsLayout","firstHeading","CustomImage"]}],"namespace":["offices","_body","FixedTabsLayout","firstHeading"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","name":"firstBody","label":"First Body","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["training","_body","FixedTabsLayout","firstBody","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["training","_body","FixedTabsLayout","firstBody","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["training","_body","FixedTabsLayout","firstBody","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["training","_body","FixedTabsLayout","firstBody","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["training","_body","FixedTabsLayout","firstBody","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["training","_body","FixedTabsLayout","firstBody","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["training","_body","FixedTabsLayout","firstBody","VideoEmbed","duration"]}],"namespace":["products","_body","FixedTabsLayout","firstBody","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["training","_body","FixedTabsLayout","firstBody","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["training","_body","FixedTabsLayout","firstBody","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["training","_body","FixedTabsLayout","firstBody","BookingButton","buttonSubtitle"]}],"namespace":["products","_body","FixedTabsLayout","firstBody","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["training","_body","FixedTabsLayout","firstBody","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["training","footer","FixedTabsLayout","firstBody","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["training","footer","FixedTabsLayout","firstBody","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["training","footer","FixedTabsLayout","firstBody","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["training","footer","FixedTabsLayout","firstBody","ExpertBlock","expertList","skills"]}],"namespace":["training","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["training","footer","FixedTabsLayout","firstBody","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["training","footer","FixedTabsLayout","firstBody","ExpertBlock","link","url"]}],"namespace":["training","_body","FixedTabsLayout","firstBody","ExpertBlock","link"]}],"namespace":["products","_body","FixedTabsLayout","firstBody","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["training","footer","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["training","footer","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["training","footer","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["training","footer","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["training","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["products","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["training","_body","FixedTabsLayout","firstBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["training","_body","FixedTabsLayout","firstBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["training","_body","FixedTabsLayout","firstBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["training","_body","FixedTabsLayout","firstBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["training","_body","FixedTabsLayout","firstBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["training","_body","FixedTabsLayout","firstBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["training","_body","FixedTabsLayout","firstBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["training","_body","FixedTabsLayout","firstBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["training","_body","FixedTabsLayout","firstBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["training","_body","FixedTabsLayout","firstBody","CustomImage","sizes"]}],"namespace":["products","_body","FixedTabsLayout","firstBody","CustomImage"]}],"namespace":["offices","_body","FixedTabsLayout","firstBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","name":"secondTab","label":"Second Tab","namespace":["offices","_body","FixedTabsLayout","secondTab"],"searchable":true,"uid":false},{"type":"rich-text","name":"secondHeading","label":"Second Heading","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["training","_body","FixedTabsLayout","secondHeading","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["training","_body","FixedTabsLayout","secondHeading","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["training","_body","FixedTabsLayout","secondHeading","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["training","_body","FixedTabsLayout","secondHeading","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["training","_body","FixedTabsLayout","secondHeading","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["training","_body","FixedTabsLayout","secondHeading","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["training","_body","FixedTabsLayout","secondHeading","VideoEmbed","duration"]}],"namespace":["products","_body","FixedTabsLayout","secondHeading","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["training","_body","FixedTabsLayout","secondHeading","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["training","_body","FixedTabsLayout","secondHeading","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["training","_body","FixedTabsLayout","secondHeading","BookingButton","buttonSubtitle"]}],"namespace":["products","_body","FixedTabsLayout","secondHeading","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["training","_body","FixedTabsLayout","secondHeading","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["training","footer","FixedTabsLayout","secondHeading","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["training","footer","FixedTabsLayout","secondHeading","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["training","footer","FixedTabsLayout","secondHeading","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["training","footer","FixedTabsLayout","secondHeading","ExpertBlock","expertList","skills"]}],"namespace":["training","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["training","footer","FixedTabsLayout","secondHeading","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["training","footer","FixedTabsLayout","secondHeading","ExpertBlock","link","url"]}],"namespace":["training","_body","FixedTabsLayout","secondHeading","ExpertBlock","link"]}],"namespace":["products","_body","FixedTabsLayout","secondHeading","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["training","footer","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["training","footer","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["training","footer","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["training","footer","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["training","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["products","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["training","_body","FixedTabsLayout","secondHeading","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["training","_body","FixedTabsLayout","secondHeading","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["training","_body","FixedTabsLayout","secondHeading","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["training","_body","FixedTabsLayout","secondHeading","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["training","_body","FixedTabsLayout","secondHeading","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["training","_body","FixedTabsLayout","secondHeading","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["training","_body","FixedTabsLayout","secondHeading","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["training","_body","FixedTabsLayout","secondHeading","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["training","_body","FixedTabsLayout","secondHeading","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["training","_body","FixedTabsLayout","secondHeading","CustomImage","sizes"]}],"namespace":["products","_body","FixedTabsLayout","secondHeading","CustomImage"]}],"namespace":["offices","_body","FixedTabsLayout","secondHeading"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","name":"secondBody","label":"Second Body","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["training","_body","FixedTabsLayout","secondBody","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["training","_body","FixedTabsLayout","secondBody","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["training","_body","FixedTabsLayout","secondBody","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["training","_body","FixedTabsLayout","secondBody","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["training","_body","FixedTabsLayout","secondBody","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["training","_body","FixedTabsLayout","secondBody","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["training","_body","FixedTabsLayout","secondBody","VideoEmbed","duration"]}],"namespace":["products","_body","FixedTabsLayout","secondBody","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["training","_body","FixedTabsLayout","secondBody","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["training","_body","FixedTabsLayout","secondBody","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["training","_body","FixedTabsLayout","secondBody","BookingButton","buttonSubtitle"]}],"namespace":["products","_body","FixedTabsLayout","secondBody","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["training","_body","FixedTabsLayout","secondBody","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["training","footer","FixedTabsLayout","secondBody","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["training","footer","FixedTabsLayout","secondBody","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["training","footer","FixedTabsLayout","secondBody","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["training","footer","FixedTabsLayout","secondBody","ExpertBlock","expertList","skills"]}],"namespace":["training","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["training","footer","FixedTabsLayout","secondBody","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["training","footer","FixedTabsLayout","secondBody","ExpertBlock","link","url"]}],"namespace":["training","_body","FixedTabsLayout","secondBody","ExpertBlock","link"]}],"namespace":["products","_body","FixedTabsLayout","secondBody","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["training","footer","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["training","footer","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["training","footer","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["training","footer","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["training","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["products","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["training","_body","FixedTabsLayout","secondBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["training","_body","FixedTabsLayout","secondBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["training","_body","FixedTabsLayout","secondBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["training","_body","FixedTabsLayout","secondBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["training","_body","FixedTabsLayout","secondBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["training","_body","FixedTabsLayout","secondBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["training","_body","FixedTabsLayout","secondBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["training","_body","FixedTabsLayout","secondBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["training","_body","FixedTabsLayout","secondBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["training","_body","FixedTabsLayout","secondBody","CustomImage","sizes"]}],"namespace":["products","_body","FixedTabsLayout","secondBody","CustomImage"]}],"namespace":["offices","_body","FixedTabsLayout","secondBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["offices","_body","FixedTabsLayout"]},{"label":"Google Maps","name":"GoogleMaps","ui":{"previewSrc":"/images/thumbs/tina/google-maps.jpg"},"fields":[{"type":"string","label":"URL","name":"embedUrl","required":true,"namespace":["offices","_body","GoogleMaps","embedUrl"],"searchable":true,"uid":false},{"type":"string","label":"Width","name":"embedWidth","namespace":["offices","_body","GoogleMaps","embedWidth"],"searchable":true,"uid":false},{"type":"string","label":"Height","name":"embedHeight","namespace":["offices","_body","GoogleMaps","embedHeight"],"searchable":true,"uid":false}],"namespace":["offices","_body","GoogleMaps"]},{"label":"Grid Layout","name":"GridLayout","ui":{"previewSrc":"/images/thumbs/tina/grid-layout.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","_body","GridLayout","title"],"searchable":true,"uid":false},{"type":"object","list":true,"label":"Grid Items","name":"grids","ui":{},"fields":[{"type":"string","label":"Grid Title","name":"gridTitle","namespace":["products","_body","GridLayout","grids","gridTitle"]},{"type":"boolean","label":"Show Grid Title","name":"showGridTitle","namespace":["products","_body","GridLayout","grids","showGridTitle"]},{"type":"boolean","label":"Centered Grid Title","name":"centeredGridTitle","namespace":["products","_body","GridLayout","grids","centeredGridTitle"]},{"type":"boolean","label":"Show Header Divider","name":"showHeaderDivider","namespace":["products","_body","GridLayout","grids","showHeaderDivider"]},{"type":"boolean","label":"Offset Grid Start","name":"offsetGridStart","namespace":["products","_body","GridLayout","grids","offsetGridStart"]},{"type":"object","label":"Blocks","name":"blocks","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["training","_body","GridLayout","grids","blocks","title"]},{"type":"boolean","label":"Show Title","name":"showTitle","namespace":["training","_body","GridLayout","grids","blocks","showTitle"]},{"type":"image","label":"Image","name":"image","uploadDir":{"namespace":["page","beforeBody","GridLayout","grids","blocks","image","uploadDir"]},"namespace":["training","_body","GridLayout","grids","blocks","image"]},{"type":"image","label":"Related Image","name":"relatedImage","uploadDir":{"namespace":["page","beforeBody","GridLayout","grids","blocks","relatedImage","uploadDir"]},"namespace":["training","_body","GridLayout","grids","blocks","relatedImage"]},{"type":"rich-text","name":"linkContent","label":"Link Content","templates":[{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["userGroupPage","contentPage","_body","GridLayout","grids","blocks","linkContent","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["userGroupPage","contentPage","_body","GridLayout","grids","blocks","linkContent","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["userGroupPage","contentPage","_body","GridLayout","grids","blocks","linkContent","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["userGroupPage","contentPage","_body","GridLayout","grids","blocks","linkContent","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["userGroupPage","contentPage","_body","GridLayout","grids","blocks","linkContent","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["userGroupPage","contentPage","_body","GridLayout","grids","blocks","linkContent","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["userGroupPage","contentPage","_body","GridLayout","grids","blocks","linkContent","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["userGroupPage","contentPage","_body","GridLayout","grids","blocks","linkContent","UtilityButton","openInNewTab"]}],"namespace":["training","footer","GridLayout","grids","blocks","linkContent","UtilityButton"]}],"namespace":["training","_body","GridLayout","grids","blocks","linkContent"]}],"namespace":["products","_body","GridLayout","grids","blocks"]}],"namespace":["offices","_body","GridLayout","grids"],"searchable":true,"uid":false}],"namespace":["offices","_body","GridLayout"]},{"name":"Hero","label":"Hero","ui":{"previewSrc":"/blocks/hero.png","defaultItem":{"tagline":"Here's some text above the other text","headline":"This Big Text is Totally Awesome","text":"Phasellus scelerisque, libero eu finibus rutrum, risus risus accumsan libero, nec molestie urna dui a leo."}},"fields":[{"type":"string","label":"Tagline","name":"tagline","namespace":["offices","_body","Hero","tagline"],"searchable":true,"uid":false},{"type":"string","label":"Headline","name":"headline","namespace":["offices","_body","Hero","headline"],"searchable":true,"uid":false},{"label":"Text","name":"text","type":"rich-text","namespace":["offices","_body","Hero","text"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"label":"Actions","name":"actions","type":"object","list":true,"ui":{"defaultItem":{"label":"Action Label","type":"button","icon":true,"link":"/"}},"fields":[{"label":"Label","name":"label","type":"string","namespace":["products","_body","Hero","actions","label"]},{"label":"Type","name":"type","type":"string","options":[{"label":"Button","value":"button"},{"label":"Link","value":"link"}],"namespace":["products","_body","Hero","actions","type"]},{"label":"Icon","name":"icon","type":"boolean","namespace":["products","_body","Hero","actions","icon"]},{"label":"Link","name":"link","type":"string","namespace":["products","_body","Hero","actions","link"]}],"namespace":["offices","_body","Hero","actions"],"searchable":true,"uid":false},{"type":"object","label":"Image","name":"image","fields":[{"name":"src","label":"Image Source","type":"image","namespace":["products","_body","Hero","image","src"]},{"name":"alt","label":"Alt Text","type":"string","namespace":["products","_body","Hero","image","alt"]}],"namespace":["offices","_body","Hero","image"],"searchable":true,"uid":false},{"type":"string","label":"Color","name":"color","options":[{"label":"Default","value":"default"},{"label":"Tint","value":"tint"},{"label":"Primary","value":"primary"}],"namespace":["offices","_body","Hero","color"],"searchable":true,"uid":false}],"namespace":["offices","_body","Hero"]},{"name":"HorizontalCard","label":"Horizontal Card","ui":{"previewSrc":"/images/thumbs/tina/horizontal-card.jpg"},"fields":[{"type":"object","label":"Cards","name":"cardList","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["products","_body","HorizontalCard","cardList","title"]},{"type":"rich-text","label":"Content","name":"content","namespace":["products","_body","HorizontalCard","cardList","content"]},{"type":"image","label":"Thumbnail","name":"thumbnail","uploadDir":{"namespace":["page","beforeBody","HorizontalCard","cardList","thumbnail","uploadDir"]},"namespace":["products","_body","HorizontalCard","cardList","thumbnail"]},{"type":"string","label":"Link","name":"link","namespace":["products","_body","HorizontalCard","cardList","link"]}],"namespace":["offices","_body","HorizontalCard","cardList"],"searchable":true,"uid":false},{"type":"object","label":"Button","name":"button","fields":[{"type":"string","label":"Text","name":"text","namespace":["products","_body","HorizontalCard","button","text"]},{"type":"string","label":"Link","name":"link","namespace":["products","_body","HorizontalCard","button","link"]}],"namespace":["offices","_body","HorizontalCard","button"],"searchable":true,"uid":false}],"namespace":["offices","_body","HorizontalCard"]},{"name":"InternalCarousel","label":"Internal Carousel","ui":{"previewSrc":"/images/thumbs/tina/internal-carousel.jpg"},"fields":[{"label":"Images","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Image description"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["products","_body","InternalCarousel","items","label"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","InternalCarousel","items","imgSrc","uploadDir"]},"namespace":["products","_body","InternalCarousel","items","imgSrc"]}],"namespace":["offices","_body","InternalCarousel","items"],"searchable":true,"uid":false},{"type":"string","label":"Header","name":"header","namespace":["offices","_body","InternalCarousel","header"],"searchable":true,"uid":false},{"type":"rich-text","label":"Text","name":"paragraph","isBody":false,"namespace":["offices","_body","InternalCarousel","paragraph"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Website","name":"website","namespace":["offices","_body","InternalCarousel","website"],"searchable":true,"uid":false},{"type":"object","label":"Technologies","name":"technologies","list":true,"ui":{},"fields":[{"type":"string","label":"Name","name":"name","namespace":["products","_body","InternalCarousel","technologies","name"]}],"namespace":["offices","_body","InternalCarousel","technologies"],"searchable":true,"uid":false},{"type":"string","label":"Case Study","name":"caseStudyUrl","namespace":["offices","_body","InternalCarousel","caseStudyUrl"],"searchable":true,"uid":false},{"type":"string","label":"Video URL","name":"videoUrl","namespace":["offices","_body","InternalCarousel","videoUrl"],"searchable":true,"uid":false}],"namespace":["offices","_body","InternalCarousel"]},{"label":"Join As Presenter","name":"joinAsPresenter","fields":[{"label":"Learn More Link","name":"link","type":"string","namespace":["offices","_body","joinAsPresenter","link"],"searchable":true,"uid":false},{"label":"Image","name":"img","type":"image","namespace":["offices","_body","joinAsPresenter","img"],"searchable":false,"uid":false}],"namespace":["offices","_body","joinAsPresenter"]},{"label":"Join Github","name":"joinGithub","ui":{"previewSrc":"/images/thumbs/tina/join-github.jpg"},"fields":[{"label":"Title","name":"title","type":"string","namespace":["offices","_body","joinGithub","title"],"searchable":true,"uid":false},{"label":"Join Github Link","name":"link","type":"string","namespace":["offices","_body","joinGithub","link"],"searchable":true,"uid":false}],"namespace":["offices","_body","joinGithub"]},{"name":"JotFormEmbed","label":"JotForm Embed","ui":{"previewSrc":"/images/thumbs/tina/jotform-embed.jpg"},"fields":[{"type":"string","name":"jotFormId","label":"JotForm Id","required":true,"namespace":["offices","_body","JotFormEmbed","jotFormId"],"searchable":true,"uid":false},{"type":"string","label":"Button Text","name":"buttonText","namespace":["offices","_body","JotFormEmbed","buttonText"],"searchable":true,"uid":false},{"type":"string","name":"containerClass","label":"Container Class","namespace":["offices","_body","JotFormEmbed","containerClass"],"searchable":true,"uid":false},{"type":"string","label":"Button Class","name":"buttonClass","namespace":["offices","_body","JotFormEmbed","buttonClass"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","namespace":["offices","_body","JotFormEmbed","animated"],"searchable":true,"uid":false}],"namespace":["offices","_body","JotFormEmbed"]},{"name":"LatestTech","label":"Latest Tech","ui":{"previewSrc":"/images/thumbs/tina/latest-tech.jpg"},"fields":[{"type":"reference","description":"Select a config file including a set of badges","collections":["userGroupGlobal"],"label":"Badges","name":"badges","namespace":["offices","_body","LatestTech","badges"],"searchable":true,"uid":false}],"namespace":["offices","_body","LatestTech"]},{"name":"LocationBlock","label":"Locations","ui":{"previewSrc":"/images/thumbs/tina/locations.jpg"},"fields":[{"type":"string","name":"title","label":"Title","namespace":["offices","_body","LocationBlock","title"],"searchable":true,"uid":false},{"type":"object","label":"Location List","name":"locationList","list":true,"ui":{},"fields":[{"type":"reference","collections":["locations"],"label":"Location","name":"location","namespace":["products","_body","LocationBlock","locationList","location"]}],"namespace":["offices","_body","LocationBlock","locationList"],"searchable":true,"uid":false},{"type":"object","name":"chapelWebsite","label":"Chapel Website","fields":[{"type":"string","name":"title","label":"Text","namespace":["products","_body","LocationBlock","chapelWebsite","title"]},{"type":"string","name":"URL","label":"URL","namespace":["products","_body","LocationBlock","chapelWebsite","URL"]}],"namespace":["offices","_body","LocationBlock","chapelWebsite"],"searchable":true,"uid":false}],"namespace":["offices","_body","LocationBlock"]},{"name":"NewslettersTable","label":"Newsletters Table","ui":{"previewSrc":"/images/thumbs/tina/newsletters-table.jpg"},"fields":[{"type":"string","label":"Header text","name":"headerText","namespace":["offices","_body","NewslettersTable","headerText"],"searchable":true,"uid":false}],"namespace":["offices","_body","NewslettersTable"]},{"label":"Organizer","name":"organizer","fields":[{"type":"image","label":"Profile Image","name":"profileImg","namespace":["offices","_body","organizer","profileImg"],"searchable":false,"uid":false},{"type":"string","label":"Profile Link","name":"profileLink","namespace":["offices","_body","organizer","profileLink"],"searchable":true,"uid":false},{"type":"string","label":"Name","name":"name","namespace":["offices","_body","organizer","name"],"searchable":true,"uid":false},{"type":"string","label":"Position","name":"position","namespace":["offices","_body","organizer","position"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","namespace":["offices","_body","organizer","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["offices","_body","organizer"]},{"label":"Payment Block","name":"paymentBlock","ui":{"previewSrc":"/images/thumbs/tina/payment-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","_body","paymentBlock","title"],"searchable":true,"uid":false},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["offices","_body","paymentBlock","subTitle"],"searchable":true,"uid":false},{"type":"reference","label":"Payment Links","name":"payments","collections":["paymentDetails"],"namespace":["offices","_body","paymentBlock","payments"],"searchable":true,"uid":false},{"type":"rich-text","label":"Footer","name":"footer","namespace":["offices","_body","paymentBlock","footer"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"image","label":"Credit Cards Image","name":"creditImgSrc","namespace":["offices","_body","paymentBlock","creditImgSrc"],"searchable":false,"uid":false},{"type":"string","label":"Alt Text","name":"altTxt","namespace":["offices","_body","paymentBlock","altTxt"],"searchable":true,"uid":false}],"namespace":["offices","_body","paymentBlock"]},{"name":"PresenterBlock","label":"Presenters","ui":{"previewSrc":"/images/thumbs/tina/presenters.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["offices","_body","PresenterBlock","header"],"searchable":true,"uid":false},{"type":"object","name":"presenterList","label":"Presenters","list":true,"ui":{},"fields":[{"type":"reference","name":"presenter","label":"Presenters","collections":["presenter"],"namespace":["products","_body","PresenterBlock","presenterList","presenter"]}],"namespace":["offices","_body","PresenterBlock","presenterList"],"searchable":true,"uid":false},{"type":"object","label":"Other Events","name":"otherEvent","fields":[{"type":"string","label":"Title","name":"title","namespace":["products","_body","PresenterBlock","otherEvent","title"]},{"type":"string","label":"URL","name":"eventURL","namespace":["products","_body","PresenterBlock","otherEvent","eventURL"]}],"namespace":["offices","_body","PresenterBlock","otherEvent"],"searchable":true,"uid":false}],"namespace":["offices","_body","PresenterBlock"]},{"label":"Recurring Event","name":"RecurringEvent","ui":{"previewSrc":"/images/thumbs/tina/recurring-event.jpg"},"fields":[{"type":"string","label":"Apply Link Redirect","name":"applyLinkRedirect","namespace":["offices","_body","RecurringEvent","applyLinkRedirect"],"searchable":true,"uid":false},{"type":"string","label":"Day","name":"day","options":[{"label":"Monday","value":"monday"},{"label":"Tuesday","value":"tuesday"},{"label":"Wednesday","value":"wednesday"},{"label":"Thursday","value":"thursday"},{"label":"Friday","value":"friday"},{"label":"Saturday","value":"saturday"},{"label":"Sunday","value":"sunday"}],"required":true,"namespace":["offices","_body","RecurringEvent","day"],"searchable":true,"uid":false}],"namespace":["offices","_body","RecurringEvent"]},{"name":"SectionHeader","label":"Section Header","ui":{"previewSrc":"/images/thumbs/tina/section-header.jpg"},"fields":[{"type":"string","label":"Header Text","name":"headerText","namespace":["offices","_body","SectionHeader","headerText"],"searchable":true,"uid":false}],"namespace":["offices","_body","SectionHeader"]},{"name":"ServiceCards","label":"Service Cards","ui":{"previewSrc":"/images/thumbs/tina/services-cards.jpg"},"fields":[{"type":"string","label":"Big Cards Label","name":"bigCardsLabel","namespace":["offices","_body","ServiceCards","bigCardsLabel"],"searchable":true,"uid":false},{"label":"Big Cards","name":"bigCards","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["products","_body","ServiceCards","bigCards","title"]},{"type":"string","label":"Description","component":"textarea","name":"description","namespace":["products","_body","ServiceCards","bigCards","description"]},{"type":"string","label":"URL","name":"link","namespace":["products","_body","ServiceCards","bigCards","link"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Red","value":"red"},{"label":"Light Gray","value":"lightgray"},{"label":"Medium Gray","value":"mediumgray"},{"label":"Dark Gray","value":"darkgray"}],"namespace":["products","_body","ServiceCards","bigCards","color"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","ServiceCards","bigCards","imgSrc","uploadDir"]},"namespace":["products","_body","ServiceCards","bigCards","imgSrc"]}],"namespace":["offices","_body","ServiceCards","bigCards"],"searchable":true,"uid":false},{"type":"string","label":"Small Cards Label","name":"smallCardsLabel","namespace":["offices","_body","ServiceCards","smallCardsLabel"],"searchable":true,"uid":false},{"label":"Small Cards","name":"smallCards","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["products","_body","ServiceCards","smallCards","title"]},{"type":"string","label":"URL","name":"link","namespace":["products","_body","ServiceCards","smallCards","link"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Red","value":"red"},{"label":"Light Gray","value":"lightgray"},{"label":"Medium Gray","value":"mediumgray"},{"label":"Dark Gray","value":"darkgray"}],"namespace":["products","_body","ServiceCards","smallCards","color"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","ServiceCards","smallCards","imgSrc","uploadDir"]},"namespace":["products","_body","ServiceCards","smallCards","imgSrc"]},{"type":"boolean","label":"External Page","description":"Select this if the link is not part of the website. This includes SSW.Rules, and SSW.People links","name":"isExternal","namespace":["products","_body","ServiceCards","smallCards","isExternal"]}],"namespace":["offices","_body","ServiceCards","smallCards"],"searchable":true,"uid":false},{"label":"Links","name":"links","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["products","_body","ServiceCards","links","label"]},{"type":"string","label":"URL","name":"link","namespace":["products","_body","ServiceCards","links","link"]}],"namespace":["offices","_body","ServiceCards","links"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["offices","_body","ServiceCards","backgroundColor"],"searchable":true,"uid":false}],"namespace":["offices","_body","ServiceCards"]},{"label":"Table Layout","name":"TableLayout","ui":{"previewSrc":"/images/thumbs/tina/table-layout.jpg"},"fields":[{"label":"Table Style","name":"tableStyle","type":"string","options":["none","basicBorder","styled","benefits"],"namespace":["offices","_body","TableLayout","tableStyle"],"searchable":true,"uid":false},{"label":"First column bolded + left aligned","name":"firstColBold","type":"boolean","required":false,"namespace":["offices","_body","TableLayout","firstColBold"],"searchable":true,"uid":false},{"type":"string","label":"Table Headers","name":"headers","list":true,"namespace":["offices","_body","TableLayout","headers"],"searchable":true,"uid":false},{"type":"object","label":"Rows","name":"rows","list":true,"fields":[{"type":"object","label":"Cells","name":"cells","list":true,"fields":[{"type":"string","label":"Value","name":"cellValue","required":true,"component":{"namespace":["page","beforeBody","TableLayout","rows","cells","cellValue",""]},"namespace":["training","_body","TableLayout","rows","cells","cellValue"]}],"ui":{},"namespace":["products","_body","TableLayout","rows","cells"]},{"type":"boolean","label":"Is Heading","name":"isHeader","required":false,"namespace":["products","_body","TableLayout","rows","isHeader"]}],"ui":{},"namespace":["offices","_body","TableLayout","rows"],"searchable":true,"uid":false}],"namespace":["offices","_body","TableLayout"]},{"name":"TestimonialsList","label":"Testimonials List","ui":{"previewSrc":"/images/thumbs/tina/testimonials.jpg"},"fields":[{"type":"object","label":"Exclude Categories","name":"excludedCategories","ui":{},"list":true,"fields":[{"type":"reference","label":"Category Name","name":"categoryName","collections":["testimonialCategories"],"namespace":["products","_body","TestimonialsList","excludedCategories","categoryName"]}],"namespace":["offices","_body","TestimonialsList","excludedCategories"],"searchable":true,"uid":false}],"namespace":["offices","_body","TestimonialsList"]},{"label":"Training Information","name":"TrainingInformation","ui":{"previewSrc":"/images/thumbs/tina/training-information.jpg"},"fields":[{"type":"object","label":"Training Information Items","name":"trainingInformationItems","list":true,"fields":[{"type":"string","label":"Header","name":"header","namespace":["products","_body","TrainingInformation","trainingInformationItems","header"]},{"type":"rich-text","label":"Body","name":"body","templates":[{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["training","footer","TrainingInformation","trainingInformationItems","body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["training","footer","TrainingInformation","trainingInformationItems","body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["training","footer","TrainingInformation","trainingInformationItems","body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["training","footer","TrainingInformation","trainingInformationItems","body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["training","footer","TrainingInformation","trainingInformationItems","body","VerticalListItem","afterBody"]}],"namespace":["training","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem"]},{"label":"Recurring Event","name":"RecurringEvent","ui":{"previewSrc":"/images/thumbs/tina/recurring-event.jpg"},"fields":[{"type":"string","label":"Apply Link Redirect","name":"applyLinkRedirect","namespace":["training","footer","TrainingInformation","trainingInformationItems","body","RecurringEvent","applyLinkRedirect"]},{"type":"string","label":"Day","name":"day","options":[{"label":"Monday","value":"monday"},{"label":"Tuesday","value":"tuesday"},{"label":"Wednesday","value":"wednesday"},{"label":"Thursday","value":"thursday"},{"label":"Friday","value":"friday"},{"label":"Saturday","value":"saturday"},{"label":"Sunday","value":"sunday"}],"required":true,"namespace":["training","footer","TrainingInformation","trainingInformationItems","body","RecurringEvent","day"]}],"namespace":["training","_body","TrainingInformation","trainingInformationItems","body","RecurringEvent"]}],"namespace":["products","_body","TrainingInformation","trainingInformationItems","body"]}],"namespace":["offices","_body","TrainingInformation","trainingInformationItems"],"searchable":true,"uid":false}],"namespace":["offices","_body","TrainingInformation"]},{"label":"Training Learning Outcomes","name":"TrainingLearningOutcome","ui":{"previewSrc":"/images/thumbs/tina/training-learning-outcomes.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["offices","_body","TrainingLearningOutcome","header"],"searchable":true,"uid":false},{"type":"object","label":"List Items","name":"listItems","list":true,"fields":[{"type":"string","label":"Title","name":"title","namespace":["products","_body","TrainingLearningOutcome","listItems","title"]},{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["products","_body","TrainingLearningOutcome","listItems","content"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","TrainingLearningOutcome","listItems","icon","uploadDir"]},"namespace":["products","_body","TrainingLearningOutcome","listItems","icon"]}],"namespace":["offices","_body","TrainingLearningOutcome","listItems"],"searchable":true,"uid":false}],"namespace":["offices","_body","TrainingLearningOutcome"]},{"label":"Tweet Embed","name":"TweetEmbed","ui":{"previewSrc":"/images/thumbs/tina/tweet-embed.jpg"},"fields":[{"type":"string","name":"url","label":"Tweet URL","required":true,"namespace":["offices","_body","TweetEmbed","url"],"searchable":true,"uid":false}],"namespace":["offices","_body","TweetEmbed"]},{"name":"UpcomingEvents","label":"Upcoming Events","ui":{"previewSrc":"/images/thumbs/tina/upcoming-events.jpg","defaultItem":{"title":"Upcoming Events","numberOfEvents":30}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["offices","_body","UpcomingEvents","title"],"searchable":true,"uid":false},{"type":"number","label":"Number of Events","name":"numberOfEvents","namespace":["offices","_body","UpcomingEvents","numberOfEvents"],"searchable":true,"uid":false}],"namespace":["offices","_body","UpcomingEvents"]},{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["offices","_body","UtilityButton","buttonText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"link","required":false,"namespace":["offices","_body","UtilityButton","link"],"searchable":true,"uid":false},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["offices","_body","UtilityButton","size"],"searchable":true,"uid":false},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["offices","_body","UtilityButton","btnIcon"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["offices","_body","UtilityButton","animated"],"searchable":true,"uid":false},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["offices","_body","UtilityButton","uncentered"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["offices","_body","UtilityButton","removeTopMargin"],"searchable":true,"uid":false},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["offices","_body","UtilityButton","openInNewTab"],"searchable":true,"uid":false}],"namespace":["offices","_body","UtilityButton"]},{"name":"VerticalImageLayout","label":"Vertical Image Layout","fields":[{"type":"image","label":"Image","name":"imageSrc","uploadDir":{"namespace":["page","beforeBody","VerticalImageLayout","imageSrc","uploadDir"]},"namespace":["offices","_body","VerticalImageLayout","imageSrc"],"searchable":false,"uid":false},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["offices","_body","VerticalImageLayout","altText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"imageLink","namespace":["offices","_body","VerticalImageLayout","imageLink"],"searchable":true,"uid":false},{"type":"number","label":"Height","name":"height","required":true,"namespace":["offices","_body","VerticalImageLayout","height"],"searchable":true,"uid":false},{"type":"number","label":"Width","name":"width","required":true,"namespace":["offices","_body","VerticalImageLayout","width"],"searchable":true,"uid":false},{"type":"rich-text","label":"Message","name":"message","required":true,"namespace":["offices","_body","VerticalImageLayout","message"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["offices","_body","VerticalImageLayout","sizes"],"searchable":true,"uid":false}],"namespace":["offices","_body","VerticalImageLayout"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["offices","_body","VerticalListItem","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"number","label":"Index number","name":"index","namespace":["offices","_body","VerticalListItem","index"],"searchable":true,"uid":false},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["offices","_body","VerticalListItem","icon"],"searchable":false,"uid":false},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["offices","_body","VerticalListItem","iconScale"],"searchable":true,"uid":false},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["offices","_body","VerticalListItem","afterBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["offices","_body","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["offices","_body","VideoEmbed","url"],"searchable":true,"uid":false},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["offices","_body","VideoEmbed","videoWidth"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["offices","_body","VideoEmbed","removeMargin"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["offices","_body","VideoEmbed","uncentre"],"searchable":true,"uid":false},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["offices","_body","VideoEmbed","overflow"],"searchable":true,"uid":false},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["offices","_body","VideoEmbed","caption"],"searchable":true,"uid":false},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["offices","_body","VideoEmbed","duration"],"searchable":true,"uid":false}],"namespace":["offices","_body","VideoEmbed"]},{"name":"InlineJotForm","label":"In-line JotForm","ui":{"previewSrc":"/images/thumbs/tina/inline-jot-form.jpg"},"fields":[{"type":"string","name":"title","label":"Title","description":"Optional title for JotForm","namespace":["offices","_body","InlineJotForm","title"],"searchable":true,"uid":false},{"type":"string","name":"jotFormId","label":"JotForm ID","required":true,"namespace":["offices","_body","InlineJotForm","jotFormId"],"searchable":true,"uid":false},{"type":"string","name":"additionalClasses","label":"Additional classnames","description":"Optional styling for iframe element only","namespace":["offices","_body","InlineJotForm","additionalClasses"],"searchable":true,"uid":false}],"namespace":["offices","_body","InlineJotForm"]}],"isBody":true,"namespace":["offices","_body"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["offices"]},{"label":"Partners - Index","name":"partnerIndex","path":"content/partners/index","format":"json","ui":{"allowedActions":{"create":false,"delete":false}},"fields":[{"type":"object","label":"SEO Values","name":"seo","fields":[{"type":"string","label":"Title (70 characters)","name":"title","ui":{},"namespace":["partnerIndex","seo","title"],"searchable":true,"uid":false},{"type":"string","label":"Description (150 characters)","name":"description","component":"textarea","ui":{},"namespace":["partnerIndex","seo","description"],"searchable":true,"uid":false},{"type":"string","label":"Canonical URL","name":"canonical","namespace":["partnerIndex","seo","canonical"],"searchable":true,"uid":false},{"type":"boolean","name":"showBreadcrumb","label":"Show Breadcrumb","namespace":["partnerIndex","seo","showBreadcrumb"],"searchable":true,"uid":false},{"label":"Images","name":"images","list":true,"type":"object","ui":{"defaultItem":{"url":"/images/ssw-default-og.jpg","width":1200,"height":630,"alt":"SSW Consulting - Enterprise Software Development"}},"fields":[{"type":"image","label":"Image Url","name":"url","require":true,"namespace":["productsIndex","seo","images","url"],"searchable":false,"uid":false},{"type":"number","label":"Width (px)","name":"width","namespace":["productsIndex","seo","images","width"],"searchable":true,"uid":false},{"type":"number","label":"Height (px)","name":"height","namespace":["productsIndex","seo","images","height"],"searchable":true,"uid":false},{"type":"string","label":"Image Alt Text","name":"alt","namespace":["productsIndex","seo","images","alt"],"searchable":true,"uid":false}],"namespace":["partnerIndex","seo","images"],"searchable":true,"uid":false}],"namespace":["partnerIndex","seo"],"searchable":true,"uid":false},{"type":"string","name":"title","label":"Title","namespace":["partnerIndex","title"],"searchable":true,"uid":false},{"type":"string","name":"subTitle","label":"Sub Title","namespace":["partnerIndex","subTitle"],"searchable":true,"uid":false},{"type":"object","label":"Partners List","name":"partnersList","list":true,"ui":{},"fields":[{"type":"string","label":"Name","name":"name","isTitle":true,"required":true,"namespace":["partnerIndex","partnersList","name"],"searchable":true,"uid":false},{"type":"string","label":"URL","name":"url","namespace":["partnerIndex","partnersList","url"],"searchable":true,"uid":false},{"type":"string","label":"Description","name":"description","namespace":["partnerIndex","partnersList","description"],"searchable":true,"uid":false},{"type":"image","label":"Logo","name":"logo","uploadDir":{"namespace":["partnerIndex","partnersList","logo","uploadDir"]},"namespace":["partnerIndex","partnersList","logo"],"searchable":false,"uid":false}],"namespace":["partnerIndex","partnersList"],"searchable":true,"uid":false}],"namespace":["partnerIndex"]},{"label":"Products - Index","name":"productsIndex","path":"content/products/index","format":"json","ui":{"allowedActions":{"create":false,"delete":false}},"fields":[{"type":"object","label":"SEO Values","name":"seo","fields":[{"type":"string","label":"Title (70 characters)","name":"title","ui":{},"namespace":["productsIndex","seo","title"],"searchable":true,"uid":false},{"type":"string","label":"Description (150 characters)","name":"description","component":"textarea","ui":{},"namespace":["productsIndex","seo","description"],"searchable":true,"uid":false},{"type":"string","label":"Canonical URL","name":"canonical","namespace":["productsIndex","seo","canonical"],"searchable":true,"uid":false},{"type":"boolean","name":"showBreadcrumb","label":"Show Breadcrumb","namespace":["productsIndex","seo","showBreadcrumb"],"searchable":true,"uid":false},{"label":"Images","name":"images","list":true,"type":"object","ui":{"defaultItem":{"url":"/images/ssw-default-og.jpg","width":1200,"height":630,"alt":"SSW Consulting - Enterprise Software Development"}},"fields":[{"type":"image","label":"Image Url","name":"url","require":true,"namespace":["industryIndex","seo","images","url"],"searchable":false,"uid":false},{"type":"number","label":"Width (px)","name":"width","namespace":["industryIndex","seo","images","width"],"searchable":true,"uid":false},{"type":"number","label":"Height (px)","name":"height","namespace":["industryIndex","seo","images","height"],"searchable":true,"uid":false},{"type":"string","label":"Image Alt Text","name":"alt","namespace":["industryIndex","seo","images","alt"],"searchable":true,"uid":false}],"namespace":["productsIndex","seo","images"],"searchable":true,"uid":false}],"namespace":["productsIndex","seo"],"searchable":true,"uid":false},{"type":"string","label":"Title","name":"title","required":true,"namespace":["productsIndex","title"],"searchable":true,"uid":false},{"type":"string","label":"Subtitle","name":"subTitle","required":true,"namespace":["productsIndex","subTitle"],"searchable":true,"uid":false},{"type":"object","label":"Products List","name":"productsList","list":true,"ui":{},"fields":[{"type":"string","label":"Name","name":"name","isTitle":true,"required":true,"namespace":["productsIndex","productsList","name"],"searchable":true,"uid":false},{"type":"string","label":"URL","name":"url","namespace":["productsIndex","productsList","url"],"searchable":true,"uid":false},{"type":"string","label":"Description","name":"description","namespace":["productsIndex","productsList","description"],"searchable":true,"uid":false},{"type":"image","label":"Logo","name":"logo","uploadDir":{"namespace":["productsIndex","productsList","logo","uploadDir"]},"namespace":["productsIndex","productsList","logo"],"searchable":false,"uid":false}],"namespace":["productsIndex","productsList"],"searchable":true,"uid":false}],"namespace":["productsIndex"]},{"label":"Industry - Index","name":"industryIndex","path":"content/industry/index","format":"json","ui":{"allowedActions":{"create":false,"delete":false}},"fields":[{"type":"object","label":"SEO Values","name":"seo","fields":[{"type":"string","label":"Title (70 characters)","name":"title","ui":{},"namespace":["industryIndex","seo","title"],"searchable":true,"uid":false},{"type":"string","label":"Description (150 characters)","name":"description","component":"textarea","ui":{},"namespace":["industryIndex","seo","description"],"searchable":true,"uid":false},{"type":"string","label":"Canonical URL","name":"canonical","namespace":["industryIndex","seo","canonical"],"searchable":true,"uid":false},{"type":"boolean","name":"showBreadcrumb","label":"Show Breadcrumb","namespace":["industryIndex","seo","showBreadcrumb"],"searchable":true,"uid":false},{"label":"Images","name":"images","list":true,"type":"object","ui":{"defaultItem":{"url":"/images/ssw-default-og.jpg","width":1200,"height":630,"alt":"SSW Consulting - Enterprise Software Development"}},"fields":[{"type":"image","label":"Image Url","name":"url","require":true,"namespace":["products","seo","images","url"],"searchable":false,"uid":false},{"type":"number","label":"Width (px)","name":"width","namespace":["products","seo","images","width"],"searchable":true,"uid":false},{"type":"number","label":"Height (px)","name":"height","namespace":["products","seo","images","height"],"searchable":true,"uid":false},{"type":"string","label":"Image Alt Text","name":"alt","namespace":["products","seo","images","alt"],"searchable":true,"uid":false}],"namespace":["industryIndex","seo","images"],"searchable":true,"uid":false}],"namespace":["industryIndex","seo"],"searchable":true,"uid":false},{"type":"string","label":"Title","name":"title","required":true,"namespace":["industryIndex","title"],"searchable":true,"uid":false},{"type":"string","label":"Subtitle","name":"subTitle","required":true,"namespace":["industryIndex","subTitle"],"searchable":true,"uid":false},{"type":"object","label":"Industry Project List","name":"industryList","list":true,"ui":{},"fields":[{"type":"string","label":"Name","name":"name","isTitle":true,"required":true,"namespace":["industryIndex","industryList","name"],"searchable":true,"uid":false},{"type":"string","label":"URL","name":"url","namespace":["industryIndex","industryList","url"],"searchable":true,"uid":false},{"type":"string","label":"Description","name":"description","namespace":["industryIndex","industryList","description"],"searchable":true,"uid":false},{"type":"image","label":"Logo","name":"logo","uploadDir":{"namespace":["industryIndex","industryList","logo","uploadDir"]},"namespace":["industryIndex","industryList","logo"],"searchable":false,"uid":false}],"namespace":["industryIndex","industryList"],"searchable":true,"uid":false}],"namespace":["industryIndex"]},{"label":"Products - Pages","name":"products","path":"content/products","format":"mdx","ui":{},"fields":[{"type":"string","name":"tip","label":"Tip","ui":{},"namespace":["products","tip"],"searchable":true,"uid":false},{"type":"object","label":"SEO Values","name":"seo","fields":[{"type":"string","label":"Title (70 characters)","name":"title","ui":{},"namespace":["products","seo","title"],"searchable":true,"uid":false},{"type":"string","label":"Description (150 characters)","name":"description","component":"textarea","ui":{},"namespace":["products","seo","description"],"searchable":true,"uid":false},{"type":"string","label":"Canonical URL","name":"canonical","namespace":["products","seo","canonical"],"searchable":true,"uid":false},{"type":"boolean","name":"showBreadcrumb","label":"Show Breadcrumb","namespace":["products","seo","showBreadcrumb"],"searchable":true,"uid":false},{"label":"Images","name":"images","list":true,"type":"object","ui":{"defaultItem":{"url":"/images/ssw-default-og.jpg","width":1200,"height":630,"alt":"SSW Consulting - Enterprise Software Development"}},"fields":[{"type":"image","label":"Image Url","name":"url","require":true,"namespace":["training","seo","images","url"],"searchable":false,"uid":false},{"type":"number","label":"Width (px)","name":"width","namespace":["training","seo","images","width"],"searchable":true,"uid":false},{"type":"number","label":"Height (px)","name":"height","namespace":["training","seo","images","height"],"searchable":true,"uid":false},{"type":"string","label":"Image Alt Text","name":"alt","namespace":["training","seo","images","alt"],"searchable":true,"uid":false}],"namespace":["products","seo","images"],"searchable":true,"uid":false}],"namespace":["products","seo"],"searchable":true,"uid":false},{"type":"rich-text","label":"Body","name":"_body","templates":[{"name":"AboutUs","label":"About Us","ui":{"previewSrc":"/images/thumbs/tina/about-us.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["products","_body","AboutUs","backgroundColor"],"searchable":true,"uid":false},{"type":"boolean","label":"Show Map","name":"showMap","required":false,"namespace":["products","_body","AboutUs","showMap"],"searchable":true,"uid":false}],"namespace":["products","_body","AboutUs"]},{"label":"Agenda","name":"Agenda","ui":{"previewSrc":"/images/thumbs/tina/agenda.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["products","_body","Agenda","header"],"searchable":true,"uid":false},{"type":"string","label":"Header Color","name":"textColor","options":[{"label":"Red","value":"red"},{"label":"Gray","value":"gray"},{"label":"Default","value":"default"}],"namespace":["products","_body","Agenda","textColor"],"searchable":true,"uid":false},{"type":"object","label":"Agenda Items","name":"agendaItemList","ui":{},"list":true,"fields":[{"type":"string","label":"Placeholder Text","name":"placeholder","namespace":["training","_body","Agenda","agendaItemList","placeholder"]},{"type":"rich-text","label":"Body","name":"body","templates":[{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["userGroupPage","contentPage","_body","Agenda","agendaItemList","body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["userGroupPage","contentPage","_body","Agenda","agendaItemList","body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["userGroupPage","contentPage","_body","Agenda","agendaItemList","body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["userGroupPage","contentPage","_body","Agenda","agendaItemList","body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["userGroupPage","contentPage","_body","Agenda","agendaItemList","body","VerticalListItem","afterBody"]}],"namespace":["training","footer","Agenda","agendaItemList","body","VerticalListItem"]}],"namespace":["training","_body","Agenda","agendaItemList","body"]}],"namespace":["products","_body","Agenda","agendaItemList"],"searchable":true,"uid":false}],"namespace":["products","_body","Agenda"]},{"label":"Agreement Form","name":"AgreementForm","ui":{"previewSrc":"/images/thumbs/tina/agreement-form.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["products","_body","AgreementForm","backgroundColor"],"searchable":true,"uid":false},{"type":"object","label":"Form fields","name":"fields","list":true,"fields":[{"type":"string","label":"ID","name":"id","required":true,"namespace":["training","_body","AgreementForm","fields","id"]},{"type":"string","label":"Label","name":"label","required":true,"namespace":["training","_body","AgreementForm","fields","label"]},{"type":"string","label":"Placeholder","name":"placeholder","namespace":["training","_body","AgreementForm","fields","placeholder"]},{"type":"boolean","label":"Resizeable","name":"resizeable","required":true,"namespace":["training","_body","AgreementForm","fields","resizeable"]}],"namespace":["products","_body","AgreementForm","fields"],"searchable":true,"uid":false}],"namespace":["products","_body","AgreementForm"]},{"label":"Interest Form","name":"InterestForm","ui":{"previewSrc":"/images/thumbs/tina/interest-form.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["products","_body","InterestForm","buttonText"],"searchable":true,"uid":false}],"namespace":["products","_body","InterestForm"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["products","_body","BookingButton","buttonText"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","namespace":["products","_body","BookingButton","animated"],"searchable":true,"uid":false},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["products","_body","BookingButton","buttonSubtitle"],"searchable":true,"uid":false}],"namespace":["products","_body","BookingButton"]},{"name":"BuiltOnAzure","label":"Built on Azure","ui":{"previewSrc":"/images/thumbs/tina/built-on-azure.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["products","_body","BuiltOnAzure","backgroundColor"],"searchable":true,"uid":false}],"namespace":["products","_body","BuiltOnAzure"]},{"name":"Carousel","label":"Carousel","ui":{"previewSrc":"/images/thumbs/tina/carousel.jpg"},"fields":[{"label":"Items","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Item description","link":"/","openIn":"sameWindow"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["training","_body","Carousel","items","label"]},{"type":"string","label":"URL","name":"link","description":"If link contains ssw.com.au, you can skip the full URL and just use the path. e.g. /services","namespace":["training","_body","Carousel","items","link"]},{"type":"string","label":"Open in","name":"openIn","description":"If it is external link, please select 'New window' option.","options":[{"label":"Same window","value":"sameWindow"},{"label":"Modal","value":"modal"},{"label":"New window","value":"newWindow"}],"namespace":["training","_body","Carousel","items","openIn"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","Carousel","items","imgSrc","uploadDir"]},"namespace":["training","_body","Carousel","items","imgSrc"]}],"namespace":["products","_body","Carousel","items"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["products","_body","Carousel","backgroundColor"],"searchable":true,"uid":false},{"type":"number","label":"Delay (Seconds)","name":"delay","required":true,"namespace":["products","_body","Carousel","delay"],"searchable":true,"uid":false},{"type":"boolean","label":"Show on mobile devices","name":"showOnMobileDevices","namespace":["products","_body","Carousel","showOnMobileDevices"],"searchable":true,"uid":false}],"namespace":["products","_body","Carousel"]},{"name":"Citation","label":"Citation","fields":[{"type":"string","label":"author","name":"author","namespace":["products","_body","Citation","author"],"searchable":true,"uid":false},{"type":"string","label":"article","name":"article","required":true,"namespace":["products","_body","Citation","article"],"searchable":true,"uid":false}],"namespace":["products","_body","Citation"]},{"label":"Client List","name":"ClientList","ui":{"previewSrc":"/images/thumbs/tina/clients-list.jpg"},"fields":[{"type":"object","name":"categories","label":"Categories","list":true,"fields":[{"type":"reference","name":"category","label":"Category","collections":["clientCategories"],"namespace":["training","_body","ClientList","categories","category"]}],"ui":{},"namespace":["products","_body","ClientList","categories"],"searchable":true,"uid":false},{"type":"object","name":"clients","label":"Clients list","list":true,"ui":{"previewSrc":"/images/thumbs/tina/clients-list.jpg"},"fields":[{"type":"string","name":"name","label":"Name","namespace":["training","_body","ClientList","clients","name"]},{"type":"image","name":"logo","label":"Logo","namespace":["training","_body","ClientList","clients","logo"]},{"type":"string","name":"logoUrl","label":"Logo URL","namespace":["training","_body","ClientList","clients","logoUrl"]},{"type":"rich-text","name":"content","label":"Content","templates":[{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","UtilityButton","openInNewTab"]}],"namespace":["training","footer","ClientList","clients","content","UtilityButton"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","VideoEmbed","duration"]}],"namespace":["training","footer","ClientList","clients","content","VideoEmbed"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","CustomImage","sizes"]}],"namespace":["training","footer","ClientList","clients","content","CustomImage"]},{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","CustomImage","sizes"]}],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","duration"]}],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","ColorBlock"]}],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content"]}],"namespace":["training","footer","ClientList","clients","content","ContentCard"]}],"namespace":["training","_body","ClientList","clients","content"]},{"type":"string","name":"caseStudyUrl","label":"Case study URL","namespace":["training","_body","ClientList","clients","caseStudyUrl"]},{"type":"object","name":"categories","label":"Categories","list":true,"ui":{},"fields":[{"type":"reference","name":"category","label":"Category","collections":["clientCategories"],"namespace":["training","footer","ClientList","clients","categories","category"]}],"namespace":["training","_body","ClientList","clients","categories"]}],"namespace":["products","_body","ClientList","clients"],"searchable":true,"uid":false}],"namespace":["products","_body","ClientList"]},{"name":"ClientLogos","label":"Client Logos","ui":{"previewSrc":"/images/thumbs/tina/client-logos.jpg"},"fields":[{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["products","_body","ClientLogos","altText"],"searchable":true,"uid":false}],"namespace":["products","_body","ClientLogos"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["products","_body","ColorBlock","title"],"searchable":true,"uid":false},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["products","_body","ColorBlock","subTitle"],"searchable":true,"uid":false},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["training","_body","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["training","_body","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["training","_body","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["training","_body","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["training","_body","ColorBlock","colorRow","caption"]}],"namespace":["products","_body","ColorBlock","colorRow"],"searchable":true,"uid":false}],"namespace":["products","_body","ColorBlock"]},{"name":"ColorPalette","label":"Color Palette","ui":{"previewSrc":"/images/thumbs/tina/color-palette.jpg"},"fields":[{"type":"string","label":"Name","name":"name","namespace":["products","_body","ColorPalette","name"],"searchable":true,"uid":false}],"namespace":["products","_body","ColorPalette"]},{"name":"Content","label":"Content","ui":{"previewSrc":"/images/thumbs/tina/content.jpg","defaultItem":{"body":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["products","_body","Content","title"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["training","footer","Content","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["training","footer","Content","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["training","footer","Content","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["training","footer","Content","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["training","footer","Content","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["training","footer","Content","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["training","footer","Content","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["training","footer","Content","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["training","footer","Content","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["training","footer","Content","content","CustomImage","sizes"]}],"namespace":["training","_body","Content","content","CustomImage"]},{"name":"ClientLogos","label":"Client Logos","ui":{"previewSrc":"/images/thumbs/tina/client-logos.jpg"},"fields":[{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["training","footer","Content","content","ClientLogos","altText"]}],"namespace":["training","_body","Content","content","ClientLogos"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["training","footer","Content","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["training","footer","Content","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["training","footer","Content","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["training","footer","Content","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["training","footer","Content","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["training","footer","Content","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["training","footer","Content","content","VideoEmbed","duration"]}],"namespace":["training","_body","Content","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["training","footer","Content","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["training","footer","Content","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["userGroupPage","contentPage","_body","Content","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["userGroupPage","contentPage","_body","Content","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["userGroupPage","contentPage","_body","Content","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["userGroupPage","contentPage","_body","Content","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["userGroupPage","contentPage","_body","Content","content","ColorBlock","colorRow","caption"]}],"namespace":["training","footer","Content","content","ColorBlock","colorRow"]}],"namespace":["training","_body","Content","content","ColorBlock"]}],"namespace":["products","_body","Content","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Container Padding","name":"paddingClass","options":["Mobile: No Padding","Mobile: No Top and Horizontal Padding"],"namespace":["products","_body","Content","paddingClass"],"searchable":true,"uid":false},{"type":"string","label":"Text size","name":"size","options":[{"label":"small","value":"sm"},{"label":"normal","value":"base"},{"label":"large","value":"lg"},{"label":"extra large","value":"xl"},{"label":"2x large","value":"2xl"}],"namespace":["products","_body","Content","size"],"searchable":true,"uid":false},{"type":"string","label":"Align","name":"align","options":[{"label":"Left","value":"left"},{"label":"Center","value":"center"},{"label":"Right","value":"right"}],"namespace":["products","_body","Content","align"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["products","_body","Content","backgroundColor"],"searchable":true,"uid":false}],"namespace":["products","_body","Content"]},{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["products","_body","ContentCard","prose"],"searchable":true,"uid":false},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["products","_body","ContentCard","centerAlignedText"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["training","footer","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["training","footer","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["training","footer","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["training","footer","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["training","footer","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["training","footer","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["training","footer","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["training","footer","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["training","footer","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["training","footer","ContentCard","content","CustomImage","sizes"]}],"namespace":["training","_body","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["training","footer","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["training","footer","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["training","footer","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["training","footer","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["training","footer","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["training","_body","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["training","footer","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["training","footer","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["training","footer","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["training","footer","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["training","footer","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["training","footer","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["training","footer","ContentCard","content","VideoEmbed","duration"]}],"namespace":["training","_body","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["training","footer","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["training","footer","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["userGroupPage","contentPage","_body","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["userGroupPage","contentPage","_body","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["userGroupPage","contentPage","_body","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["userGroupPage","contentPage","_body","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["userGroupPage","contentPage","_body","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["training","footer","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["training","_body","ContentCard","content","ColorBlock"]}],"namespace":["products","_body","ContentCard","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["products","_body","ContentCard"]},{"name":"CustomDownloadButton","label":"Custom Download Button","ui":{"previewSrc":"/images/thumbs/tina/custom-download-button.jpg"},"fields":[{"type":"string","label":"Text","name":"btnText","namespace":["products","_body","CustomDownloadButton","btnText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"btnLink","namespace":["products","_body","CustomDownloadButton","btnLink"],"searchable":true,"uid":false}],"namespace":["products","_body","CustomDownloadButton"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["products","_body","CustomImage","src"],"searchable":false,"uid":false},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["products","_body","CustomImage","altText"],"searchable":true,"uid":false},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["products","_body","CustomImage","alignment"],"searchable":true,"uid":false},{"type":"number","label":"Height","name":"height","required":true,"namespace":["products","_body","CustomImage","height"],"searchable":true,"uid":false},{"type":"number","label":"Width","name":"width","required":true,"namespace":["products","_body","CustomImage","width"],"searchable":true,"uid":false},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["products","_body","CustomImage","link"],"searchable":true,"uid":false},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["products","_body","CustomImage","customClass"],"searchable":true,"uid":false},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["products","_body","CustomImage","caption"],"searchable":true,"uid":false},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["products","_body","CustomImage","captionColor"],"searchable":true,"uid":false},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["products","_body","CustomImage","sizes"],"searchable":true,"uid":false}],"namespace":["products","_body","CustomImage"]},{"name":"DomainFromQuery","label":"Domain from query","ui":{"previewSrc":"/images/thumbs/tina/domain-from-query.jpg"},"fields":[{"name":"title","label":"Title","type":"string","description":"This is a H1 heading","namespace":["products","_body","DomainFromQuery","title"],"searchable":true,"uid":false},{"name":"showDomain","label":"Show domain name","type":"boolean","description":"Query param in URL must have key of 'domain'","namespace":["products","_body","DomainFromQuery","showDomain"],"searchable":true,"uid":false}],"namespace":["products","_body","DomainFromQuery"]},{"name":"DownloadBlock","label":"Download Block","ui":{"previewSrc":"/images/thumbs/tina/download-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["products","_body","DownloadBlock","title"],"searchable":true,"uid":false},{"type":"object","label":"Downloads","name":"downloads","ui":{},"list":true,"fields":[{"type":"string","label":"Header","name":"header","namespace":["training","_body","DownloadBlock","downloads","header"]},{"type":"image","label":"Image","name":"img","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","img","uploadDir"]},"namespace":["training","_body","DownloadBlock","downloads","img"]},{"type":"string","label":"Image Background","name":"imgBackground","options":["black","grey","white","darkgrey","darkgreen"],"namespace":["training","_body","DownloadBlock","downloads","imgBackground"]},{"type":"string","label":"First Link Text","name":"firstLinkText","description":"Defaults to PNG","namespace":["training","_body","DownloadBlock","downloads","firstLinkText"]},{"type":"image","label":"First Link","name":"firstLink","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","firstLink","uploadDir"]},"namespace":["training","_body","DownloadBlock","downloads","firstLink"]},{"type":"string","label":"Second Link Text","name":"secondLinkText","description":"Defaults to PDF","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","secondLinkText","uploadDir"]},"namespace":["training","_body","DownloadBlock","downloads","secondLinkText"]},{"type":"image","label":"Second Link","name":"secondLink","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","secondLink","uploadDir"]},"namespace":["training","_body","DownloadBlock","downloads","secondLink"]}],"namespace":["products","_body","DownloadBlock","downloads"],"searchable":true,"uid":false},{"type":"boolean","label":"Bottom border","name":"bottomBorder","namespace":["products","_body","DownloadBlock","bottomBorder"],"searchable":true,"uid":false}],"namespace":["products","_body","DownloadBlock"]},{"name":"DynamicColumns","label":"Dynamic Column Layout","fields":[{"type":"rich-text","label":"Column text body","name":"colBody","required":true,"namespace":["products","_body","DynamicColumns","colBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"number","label":"Number of columns","name":"colCount","required":true,"ui":{},"namespace":["products","_body","DynamicColumns","colCount"],"searchable":true,"uid":false}],"namespace":["products","_body","DynamicColumns"]},{"name":"EventBooking","label":"Events Booking","ui":{"previewSrc":"/images/thumbs/tina/events-booking.jpg"},"fields":[{"type":"number","label":"Duration (In Days)","name":"eventDurationInDays","required":true,"namespace":["products","_body","EventBooking","eventDurationInDays"],"searchable":true,"uid":false},{"type":"number","label":"Price","name":"price","required":true,"namespace":["products","_body","EventBooking","price"],"searchable":true,"uid":false},{"type":"number","label":"Discount Price","name":"discountPrice","namespace":["products","_body","EventBooking","discountPrice"],"searchable":true,"uid":false},{"type":"string","name":"gstText","label":"Select GST Option","options":["inc GST","+ GST"],"required":true,"namespace":["products","_body","EventBooking","gstText"],"searchable":true,"uid":false},{"type":"string","label":"Discount Note","name":"discountNote","namespace":["products","_body","EventBooking","discountNote"],"searchable":true,"uid":false},{"type":"object","label":"Event","name":"eventList","ui":{},"list":true,"fields":[{"type":"string","label":"City","name":"city","namespace":["training","_body","EventBooking","eventList","city"]},{"type":"datetime","label":"Start Date","name":"date","ui":{},"namespace":["training","_body","EventBooking","eventList","date"]},{"type":"string","label":"Booking URL","name":"bookingURL","namespace":["training","_body","EventBooking","eventList","bookingURL"]},{"type":"reference","label":"Location","name":"location","collections":["locations"],"namespace":["training","_body","EventBooking","eventList","location"]}],"namespace":["products","_body","EventBooking","eventList"],"searchable":true,"uid":false}],"namespace":["products","_body","EventBooking"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["training","footer","EventLink","content","Flag","country"]}],"namespace":["training","_body","EventLink","content","Flag"]}],"namespace":["products","_body","EventLink","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Link","name":"link","namespace":["products","_body","EventLink","link"],"searchable":true,"uid":false},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["products","_body","EventLink","eventThumbnail"],"searchable":false,"uid":false},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["products","_body","EventLink","thumbnailAlt"],"searchable":true,"uid":false}],"namespace":["products","_body","EventLink"]},{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["products","_body","Flag","country"],"searchable":true,"uid":false}],"namespace":["products","_body","Flag"]},{"name":"FixedColumns","label":"Fixed Column Layout (2 columns)","ui":{"previewSrc":"/images/thumbs/tina/fixed-columns.jpg"},"fields":[{"type":"rich-text","label":"Header Section (Optional)","name":"headerSection","namespace":["products","_body","FixedColumns","headerSection"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"First column text","name":"firstColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["training","footer","FixedColumns","firstColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["training","footer","FixedColumns","firstColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock"]}],"namespace":["training","footer","FixedColumns","firstColBody","ContentCard","content"]}],"namespace":["training","_body","FixedColumns","firstColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["training","footer","FixedColumns","firstColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["training","footer","FixedColumns","firstColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["training","footer","FixedColumns","firstColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["training","footer","FixedColumns","firstColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["training","footer","FixedColumns","firstColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["training","footer","FixedColumns","firstColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["training","footer","FixedColumns","firstColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["training","footer","FixedColumns","firstColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["training","footer","FixedColumns","firstColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["training","footer","FixedColumns","firstColBody","CustomImage","sizes"]}],"namespace":["training","_body","FixedColumns","firstColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","EventLink","content","Flag","country"]}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","EventLink","content","Flag"]}],"namespace":["training","footer","FixedColumns","firstColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["training","footer","FixedColumns","firstColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["training","footer","FixedColumns","firstColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["training","footer","FixedColumns","firstColBody","EventLink","thumbnailAlt"]}],"namespace":["training","_body","FixedColumns","firstColBody","EventLink"]}],"namespace":["products","_body","FixedColumns","firstColBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"Second column text","name":"secondColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["training","footer","FixedColumns","secondColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["training","footer","FixedColumns","secondColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock"]}],"namespace":["training","footer","FixedColumns","secondColBody","ContentCard","content"]}],"namespace":["training","_body","FixedColumns","secondColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["training","footer","FixedColumns","secondColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["training","footer","FixedColumns","secondColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["training","footer","FixedColumns","secondColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["training","footer","FixedColumns","secondColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["training","footer","FixedColumns","secondColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["training","footer","FixedColumns","secondColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["training","footer","FixedColumns","secondColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["training","footer","FixedColumns","secondColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["training","footer","FixedColumns","secondColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["training","footer","FixedColumns","secondColBody","CustomImage","sizes"]}],"namespace":["training","_body","FixedColumns","secondColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","EventLink","content","Flag","country"]}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","EventLink","content","Flag"]}],"namespace":["training","footer","FixedColumns","secondColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["training","footer","FixedColumns","secondColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["training","footer","FixedColumns","secondColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["training","footer","FixedColumns","secondColBody","EventLink","thumbnailAlt"]}],"namespace":["training","_body","FixedColumns","secondColBody","EventLink"]}],"namespace":["products","_body","FixedColumns","secondColBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["products","_body","FixedColumns"]},{"name":"FixedTabsLayout","label":"Fixed Tabs Layout","ui":{"previewSrc":"/images/thumbs/tina/fixed-tabs-layout.jpg"},"fields":[{"type":"string","name":"firstTab","label":"First Tab","namespace":["products","_body","FixedTabsLayout","firstTab"],"searchable":true,"uid":false},{"type":"rich-text","name":"firstHeading","label":"First Heading","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["training","footer","FixedTabsLayout","firstHeading","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["training","footer","FixedTabsLayout","firstHeading","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["training","footer","FixedTabsLayout","firstHeading","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["training","footer","FixedTabsLayout","firstHeading","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["training","footer","FixedTabsLayout","firstHeading","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["training","footer","FixedTabsLayout","firstHeading","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["training","footer","FixedTabsLayout","firstHeading","VideoEmbed","duration"]}],"namespace":["training","_body","FixedTabsLayout","firstHeading","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["training","footer","FixedTabsLayout","firstHeading","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["training","footer","FixedTabsLayout","firstHeading","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["training","footer","FixedTabsLayout","firstHeading","BookingButton","buttonSubtitle"]}],"namespace":["training","_body","FixedTabsLayout","firstHeading","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["training","footer","FixedTabsLayout","firstHeading","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList","skills"]}],"namespace":["training","footer","FixedTabsLayout","firstHeading","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","ExpertBlock","link","url"]}],"namespace":["training","footer","FixedTabsLayout","firstHeading","ExpertBlock","link"]}],"namespace":["training","_body","FixedTabsLayout","firstHeading","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["training","footer","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["training","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["training","footer","FixedTabsLayout","firstHeading","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["training","footer","FixedTabsLayout","firstHeading","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["training","footer","FixedTabsLayout","firstHeading","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["training","footer","FixedTabsLayout","firstHeading","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["training","footer","FixedTabsLayout","firstHeading","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["training","footer","FixedTabsLayout","firstHeading","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["training","footer","FixedTabsLayout","firstHeading","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["training","footer","FixedTabsLayout","firstHeading","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["training","footer","FixedTabsLayout","firstHeading","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["training","footer","FixedTabsLayout","firstHeading","CustomImage","sizes"]}],"namespace":["training","_body","FixedTabsLayout","firstHeading","CustomImage"]}],"namespace":["products","_body","FixedTabsLayout","firstHeading"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","name":"firstBody","label":"First Body","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["training","footer","FixedTabsLayout","firstBody","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["training","footer","FixedTabsLayout","firstBody","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["training","footer","FixedTabsLayout","firstBody","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["training","footer","FixedTabsLayout","firstBody","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["training","footer","FixedTabsLayout","firstBody","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["training","footer","FixedTabsLayout","firstBody","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["training","footer","FixedTabsLayout","firstBody","VideoEmbed","duration"]}],"namespace":["training","_body","FixedTabsLayout","firstBody","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["training","footer","FixedTabsLayout","firstBody","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["training","footer","FixedTabsLayout","firstBody","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["training","footer","FixedTabsLayout","firstBody","BookingButton","buttonSubtitle"]}],"namespace":["training","_body","FixedTabsLayout","firstBody","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["training","footer","FixedTabsLayout","firstBody","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList","skills"]}],"namespace":["training","footer","FixedTabsLayout","firstBody","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","ExpertBlock","link","url"]}],"namespace":["training","footer","FixedTabsLayout","firstBody","ExpertBlock","link"]}],"namespace":["training","_body","FixedTabsLayout","firstBody","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["training","footer","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["training","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["training","footer","FixedTabsLayout","firstBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["training","footer","FixedTabsLayout","firstBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["training","footer","FixedTabsLayout","firstBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["training","footer","FixedTabsLayout","firstBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["training","footer","FixedTabsLayout","firstBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["training","footer","FixedTabsLayout","firstBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["training","footer","FixedTabsLayout","firstBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["training","footer","FixedTabsLayout","firstBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["training","footer","FixedTabsLayout","firstBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["training","footer","FixedTabsLayout","firstBody","CustomImage","sizes"]}],"namespace":["training","_body","FixedTabsLayout","firstBody","CustomImage"]}],"namespace":["products","_body","FixedTabsLayout","firstBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","name":"secondTab","label":"Second Tab","namespace":["products","_body","FixedTabsLayout","secondTab"],"searchable":true,"uid":false},{"type":"rich-text","name":"secondHeading","label":"Second Heading","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["training","footer","FixedTabsLayout","secondHeading","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["training","footer","FixedTabsLayout","secondHeading","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["training","footer","FixedTabsLayout","secondHeading","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["training","footer","FixedTabsLayout","secondHeading","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["training","footer","FixedTabsLayout","secondHeading","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["training","footer","FixedTabsLayout","secondHeading","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["training","footer","FixedTabsLayout","secondHeading","VideoEmbed","duration"]}],"namespace":["training","_body","FixedTabsLayout","secondHeading","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["training","footer","FixedTabsLayout","secondHeading","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["training","footer","FixedTabsLayout","secondHeading","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["training","footer","FixedTabsLayout","secondHeading","BookingButton","buttonSubtitle"]}],"namespace":["training","_body","FixedTabsLayout","secondHeading","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["training","footer","FixedTabsLayout","secondHeading","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList","skills"]}],"namespace":["training","footer","FixedTabsLayout","secondHeading","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","ExpertBlock","link","url"]}],"namespace":["training","footer","FixedTabsLayout","secondHeading","ExpertBlock","link"]}],"namespace":["training","_body","FixedTabsLayout","secondHeading","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["training","footer","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["training","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["training","footer","FixedTabsLayout","secondHeading","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["training","footer","FixedTabsLayout","secondHeading","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["training","footer","FixedTabsLayout","secondHeading","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["training","footer","FixedTabsLayout","secondHeading","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["training","footer","FixedTabsLayout","secondHeading","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["training","footer","FixedTabsLayout","secondHeading","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["training","footer","FixedTabsLayout","secondHeading","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["training","footer","FixedTabsLayout","secondHeading","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["training","footer","FixedTabsLayout","secondHeading","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["training","footer","FixedTabsLayout","secondHeading","CustomImage","sizes"]}],"namespace":["training","_body","FixedTabsLayout","secondHeading","CustomImage"]}],"namespace":["products","_body","FixedTabsLayout","secondHeading"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","name":"secondBody","label":"Second Body","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["training","footer","FixedTabsLayout","secondBody","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["training","footer","FixedTabsLayout","secondBody","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["training","footer","FixedTabsLayout","secondBody","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["training","footer","FixedTabsLayout","secondBody","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["training","footer","FixedTabsLayout","secondBody","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["training","footer","FixedTabsLayout","secondBody","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["training","footer","FixedTabsLayout","secondBody","VideoEmbed","duration"]}],"namespace":["training","_body","FixedTabsLayout","secondBody","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["training","footer","FixedTabsLayout","secondBody","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["training","footer","FixedTabsLayout","secondBody","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["training","footer","FixedTabsLayout","secondBody","BookingButton","buttonSubtitle"]}],"namespace":["training","_body","FixedTabsLayout","secondBody","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["training","footer","FixedTabsLayout","secondBody","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList","skills"]}],"namespace":["training","footer","FixedTabsLayout","secondBody","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","ExpertBlock","link","url"]}],"namespace":["training","footer","FixedTabsLayout","secondBody","ExpertBlock","link"]}],"namespace":["training","_body","FixedTabsLayout","secondBody","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["training","footer","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["training","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["training","footer","FixedTabsLayout","secondBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["training","footer","FixedTabsLayout","secondBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["training","footer","FixedTabsLayout","secondBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["training","footer","FixedTabsLayout","secondBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["training","footer","FixedTabsLayout","secondBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["training","footer","FixedTabsLayout","secondBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["training","footer","FixedTabsLayout","secondBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["training","footer","FixedTabsLayout","secondBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["training","footer","FixedTabsLayout","secondBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["training","footer","FixedTabsLayout","secondBody","CustomImage","sizes"]}],"namespace":["training","_body","FixedTabsLayout","secondBody","CustomImage"]}],"namespace":["products","_body","FixedTabsLayout","secondBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["products","_body","FixedTabsLayout"]},{"label":"Google Maps","name":"GoogleMaps","ui":{"previewSrc":"/images/thumbs/tina/google-maps.jpg"},"fields":[{"type":"string","label":"URL","name":"embedUrl","required":true,"namespace":["products","_body","GoogleMaps","embedUrl"],"searchable":true,"uid":false},{"type":"string","label":"Width","name":"embedWidth","namespace":["products","_body","GoogleMaps","embedWidth"],"searchable":true,"uid":false},{"type":"string","label":"Height","name":"embedHeight","namespace":["products","_body","GoogleMaps","embedHeight"],"searchable":true,"uid":false}],"namespace":["products","_body","GoogleMaps"]},{"label":"Grid Layout","name":"GridLayout","ui":{"previewSrc":"/images/thumbs/tina/grid-layout.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["products","_body","GridLayout","title"],"searchable":true,"uid":false},{"type":"object","list":true,"label":"Grid Items","name":"grids","ui":{},"fields":[{"type":"string","label":"Grid Title","name":"gridTitle","namespace":["training","_body","GridLayout","grids","gridTitle"]},{"type":"boolean","label":"Show Grid Title","name":"showGridTitle","namespace":["training","_body","GridLayout","grids","showGridTitle"]},{"type":"boolean","label":"Centered Grid Title","name":"centeredGridTitle","namespace":["training","_body","GridLayout","grids","centeredGridTitle"]},{"type":"boolean","label":"Show Header Divider","name":"showHeaderDivider","namespace":["training","_body","GridLayout","grids","showHeaderDivider"]},{"type":"boolean","label":"Offset Grid Start","name":"offsetGridStart","namespace":["training","_body","GridLayout","grids","offsetGridStart"]},{"type":"object","label":"Blocks","name":"blocks","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["training","footer","GridLayout","grids","blocks","title"]},{"type":"boolean","label":"Show Title","name":"showTitle","namespace":["training","footer","GridLayout","grids","blocks","showTitle"]},{"type":"image","label":"Image","name":"image","uploadDir":{"namespace":["page","beforeBody","GridLayout","grids","blocks","image","uploadDir"]},"namespace":["training","footer","GridLayout","grids","blocks","image"]},{"type":"image","label":"Related Image","name":"relatedImage","uploadDir":{"namespace":["page","beforeBody","GridLayout","grids","blocks","relatedImage","uploadDir"]},"namespace":["training","footer","GridLayout","grids","blocks","relatedImage"]},{"type":"rich-text","name":"linkContent","label":"Link Content","templates":[{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["userGroupPage","contentPage","_body","GridLayout","grids","blocks","linkContent","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["userGroupPage","contentPage","_body","GridLayout","grids","blocks","linkContent","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["userGroupPage","contentPage","_body","GridLayout","grids","blocks","linkContent","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["userGroupPage","contentPage","_body","GridLayout","grids","blocks","linkContent","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["userGroupPage","contentPage","_body","GridLayout","grids","blocks","linkContent","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["userGroupPage","contentPage","_body","GridLayout","grids","blocks","linkContent","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["userGroupPage","contentPage","_body","GridLayout","grids","blocks","linkContent","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["userGroupPage","contentPage","_body","GridLayout","grids","blocks","linkContent","UtilityButton","openInNewTab"]}],"namespace":["userGroupPage","contentPage","_body","GridLayout","grids","blocks","linkContent","UtilityButton"]}],"namespace":["training","footer","GridLayout","grids","blocks","linkContent"]}],"namespace":["training","_body","GridLayout","grids","blocks"]}],"namespace":["products","_body","GridLayout","grids"],"searchable":true,"uid":false}],"namespace":["products","_body","GridLayout"]},{"name":"Hero","label":"Hero","ui":{"previewSrc":"/blocks/hero.png","defaultItem":{"tagline":"Here's some text above the other text","headline":"This Big Text is Totally Awesome","text":"Phasellus scelerisque, libero eu finibus rutrum, risus risus accumsan libero, nec molestie urna dui a leo."}},"fields":[{"type":"string","label":"Tagline","name":"tagline","namespace":["products","_body","Hero","tagline"],"searchable":true,"uid":false},{"type":"string","label":"Headline","name":"headline","namespace":["products","_body","Hero","headline"],"searchable":true,"uid":false},{"label":"Text","name":"text","type":"rich-text","namespace":["products","_body","Hero","text"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"label":"Actions","name":"actions","type":"object","list":true,"ui":{"defaultItem":{"label":"Action Label","type":"button","icon":true,"link":"/"}},"fields":[{"label":"Label","name":"label","type":"string","namespace":["training","_body","Hero","actions","label"]},{"label":"Type","name":"type","type":"string","options":[{"label":"Button","value":"button"},{"label":"Link","value":"link"}],"namespace":["training","_body","Hero","actions","type"]},{"label":"Icon","name":"icon","type":"boolean","namespace":["training","_body","Hero","actions","icon"]},{"label":"Link","name":"link","type":"string","namespace":["training","_body","Hero","actions","link"]}],"namespace":["products","_body","Hero","actions"],"searchable":true,"uid":false},{"type":"object","label":"Image","name":"image","fields":[{"name":"src","label":"Image Source","type":"image","namespace":["training","_body","Hero","image","src"]},{"name":"alt","label":"Alt Text","type":"string","namespace":["training","_body","Hero","image","alt"]}],"namespace":["products","_body","Hero","image"],"searchable":true,"uid":false},{"type":"string","label":"Color","name":"color","options":[{"label":"Default","value":"default"},{"label":"Tint","value":"tint"},{"label":"Primary","value":"primary"}],"namespace":["products","_body","Hero","color"],"searchable":true,"uid":false}],"namespace":["products","_body","Hero"]},{"name":"HorizontalCard","label":"Horizontal Card","ui":{"previewSrc":"/images/thumbs/tina/horizontal-card.jpg"},"fields":[{"type":"object","label":"Cards","name":"cardList","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["training","_body","HorizontalCard","cardList","title"]},{"type":"rich-text","label":"Content","name":"content","namespace":["training","_body","HorizontalCard","cardList","content"]},{"type":"image","label":"Thumbnail","name":"thumbnail","uploadDir":{"namespace":["page","beforeBody","HorizontalCard","cardList","thumbnail","uploadDir"]},"namespace":["training","_body","HorizontalCard","cardList","thumbnail"]},{"type":"string","label":"Link","name":"link","namespace":["training","_body","HorizontalCard","cardList","link"]}],"namespace":["products","_body","HorizontalCard","cardList"],"searchable":true,"uid":false},{"type":"object","label":"Button","name":"button","fields":[{"type":"string","label":"Text","name":"text","namespace":["training","_body","HorizontalCard","button","text"]},{"type":"string","label":"Link","name":"link","namespace":["training","_body","HorizontalCard","button","link"]}],"namespace":["products","_body","HorizontalCard","button"],"searchable":true,"uid":false}],"namespace":["products","_body","HorizontalCard"]},{"name":"InternalCarousel","label":"Internal Carousel","ui":{"previewSrc":"/images/thumbs/tina/internal-carousel.jpg"},"fields":[{"label":"Images","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Image description"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["training","_body","InternalCarousel","items","label"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","InternalCarousel","items","imgSrc","uploadDir"]},"namespace":["training","_body","InternalCarousel","items","imgSrc"]}],"namespace":["products","_body","InternalCarousel","items"],"searchable":true,"uid":false},{"type":"string","label":"Header","name":"header","namespace":["products","_body","InternalCarousel","header"],"searchable":true,"uid":false},{"type":"rich-text","label":"Text","name":"paragraph","isBody":false,"namespace":["products","_body","InternalCarousel","paragraph"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Website","name":"website","namespace":["products","_body","InternalCarousel","website"],"searchable":true,"uid":false},{"type":"object","label":"Technologies","name":"technologies","list":true,"ui":{},"fields":[{"type":"string","label":"Name","name":"name","namespace":["training","_body","InternalCarousel","technologies","name"]}],"namespace":["products","_body","InternalCarousel","technologies"],"searchable":true,"uid":false},{"type":"string","label":"Case Study","name":"caseStudyUrl","namespace":["products","_body","InternalCarousel","caseStudyUrl"],"searchable":true,"uid":false},{"type":"string","label":"Video URL","name":"videoUrl","namespace":["products","_body","InternalCarousel","videoUrl"],"searchable":true,"uid":false}],"namespace":["products","_body","InternalCarousel"]},{"label":"Join As Presenter","name":"joinAsPresenter","fields":[{"label":"Learn More Link","name":"link","type":"string","namespace":["products","_body","joinAsPresenter","link"],"searchable":true,"uid":false},{"label":"Image","name":"img","type":"image","namespace":["products","_body","joinAsPresenter","img"],"searchable":false,"uid":false}],"namespace":["products","_body","joinAsPresenter"]},{"label":"Join Github","name":"joinGithub","ui":{"previewSrc":"/images/thumbs/tina/join-github.jpg"},"fields":[{"label":"Title","name":"title","type":"string","namespace":["products","_body","joinGithub","title"],"searchable":true,"uid":false},{"label":"Join Github Link","name":"link","type":"string","namespace":["products","_body","joinGithub","link"],"searchable":true,"uid":false}],"namespace":["products","_body","joinGithub"]},{"name":"JotFormEmbed","label":"JotForm Embed","ui":{"previewSrc":"/images/thumbs/tina/jotform-embed.jpg"},"fields":[{"type":"string","name":"jotFormId","label":"JotForm Id","required":true,"namespace":["products","_body","JotFormEmbed","jotFormId"],"searchable":true,"uid":false},{"type":"string","label":"Button Text","name":"buttonText","namespace":["products","_body","JotFormEmbed","buttonText"],"searchable":true,"uid":false},{"type":"string","name":"containerClass","label":"Container Class","namespace":["products","_body","JotFormEmbed","containerClass"],"searchable":true,"uid":false},{"type":"string","label":"Button Class","name":"buttonClass","namespace":["products","_body","JotFormEmbed","buttonClass"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","namespace":["products","_body","JotFormEmbed","animated"],"searchable":true,"uid":false}],"namespace":["products","_body","JotFormEmbed"]},{"name":"LatestTech","label":"Latest Tech","ui":{"previewSrc":"/images/thumbs/tina/latest-tech.jpg"},"fields":[{"type":"reference","description":"Select a config file including a set of badges","collections":["userGroupGlobal"],"label":"Badges","name":"badges","namespace":["products","_body","LatestTech","badges"],"searchable":true,"uid":false}],"namespace":["products","_body","LatestTech"]},{"name":"LocationBlock","label":"Locations","ui":{"previewSrc":"/images/thumbs/tina/locations.jpg"},"fields":[{"type":"string","name":"title","label":"Title","namespace":["products","_body","LocationBlock","title"],"searchable":true,"uid":false},{"type":"object","label":"Location List","name":"locationList","list":true,"ui":{},"fields":[{"type":"reference","collections":["locations"],"label":"Location","name":"location","namespace":["training","_body","LocationBlock","locationList","location"]}],"namespace":["products","_body","LocationBlock","locationList"],"searchable":true,"uid":false},{"type":"object","name":"chapelWebsite","label":"Chapel Website","fields":[{"type":"string","name":"title","label":"Text","namespace":["training","_body","LocationBlock","chapelWebsite","title"]},{"type":"string","name":"URL","label":"URL","namespace":["training","_body","LocationBlock","chapelWebsite","URL"]}],"namespace":["products","_body","LocationBlock","chapelWebsite"],"searchable":true,"uid":false}],"namespace":["products","_body","LocationBlock"]},{"name":"NewslettersTable","label":"Newsletters Table","ui":{"previewSrc":"/images/thumbs/tina/newsletters-table.jpg"},"fields":[{"type":"string","label":"Header text","name":"headerText","namespace":["products","_body","NewslettersTable","headerText"],"searchable":true,"uid":false}],"namespace":["products","_body","NewslettersTable"]},{"label":"Organizer","name":"organizer","fields":[{"type":"image","label":"Profile Image","name":"profileImg","namespace":["products","_body","organizer","profileImg"],"searchable":false,"uid":false},{"type":"string","label":"Profile Link","name":"profileLink","namespace":["products","_body","organizer","profileLink"],"searchable":true,"uid":false},{"type":"string","label":"Name","name":"name","namespace":["products","_body","organizer","name"],"searchable":true,"uid":false},{"type":"string","label":"Position","name":"position","namespace":["products","_body","organizer","position"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","namespace":["products","_body","organizer","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["products","_body","organizer"]},{"label":"Payment Block","name":"paymentBlock","ui":{"previewSrc":"/images/thumbs/tina/payment-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["products","_body","paymentBlock","title"],"searchable":true,"uid":false},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["products","_body","paymentBlock","subTitle"],"searchable":true,"uid":false},{"type":"reference","label":"Payment Links","name":"payments","collections":["paymentDetails"],"namespace":["products","_body","paymentBlock","payments"],"searchable":true,"uid":false},{"type":"rich-text","label":"Footer","name":"footer","namespace":["products","_body","paymentBlock","footer"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"image","label":"Credit Cards Image","name":"creditImgSrc","namespace":["products","_body","paymentBlock","creditImgSrc"],"searchable":false,"uid":false},{"type":"string","label":"Alt Text","name":"altTxt","namespace":["products","_body","paymentBlock","altTxt"],"searchable":true,"uid":false}],"namespace":["products","_body","paymentBlock"]},{"name":"PresenterBlock","label":"Presenters","ui":{"previewSrc":"/images/thumbs/tina/presenters.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["products","_body","PresenterBlock","header"],"searchable":true,"uid":false},{"type":"object","name":"presenterList","label":"Presenters","list":true,"ui":{},"fields":[{"type":"reference","name":"presenter","label":"Presenters","collections":["presenter"],"namespace":["training","_body","PresenterBlock","presenterList","presenter"]}],"namespace":["products","_body","PresenterBlock","presenterList"],"searchable":true,"uid":false},{"type":"object","label":"Other Events","name":"otherEvent","fields":[{"type":"string","label":"Title","name":"title","namespace":["training","_body","PresenterBlock","otherEvent","title"]},{"type":"string","label":"URL","name":"eventURL","namespace":["training","_body","PresenterBlock","otherEvent","eventURL"]}],"namespace":["products","_body","PresenterBlock","otherEvent"],"searchable":true,"uid":false}],"namespace":["products","_body","PresenterBlock"]},{"label":"Recurring Event","name":"RecurringEvent","ui":{"previewSrc":"/images/thumbs/tina/recurring-event.jpg"},"fields":[{"type":"string","label":"Apply Link Redirect","name":"applyLinkRedirect","namespace":["products","_body","RecurringEvent","applyLinkRedirect"],"searchable":true,"uid":false},{"type":"string","label":"Day","name":"day","options":[{"label":"Monday","value":"monday"},{"label":"Tuesday","value":"tuesday"},{"label":"Wednesday","value":"wednesday"},{"label":"Thursday","value":"thursday"},{"label":"Friday","value":"friday"},{"label":"Saturday","value":"saturday"},{"label":"Sunday","value":"sunday"}],"required":true,"namespace":["products","_body","RecurringEvent","day"],"searchable":true,"uid":false}],"namespace":["products","_body","RecurringEvent"]},{"name":"SectionHeader","label":"Section Header","ui":{"previewSrc":"/images/thumbs/tina/section-header.jpg"},"fields":[{"type":"string","label":"Header Text","name":"headerText","namespace":["products","_body","SectionHeader","headerText"],"searchable":true,"uid":false}],"namespace":["products","_body","SectionHeader"]},{"name":"ServiceCards","label":"Service Cards","ui":{"previewSrc":"/images/thumbs/tina/services-cards.jpg"},"fields":[{"type":"string","label":"Big Cards Label","name":"bigCardsLabel","namespace":["products","_body","ServiceCards","bigCardsLabel"],"searchable":true,"uid":false},{"label":"Big Cards","name":"bigCards","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["training","_body","ServiceCards","bigCards","title"]},{"type":"string","label":"Description","component":"textarea","name":"description","namespace":["training","_body","ServiceCards","bigCards","description"]},{"type":"string","label":"URL","name":"link","namespace":["training","_body","ServiceCards","bigCards","link"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Red","value":"red"},{"label":"Light Gray","value":"lightgray"},{"label":"Medium Gray","value":"mediumgray"},{"label":"Dark Gray","value":"darkgray"}],"namespace":["training","_body","ServiceCards","bigCards","color"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","ServiceCards","bigCards","imgSrc","uploadDir"]},"namespace":["training","_body","ServiceCards","bigCards","imgSrc"]}],"namespace":["products","_body","ServiceCards","bigCards"],"searchable":true,"uid":false},{"type":"string","label":"Small Cards Label","name":"smallCardsLabel","namespace":["products","_body","ServiceCards","smallCardsLabel"],"searchable":true,"uid":false},{"label":"Small Cards","name":"smallCards","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["training","_body","ServiceCards","smallCards","title"]},{"type":"string","label":"URL","name":"link","namespace":["training","_body","ServiceCards","smallCards","link"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Red","value":"red"},{"label":"Light Gray","value":"lightgray"},{"label":"Medium Gray","value":"mediumgray"},{"label":"Dark Gray","value":"darkgray"}],"namespace":["training","_body","ServiceCards","smallCards","color"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","ServiceCards","smallCards","imgSrc","uploadDir"]},"namespace":["training","_body","ServiceCards","smallCards","imgSrc"]},{"type":"boolean","label":"External Page","description":"Select this if the link is not part of the website. This includes SSW.Rules, and SSW.People links","name":"isExternal","namespace":["training","_body","ServiceCards","smallCards","isExternal"]}],"namespace":["products","_body","ServiceCards","smallCards"],"searchable":true,"uid":false},{"label":"Links","name":"links","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["training","_body","ServiceCards","links","label"]},{"type":"string","label":"URL","name":"link","namespace":["training","_body","ServiceCards","links","link"]}],"namespace":["products","_body","ServiceCards","links"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["products","_body","ServiceCards","backgroundColor"],"searchable":true,"uid":false}],"namespace":["products","_body","ServiceCards"]},{"label":"Table Layout","name":"TableLayout","ui":{"previewSrc":"/images/thumbs/tina/table-layout.jpg"},"fields":[{"label":"Table Style","name":"tableStyle","type":"string","options":["none","basicBorder","styled","benefits"],"namespace":["products","_body","TableLayout","tableStyle"],"searchable":true,"uid":false},{"label":"First column bolded + left aligned","name":"firstColBold","type":"boolean","required":false,"namespace":["products","_body","TableLayout","firstColBold"],"searchable":true,"uid":false},{"type":"string","label":"Table Headers","name":"headers","list":true,"namespace":["products","_body","TableLayout","headers"],"searchable":true,"uid":false},{"type":"object","label":"Rows","name":"rows","list":true,"fields":[{"type":"object","label":"Cells","name":"cells","list":true,"fields":[{"type":"string","label":"Value","name":"cellValue","required":true,"component":{"namespace":["page","beforeBody","TableLayout","rows","cells","cellValue",""]},"namespace":["training","footer","TableLayout","rows","cells","cellValue"]}],"ui":{},"namespace":["training","_body","TableLayout","rows","cells"]},{"type":"boolean","label":"Is Heading","name":"isHeader","required":false,"namespace":["training","_body","TableLayout","rows","isHeader"]}],"ui":{},"namespace":["products","_body","TableLayout","rows"],"searchable":true,"uid":false}],"namespace":["products","_body","TableLayout"]},{"name":"TestimonialsList","label":"Testimonials List","ui":{"previewSrc":"/images/thumbs/tina/testimonials.jpg"},"fields":[{"type":"object","label":"Exclude Categories","name":"excludedCategories","ui":{},"list":true,"fields":[{"type":"reference","label":"Category Name","name":"categoryName","collections":["testimonialCategories"],"namespace":["training","_body","TestimonialsList","excludedCategories","categoryName"]}],"namespace":["products","_body","TestimonialsList","excludedCategories"],"searchable":true,"uid":false}],"namespace":["products","_body","TestimonialsList"]},{"label":"Training Information","name":"TrainingInformation","ui":{"previewSrc":"/images/thumbs/tina/training-information.jpg"},"fields":[{"type":"object","label":"Training Information Items","name":"trainingInformationItems","list":true,"fields":[{"type":"string","label":"Header","name":"header","namespace":["training","_body","TrainingInformation","trainingInformationItems","header"]},{"type":"rich-text","label":"Body","name":"body","templates":[{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["userGroupPage","contentPage","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["userGroupPage","contentPage","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["userGroupPage","contentPage","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["userGroupPage","contentPage","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["userGroupPage","contentPage","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","afterBody"]}],"namespace":["training","footer","TrainingInformation","trainingInformationItems","body","VerticalListItem"]},{"label":"Recurring Event","name":"RecurringEvent","ui":{"previewSrc":"/images/thumbs/tina/recurring-event.jpg"},"fields":[{"type":"string","label":"Apply Link Redirect","name":"applyLinkRedirect","namespace":["userGroupPage","contentPage","_body","TrainingInformation","trainingInformationItems","body","RecurringEvent","applyLinkRedirect"]},{"type":"string","label":"Day","name":"day","options":[{"label":"Monday","value":"monday"},{"label":"Tuesday","value":"tuesday"},{"label":"Wednesday","value":"wednesday"},{"label":"Thursday","value":"thursday"},{"label":"Friday","value":"friday"},{"label":"Saturday","value":"saturday"},{"label":"Sunday","value":"sunday"}],"required":true,"namespace":["userGroupPage","contentPage","_body","TrainingInformation","trainingInformationItems","body","RecurringEvent","day"]}],"namespace":["training","footer","TrainingInformation","trainingInformationItems","body","RecurringEvent"]}],"namespace":["training","_body","TrainingInformation","trainingInformationItems","body"]}],"namespace":["products","_body","TrainingInformation","trainingInformationItems"],"searchable":true,"uid":false}],"namespace":["products","_body","TrainingInformation"]},{"label":"Training Learning Outcomes","name":"TrainingLearningOutcome","ui":{"previewSrc":"/images/thumbs/tina/training-learning-outcomes.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["products","_body","TrainingLearningOutcome","header"],"searchable":true,"uid":false},{"type":"object","label":"List Items","name":"listItems","list":true,"fields":[{"type":"string","label":"Title","name":"title","namespace":["training","_body","TrainingLearningOutcome","listItems","title"]},{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["training","_body","TrainingLearningOutcome","listItems","content"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","TrainingLearningOutcome","listItems","icon","uploadDir"]},"namespace":["training","_body","TrainingLearningOutcome","listItems","icon"]}],"namespace":["products","_body","TrainingLearningOutcome","listItems"],"searchable":true,"uid":false}],"namespace":["products","_body","TrainingLearningOutcome"]},{"label":"Tweet Embed","name":"TweetEmbed","ui":{"previewSrc":"/images/thumbs/tina/tweet-embed.jpg"},"fields":[{"type":"string","name":"url","label":"Tweet URL","required":true,"namespace":["products","_body","TweetEmbed","url"],"searchable":true,"uid":false}],"namespace":["products","_body","TweetEmbed"]},{"name":"UpcomingEvents","label":"Upcoming Events","ui":{"previewSrc":"/images/thumbs/tina/upcoming-events.jpg","defaultItem":{"title":"Upcoming Events","numberOfEvents":30}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["products","_body","UpcomingEvents","title"],"searchable":true,"uid":false},{"type":"number","label":"Number of Events","name":"numberOfEvents","namespace":["products","_body","UpcomingEvents","numberOfEvents"],"searchable":true,"uid":false}],"namespace":["products","_body","UpcomingEvents"]},{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["products","_body","UtilityButton","buttonText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"link","required":false,"namespace":["products","_body","UtilityButton","link"],"searchable":true,"uid":false},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["products","_body","UtilityButton","size"],"searchable":true,"uid":false},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["products","_body","UtilityButton","btnIcon"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["products","_body","UtilityButton","animated"],"searchable":true,"uid":false},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["products","_body","UtilityButton","uncentered"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["products","_body","UtilityButton","removeTopMargin"],"searchable":true,"uid":false},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["products","_body","UtilityButton","openInNewTab"],"searchable":true,"uid":false}],"namespace":["products","_body","UtilityButton"]},{"name":"VerticalImageLayout","label":"Vertical Image Layout","fields":[{"type":"image","label":"Image","name":"imageSrc","uploadDir":{"namespace":["page","beforeBody","VerticalImageLayout","imageSrc","uploadDir"]},"namespace":["products","_body","VerticalImageLayout","imageSrc"],"searchable":false,"uid":false},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["products","_body","VerticalImageLayout","altText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"imageLink","namespace":["products","_body","VerticalImageLayout","imageLink"],"searchable":true,"uid":false},{"type":"number","label":"Height","name":"height","required":true,"namespace":["products","_body","VerticalImageLayout","height"],"searchable":true,"uid":false},{"type":"number","label":"Width","name":"width","required":true,"namespace":["products","_body","VerticalImageLayout","width"],"searchable":true,"uid":false},{"type":"rich-text","label":"Message","name":"message","required":true,"namespace":["products","_body","VerticalImageLayout","message"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["products","_body","VerticalImageLayout","sizes"],"searchable":true,"uid":false}],"namespace":["products","_body","VerticalImageLayout"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["products","_body","VerticalListItem","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"number","label":"Index number","name":"index","namespace":["products","_body","VerticalListItem","index"],"searchable":true,"uid":false},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["products","_body","VerticalListItem","icon"],"searchable":false,"uid":false},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["products","_body","VerticalListItem","iconScale"],"searchable":true,"uid":false},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["products","_body","VerticalListItem","afterBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["products","_body","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["products","_body","VideoEmbed","url"],"searchable":true,"uid":false},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["products","_body","VideoEmbed","videoWidth"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["products","_body","VideoEmbed","removeMargin"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["products","_body","VideoEmbed","uncentre"],"searchable":true,"uid":false},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["products","_body","VideoEmbed","overflow"],"searchable":true,"uid":false},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["products","_body","VideoEmbed","caption"],"searchable":true,"uid":false},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["products","_body","VideoEmbed","duration"],"searchable":true,"uid":false}],"namespace":["products","_body","VideoEmbed"]},{"name":"InlineJotForm","label":"In-line JotForm","ui":{"previewSrc":"/images/thumbs/tina/inline-jot-form.jpg"},"fields":[{"type":"string","name":"title","label":"Title","description":"Optional title for JotForm","namespace":["products","_body","InlineJotForm","title"],"searchable":true,"uid":false},{"type":"string","name":"jotFormId","label":"JotForm ID","required":true,"namespace":["products","_body","InlineJotForm","jotFormId"],"searchable":true,"uid":false},{"type":"string","name":"additionalClasses","label":"Additional classnames","description":"Optional styling for iframe element only","namespace":["products","_body","InlineJotForm","additionalClasses"],"searchable":true,"uid":false}],"namespace":["products","_body","InlineJotForm"]}],"isBody":true,"namespace":["products","_body"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["products"]},{"label":"Testimonials","name":"testimonials","format":"json","path":"content/testimonials","ui":{"allowedActions":{"create":false,"delete":false}},"fields":[{"type":"string","name":"tipForReference","label":"Tip","ui":{},"namespace":["testimonials","tipForReference"],"searchable":true,"uid":false},{"type":"object","label":"Testimonials","name":"testimonials","ui":{},"list":true,"fields":[{"type":"string","label":"Name","name":"name","required":true,"namespace":["testimonials","testimonials","name"],"searchable":true,"uid":false},{"type":"image","label":"Avatar","name":"avatar","required":false,"uploadDir":{"namespace":["testimonials","testimonials","avatar","uploadDir"]},"namespace":["testimonials","testimonials","avatar"],"searchable":false,"uid":false},{"type":"string","label":"Company","name":"company","required":false,"namespace":["testimonials","testimonials","company"],"searchable":true,"uid":false},{"type":"rich-text","label":"Body","name":"body","isBody":true,"namespace":["testimonials","testimonials","body"],"searchable":true,"parser":{"type":"markdown"},"uid":false},{"type":"object","label":"Categories","name":"categories","list":true,"ui":{},"fields":[{"type":"reference","label":"Category","name":"category","collections":["testimonialCategories"],"namespace":["testimonials","testimonials","categories","category"],"searchable":true,"uid":false}],"namespace":["testimonials","testimonials","categories"],"searchable":true,"uid":false}],"namespace":["testimonials","testimonials"],"searchable":true,"uid":false}],"namespace":["testimonials"]},{"label":"Testimonials - Categories","name":"testimonialCategories","format":"mdx","path":"content/testimonialCategories","fields":[{"type":"string","name":"tip","label":"Tip","ui":{},"namespace":["testimonialCategories","tip"],"searchable":true,"uid":false},{"type":"string","label":"Name","name":"name","required":true,"isTitle":true,"namespace":["testimonialCategories","name"],"searchable":true,"uid":false},{"type":"string","label":"Description","name":"description","namespace":["testimonialCategories","description"],"searchable":true,"uid":false}],"namespace":["testimonialCategories"]},{"label":"Training - Pages","name":"training","format":"mdx","path":"content/training","ui":{},"fields":[{"type":"string","name":"tip","label":"Tip","ui":{},"namespace":["training","tip"],"searchable":true,"uid":false},{"type":"object","label":"SEO Values","name":"seo","fields":[{"type":"string","label":"Title (70 characters)","name":"title","ui":{},"namespace":["training","seo","title"],"searchable":true,"uid":false},{"type":"string","label":"Description (150 characters)","name":"description","component":"textarea","ui":{},"namespace":["training","seo","description"],"searchable":true,"uid":false},{"type":"string","label":"Canonical URL","name":"canonical","namespace":["training","seo","canonical"],"searchable":true,"uid":false},{"type":"boolean","name":"showBreadcrumb","label":"Show Breadcrumb","namespace":["training","seo","showBreadcrumb"],"searchable":true,"uid":false},{"label":"Images","name":"images","list":true,"type":"object","ui":{"defaultItem":{"url":"/images/ssw-default-og.jpg","width":1200,"height":630,"alt":"SSW Consulting - Enterprise Software Development"}},"fields":[{"type":"image","label":"Image Url","name":"url","require":true,"namespace":["userGroupPage","locationPage","seo","images","url"],"searchable":false,"uid":false},{"type":"number","label":"Width (px)","name":"width","namespace":["userGroupPage","locationPage","seo","images","width"],"searchable":true,"uid":false},{"type":"number","label":"Height (px)","name":"height","namespace":["userGroupPage","locationPage","seo","images","height"],"searchable":true,"uid":false},{"type":"string","label":"Image Alt Text","name":"alt","namespace":["userGroupPage","locationPage","seo","images","alt"],"searchable":true,"uid":false}],"namespace":["training","seo","images"],"searchable":true,"uid":false}],"namespace":["training","seo"],"searchable":true,"uid":false},{"type":"object","label":"Training Header Carousel","name":"trainingHeaderCarousel","fields":[{"type":"object","label":"Training Header Carousel Item","name":"trainingHeaderCarouselItem","list":true,"fields":[{"type":"string","label":"Tagline","name":"tagline","required":true,"namespace":["training","trainingHeaderCarousel","trainingHeaderCarouselItem","tagline"],"searchable":true,"uid":false},{"type":"string","label":"Secondary Tagline","name":"secondaryTagline","namespace":["training","trainingHeaderCarousel","trainingHeaderCarouselItem","secondaryTagline"],"searchable":true,"uid":false},{"type":"image","label":"Hero Background","name":"heroBackground","required":true,"uploadDir":{"namespace":["training","trainingHeaderCarousel","trainingHeaderCarouselItem","heroBackground","uploadDir"]},"namespace":["training","trainingHeaderCarousel","trainingHeaderCarouselItem","heroBackground"],"searchable":false,"uid":false},{"type":"image","label":"Person","name":"person","uploadDir":{"namespace":["training","trainingHeaderCarousel","trainingHeaderCarouselItem","person","uploadDir"]},"namespace":["training","trainingHeaderCarousel","trainingHeaderCarouselItem","person"],"searchable":false,"uid":false},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Link Text","name":"linkText","required":true,"namespace":["training","trainingHeaderCarousel","trainingHeaderCarouselItem","link","linkText"],"searchable":true,"uid":false},{"type":"string","label":"URL","name":"url","required":true,"namespace":["training","trainingHeaderCarousel","trainingHeaderCarouselItem","link","url"],"searchable":true,"uid":false},{"type":"image","label":"Icon","name":"icon","namespace":["training","trainingHeaderCarousel","trainingHeaderCarouselItem","link","icon"],"searchable":false,"uid":false}],"namespace":["training","trainingHeaderCarousel","trainingHeaderCarouselItem","link"],"searchable":true,"uid":false}],"namespace":["training","trainingHeaderCarousel","trainingHeaderCarouselItem"],"searchable":true,"uid":false}],"namespace":["training","trainingHeaderCarousel"],"searchable":true,"uid":false},{"type":"object","label":"Testimonials","name":"testimonials","fields":[{"type":"string","label":"Tagline","name":"tagline","namespace":["training","testimonials","tagline"],"searchable":true,"uid":false}],"namespace":["training","testimonials"],"searchable":true,"uid":false},{"type":"string","name":"title","label":"Title","namespace":["training","title"],"searchable":true,"uid":false},{"type":"boolean","name":"showTestimonials","label":"Show Testimonials","namespace":["training","showTestimonials"],"searchable":true,"uid":false},{"type":"object","list":true,"name":"_body","label":"Body","ui":{"visualSelector":true},"templates":[{"name":"AboutUs","label":"About Us","ui":{"previewSrc":"/images/thumbs/tina/about-us.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["training","_body","AboutUs","backgroundColor"],"searchable":true,"uid":false},{"type":"boolean","label":"Show Map","name":"showMap","required":false,"namespace":["training","_body","AboutUs","showMap"],"searchable":true,"uid":false}],"namespace":["training","_body","AboutUs"]},{"label":"Agenda","name":"Agenda","ui":{"previewSrc":"/images/thumbs/tina/agenda.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["training","_body","Agenda","header"],"searchable":true,"uid":false},{"type":"string","label":"Header Color","name":"textColor","options":[{"label":"Red","value":"red"},{"label":"Gray","value":"gray"},{"label":"Default","value":"default"}],"namespace":["training","_body","Agenda","textColor"],"searchable":true,"uid":false},{"type":"object","label":"Agenda Items","name":"agendaItemList","ui":{},"list":true,"fields":[{"type":"string","label":"Placeholder Text","name":"placeholder","namespace":["training","footer","Agenda","agendaItemList","placeholder"]},{"type":"rich-text","label":"Body","name":"body","templates":[{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["userGroupPage","contentPage","_body","Agenda","agendaItemList","body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["userGroupPage","contentPage","_body","Agenda","agendaItemList","body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["userGroupPage","contentPage","_body","Agenda","agendaItemList","body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["userGroupPage","contentPage","_body","Agenda","agendaItemList","body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["userGroupPage","contentPage","_body","Agenda","agendaItemList","body","VerticalListItem","afterBody"]}],"namespace":["userGroupPage","contentPage","_body","Agenda","agendaItemList","body","VerticalListItem"]}],"namespace":["training","footer","Agenda","agendaItemList","body"]}],"namespace":["training","_body","Agenda","agendaItemList"],"searchable":true,"uid":false}],"namespace":["training","_body","Agenda"]},{"label":"Agreement Form","name":"AgreementForm","ui":{"previewSrc":"/images/thumbs/tina/agreement-form.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["training","_body","AgreementForm","backgroundColor"],"searchable":true,"uid":false},{"type":"object","label":"Form fields","name":"fields","list":true,"fields":[{"type":"string","label":"ID","name":"id","required":true,"namespace":["training","footer","AgreementForm","fields","id"]},{"type":"string","label":"Label","name":"label","required":true,"namespace":["training","footer","AgreementForm","fields","label"]},{"type":"string","label":"Placeholder","name":"placeholder","namespace":["training","footer","AgreementForm","fields","placeholder"]},{"type":"boolean","label":"Resizeable","name":"resizeable","required":true,"namespace":["training","footer","AgreementForm","fields","resizeable"]}],"namespace":["training","_body","AgreementForm","fields"],"searchable":true,"uid":false}],"namespace":["training","_body","AgreementForm"]},{"label":"Interest Form","name":"InterestForm","ui":{"previewSrc":"/images/thumbs/tina/interest-form.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["training","_body","InterestForm","buttonText"],"searchable":true,"uid":false}],"namespace":["training","_body","InterestForm"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["training","_body","BookingButton","buttonText"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","namespace":["training","_body","BookingButton","animated"],"searchable":true,"uid":false},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["training","_body","BookingButton","buttonSubtitle"],"searchable":true,"uid":false}],"namespace":["training","_body","BookingButton"]},{"name":"BuiltOnAzure","label":"Built on Azure","ui":{"previewSrc":"/images/thumbs/tina/built-on-azure.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["training","_body","BuiltOnAzure","backgroundColor"],"searchable":true,"uid":false}],"namespace":["training","_body","BuiltOnAzure"]},{"name":"Carousel","label":"Carousel","ui":{"previewSrc":"/images/thumbs/tina/carousel.jpg"},"fields":[{"label":"Items","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Item description","link":"/","openIn":"sameWindow"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["training","footer","Carousel","items","label"]},{"type":"string","label":"URL","name":"link","description":"If link contains ssw.com.au, you can skip the full URL and just use the path. e.g. /services","namespace":["training","footer","Carousel","items","link"]},{"type":"string","label":"Open in","name":"openIn","description":"If it is external link, please select 'New window' option.","options":[{"label":"Same window","value":"sameWindow"},{"label":"Modal","value":"modal"},{"label":"New window","value":"newWindow"}],"namespace":["training","footer","Carousel","items","openIn"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","Carousel","items","imgSrc","uploadDir"]},"namespace":["training","footer","Carousel","items","imgSrc"]}],"namespace":["training","_body","Carousel","items"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["training","_body","Carousel","backgroundColor"],"searchable":true,"uid":false},{"type":"number","label":"Delay (Seconds)","name":"delay","required":true,"namespace":["training","_body","Carousel","delay"],"searchable":true,"uid":false},{"type":"boolean","label":"Show on mobile devices","name":"showOnMobileDevices","namespace":["training","_body","Carousel","showOnMobileDevices"],"searchable":true,"uid":false}],"namespace":["training","_body","Carousel"]},{"name":"Citation","label":"Citation","fields":[{"type":"string","label":"author","name":"author","namespace":["training","_body","Citation","author"],"searchable":true,"uid":false},{"type":"string","label":"article","name":"article","required":true,"namespace":["training","_body","Citation","article"],"searchable":true,"uid":false}],"namespace":["training","_body","Citation"]},{"label":"Client List","name":"ClientList","ui":{"previewSrc":"/images/thumbs/tina/clients-list.jpg"},"fields":[{"type":"object","name":"categories","label":"Categories","list":true,"fields":[{"type":"reference","name":"category","label":"Category","collections":["clientCategories"],"namespace":["training","footer","ClientList","categories","category"]}],"ui":{},"namespace":["training","_body","ClientList","categories"],"searchable":true,"uid":false},{"type":"object","name":"clients","label":"Clients list","list":true,"ui":{"previewSrc":"/images/thumbs/tina/clients-list.jpg"},"fields":[{"type":"string","name":"name","label":"Name","namespace":["training","footer","ClientList","clients","name"]},{"type":"image","name":"logo","label":"Logo","namespace":["training","footer","ClientList","clients","logo"]},{"type":"string","name":"logoUrl","label":"Logo URL","namespace":["training","footer","ClientList","clients","logoUrl"]},{"type":"rich-text","name":"content","label":"Content","templates":[{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","UtilityButton","openInNewTab"]}],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","UtilityButton"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","VideoEmbed","duration"]}],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","VideoEmbed"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","CustomImage","sizes"]}],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","CustomImage"]},{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","CustomImage","sizes"]}],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","duration"]}],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","ColorBlock"]}],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content"]}],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard"]}],"namespace":["training","footer","ClientList","clients","content"]},{"type":"string","name":"caseStudyUrl","label":"Case study URL","namespace":["training","footer","ClientList","clients","caseStudyUrl"]},{"type":"object","name":"categories","label":"Categories","list":true,"ui":{},"fields":[{"type":"reference","name":"category","label":"Category","collections":["clientCategories"],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","categories","category"]}],"namespace":["training","footer","ClientList","clients","categories"]}],"namespace":["training","_body","ClientList","clients"],"searchable":true,"uid":false}],"namespace":["training","_body","ClientList"]},{"name":"ClientLogos","label":"Client Logos","ui":{"previewSrc":"/images/thumbs/tina/client-logos.jpg"},"fields":[{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["training","_body","ClientLogos","altText"],"searchable":true,"uid":false}],"namespace":["training","_body","ClientLogos"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["training","_body","ColorBlock","title"],"searchable":true,"uid":false},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["training","_body","ColorBlock","subTitle"],"searchable":true,"uid":false},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["training","footer","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["training","footer","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["training","footer","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["training","footer","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["training","footer","ColorBlock","colorRow","caption"]}],"namespace":["training","_body","ColorBlock","colorRow"],"searchable":true,"uid":false}],"namespace":["training","_body","ColorBlock"]},{"name":"ColorPalette","label":"Color Palette","ui":{"previewSrc":"/images/thumbs/tina/color-palette.jpg"},"fields":[{"type":"string","label":"Name","name":"name","namespace":["training","_body","ColorPalette","name"],"searchable":true,"uid":false}],"namespace":["training","_body","ColorPalette"]},{"name":"Content","label":"Content","ui":{"previewSrc":"/images/thumbs/tina/content.jpg","defaultItem":{"body":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["training","_body","Content","title"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["userGroupPage","contentPage","_body","Content","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["userGroupPage","contentPage","_body","Content","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["userGroupPage","contentPage","_body","Content","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["userGroupPage","contentPage","_body","Content","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["userGroupPage","contentPage","_body","Content","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["userGroupPage","contentPage","_body","Content","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["userGroupPage","contentPage","_body","Content","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["userGroupPage","contentPage","_body","Content","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["userGroupPage","contentPage","_body","Content","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["userGroupPage","contentPage","_body","Content","content","CustomImage","sizes"]}],"namespace":["training","footer","Content","content","CustomImage"]},{"name":"ClientLogos","label":"Client Logos","ui":{"previewSrc":"/images/thumbs/tina/client-logos.jpg"},"fields":[{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["userGroupPage","contentPage","_body","Content","content","ClientLogos","altText"]}],"namespace":["training","footer","Content","content","ClientLogos"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["userGroupPage","contentPage","_body","Content","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["userGroupPage","contentPage","_body","Content","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["userGroupPage","contentPage","_body","Content","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["userGroupPage","contentPage","_body","Content","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["userGroupPage","contentPage","_body","Content","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["userGroupPage","contentPage","_body","Content","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["userGroupPage","contentPage","_body","Content","content","VideoEmbed","duration"]}],"namespace":["training","footer","Content","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["userGroupPage","contentPage","_body","Content","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["userGroupPage","contentPage","_body","Content","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["userGroupPage","contentPage","_body","Content","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["userGroupPage","contentPage","_body","Content","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["userGroupPage","contentPage","_body","Content","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["userGroupPage","contentPage","_body","Content","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["userGroupPage","contentPage","_body","Content","content","ColorBlock","colorRow","caption"]}],"namespace":["userGroupPage","contentPage","_body","Content","content","ColorBlock","colorRow"]}],"namespace":["training","footer","Content","content","ColorBlock"]}],"namespace":["training","_body","Content","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Container Padding","name":"paddingClass","options":["Mobile: No Padding","Mobile: No Top and Horizontal Padding"],"namespace":["training","_body","Content","paddingClass"],"searchable":true,"uid":false},{"type":"string","label":"Text size","name":"size","options":[{"label":"small","value":"sm"},{"label":"normal","value":"base"},{"label":"large","value":"lg"},{"label":"extra large","value":"xl"},{"label":"2x large","value":"2xl"}],"namespace":["training","_body","Content","size"],"searchable":true,"uid":false},{"type":"string","label":"Align","name":"align","options":[{"label":"Left","value":"left"},{"label":"Center","value":"center"},{"label":"Right","value":"right"}],"namespace":["training","_body","Content","align"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["training","_body","Content","backgroundColor"],"searchable":true,"uid":false}],"namespace":["training","_body","Content"]},{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["training","_body","ContentCard","prose"],"searchable":true,"uid":false},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["training","_body","ContentCard","centerAlignedText"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["userGroupPage","contentPage","_body","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["userGroupPage","contentPage","_body","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["userGroupPage","contentPage","_body","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["userGroupPage","contentPage","_body","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["userGroupPage","contentPage","_body","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["userGroupPage","contentPage","_body","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["userGroupPage","contentPage","_body","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["userGroupPage","contentPage","_body","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["userGroupPage","contentPage","_body","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["userGroupPage","contentPage","_body","ContentCard","content","CustomImage","sizes"]}],"namespace":["training","footer","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["userGroupPage","contentPage","_body","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["userGroupPage","contentPage","_body","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["userGroupPage","contentPage","_body","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["userGroupPage","contentPage","_body","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["userGroupPage","contentPage","_body","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["training","footer","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["userGroupPage","contentPage","_body","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["userGroupPage","contentPage","_body","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["userGroupPage","contentPage","_body","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["userGroupPage","contentPage","_body","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["userGroupPage","contentPage","_body","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["userGroupPage","contentPage","_body","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["userGroupPage","contentPage","_body","ContentCard","content","VideoEmbed","duration"]}],"namespace":["training","footer","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["userGroupPage","contentPage","_body","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["userGroupPage","contentPage","_body","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["userGroupPage","contentPage","_body","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["userGroupPage","contentPage","_body","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["userGroupPage","contentPage","_body","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["userGroupPage","contentPage","_body","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["userGroupPage","contentPage","_body","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["userGroupPage","contentPage","_body","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["training","footer","ContentCard","content","ColorBlock"]}],"namespace":["training","_body","ContentCard","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["training","_body","ContentCard"]},{"name":"CustomDownloadButton","label":"Custom Download Button","ui":{"previewSrc":"/images/thumbs/tina/custom-download-button.jpg"},"fields":[{"type":"string","label":"Text","name":"btnText","namespace":["training","_body","CustomDownloadButton","btnText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"btnLink","namespace":["training","_body","CustomDownloadButton","btnLink"],"searchable":true,"uid":false}],"namespace":["training","_body","CustomDownloadButton"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["training","_body","CustomImage","src"],"searchable":false,"uid":false},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["training","_body","CustomImage","altText"],"searchable":true,"uid":false},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["training","_body","CustomImage","alignment"],"searchable":true,"uid":false},{"type":"number","label":"Height","name":"height","required":true,"namespace":["training","_body","CustomImage","height"],"searchable":true,"uid":false},{"type":"number","label":"Width","name":"width","required":true,"namespace":["training","_body","CustomImage","width"],"searchable":true,"uid":false},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["training","_body","CustomImage","link"],"searchable":true,"uid":false},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["training","_body","CustomImage","customClass"],"searchable":true,"uid":false},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["training","_body","CustomImage","caption"],"searchable":true,"uid":false},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["training","_body","CustomImage","captionColor"],"searchable":true,"uid":false},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["training","_body","CustomImage","sizes"],"searchable":true,"uid":false}],"namespace":["training","_body","CustomImage"]},{"name":"DomainFromQuery","label":"Domain from query","ui":{"previewSrc":"/images/thumbs/tina/domain-from-query.jpg"},"fields":[{"name":"title","label":"Title","type":"string","description":"This is a H1 heading","namespace":["training","_body","DomainFromQuery","title"],"searchable":true,"uid":false},{"name":"showDomain","label":"Show domain name","type":"boolean","description":"Query param in URL must have key of 'domain'","namespace":["training","_body","DomainFromQuery","showDomain"],"searchable":true,"uid":false}],"namespace":["training","_body","DomainFromQuery"]},{"name":"DownloadBlock","label":"Download Block","ui":{"previewSrc":"/images/thumbs/tina/download-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["training","_body","DownloadBlock","title"],"searchable":true,"uid":false},{"type":"object","label":"Downloads","name":"downloads","ui":{},"list":true,"fields":[{"type":"string","label":"Header","name":"header","namespace":["training","footer","DownloadBlock","downloads","header"]},{"type":"image","label":"Image","name":"img","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","img","uploadDir"]},"namespace":["training","footer","DownloadBlock","downloads","img"]},{"type":"string","label":"Image Background","name":"imgBackground","options":["black","grey","white","darkgrey","darkgreen"],"namespace":["training","footer","DownloadBlock","downloads","imgBackground"]},{"type":"string","label":"First Link Text","name":"firstLinkText","description":"Defaults to PNG","namespace":["training","footer","DownloadBlock","downloads","firstLinkText"]},{"type":"image","label":"First Link","name":"firstLink","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","firstLink","uploadDir"]},"namespace":["training","footer","DownloadBlock","downloads","firstLink"]},{"type":"string","label":"Second Link Text","name":"secondLinkText","description":"Defaults to PDF","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","secondLinkText","uploadDir"]},"namespace":["training","footer","DownloadBlock","downloads","secondLinkText"]},{"type":"image","label":"Second Link","name":"secondLink","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","secondLink","uploadDir"]},"namespace":["training","footer","DownloadBlock","downloads","secondLink"]}],"namespace":["training","_body","DownloadBlock","downloads"],"searchable":true,"uid":false},{"type":"boolean","label":"Bottom border","name":"bottomBorder","namespace":["training","_body","DownloadBlock","bottomBorder"],"searchable":true,"uid":false}],"namespace":["training","_body","DownloadBlock"]},{"name":"DynamicColumns","label":"Dynamic Column Layout","fields":[{"type":"rich-text","label":"Column text body","name":"colBody","required":true,"namespace":["training","_body","DynamicColumns","colBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"number","label":"Number of columns","name":"colCount","required":true,"ui":{},"namespace":["training","_body","DynamicColumns","colCount"],"searchable":true,"uid":false}],"namespace":["training","_body","DynamicColumns"]},{"name":"EventBooking","label":"Events Booking","ui":{"previewSrc":"/images/thumbs/tina/events-booking.jpg"},"fields":[{"type":"number","label":"Duration (In Days)","name":"eventDurationInDays","required":true,"namespace":["training","_body","EventBooking","eventDurationInDays"],"searchable":true,"uid":false},{"type":"number","label":"Price","name":"price","required":true,"namespace":["training","_body","EventBooking","price"],"searchable":true,"uid":false},{"type":"number","label":"Discount Price","name":"discountPrice","namespace":["training","_body","EventBooking","discountPrice"],"searchable":true,"uid":false},{"type":"string","name":"gstText","label":"Select GST Option","options":["inc GST","+ GST"],"required":true,"namespace":["training","_body","EventBooking","gstText"],"searchable":true,"uid":false},{"type":"string","label":"Discount Note","name":"discountNote","namespace":["training","_body","EventBooking","discountNote"],"searchable":true,"uid":false},{"type":"object","label":"Event","name":"eventList","ui":{},"list":true,"fields":[{"type":"string","label":"City","name":"city","namespace":["training","footer","EventBooking","eventList","city"]},{"type":"datetime","label":"Start Date","name":"date","ui":{},"namespace":["training","footer","EventBooking","eventList","date"]},{"type":"string","label":"Booking URL","name":"bookingURL","namespace":["training","footer","EventBooking","eventList","bookingURL"]},{"type":"reference","label":"Location","name":"location","collections":["locations"],"namespace":["training","footer","EventBooking","eventList","location"]}],"namespace":["training","_body","EventBooking","eventList"],"searchable":true,"uid":false}],"namespace":["training","_body","EventBooking"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["userGroupPage","contentPage","_body","EventLink","content","Flag","country"]}],"namespace":["training","footer","EventLink","content","Flag"]}],"namespace":["training","_body","EventLink","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Link","name":"link","namespace":["training","_body","EventLink","link"],"searchable":true,"uid":false},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["training","_body","EventLink","eventThumbnail"],"searchable":false,"uid":false},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["training","_body","EventLink","thumbnailAlt"],"searchable":true,"uid":false}],"namespace":["training","_body","EventLink"]},{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["training","_body","Flag","country"],"searchable":true,"uid":false}],"namespace":["training","_body","Flag"]},{"name":"FixedColumns","label":"Fixed Column Layout (2 columns)","ui":{"previewSrc":"/images/thumbs/tina/fixed-columns.jpg"},"fields":[{"type":"rich-text","label":"Header Section (Optional)","name":"headerSection","namespace":["training","_body","FixedColumns","headerSection"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"First column text","name":"firstColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock"]}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content"]}],"namespace":["training","footer","FixedColumns","firstColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","CustomImage","sizes"]}],"namespace":["training","footer","FixedColumns","firstColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","EventLink","content","Flag","country"]}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","EventLink","content","Flag"]}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","EventLink","thumbnailAlt"]}],"namespace":["training","footer","FixedColumns","firstColBody","EventLink"]}],"namespace":["training","_body","FixedColumns","firstColBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"Second column text","name":"secondColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock"]}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content"]}],"namespace":["training","footer","FixedColumns","secondColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","CustomImage","sizes"]}],"namespace":["training","footer","FixedColumns","secondColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","EventLink","content","Flag","country"]}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","EventLink","content","Flag"]}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","EventLink","thumbnailAlt"]}],"namespace":["training","footer","FixedColumns","secondColBody","EventLink"]}],"namespace":["training","_body","FixedColumns","secondColBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["training","_body","FixedColumns"]},{"name":"FixedTabsLayout","label":"Fixed Tabs Layout","ui":{"previewSrc":"/images/thumbs/tina/fixed-tabs-layout.jpg"},"fields":[{"type":"string","name":"firstTab","label":"First Tab","namespace":["training","_body","FixedTabsLayout","firstTab"],"searchable":true,"uid":false},{"type":"rich-text","name":"firstHeading","label":"First Heading","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","VideoEmbed","duration"]}],"namespace":["training","footer","FixedTabsLayout","firstHeading","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","BookingButton","buttonSubtitle"]}],"namespace":["training","footer","FixedTabsLayout","firstHeading","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList","skills"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","ExpertBlock","link","url"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","ExpertBlock","link"]}],"namespace":["training","footer","FixedTabsLayout","firstHeading","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["training","footer","FixedTabsLayout","firstHeading","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","CustomImage","sizes"]}],"namespace":["training","footer","FixedTabsLayout","firstHeading","CustomImage"]}],"namespace":["training","_body","FixedTabsLayout","firstHeading"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","name":"firstBody","label":"First Body","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","VideoEmbed","duration"]}],"namespace":["training","footer","FixedTabsLayout","firstBody","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","BookingButton","buttonSubtitle"]}],"namespace":["training","footer","FixedTabsLayout","firstBody","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList","skills"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","ExpertBlock","link","url"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","ExpertBlock","link"]}],"namespace":["training","footer","FixedTabsLayout","firstBody","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["training","footer","FixedTabsLayout","firstBody","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","CustomImage","sizes"]}],"namespace":["training","footer","FixedTabsLayout","firstBody","CustomImage"]}],"namespace":["training","_body","FixedTabsLayout","firstBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","name":"secondTab","label":"Second Tab","namespace":["training","_body","FixedTabsLayout","secondTab"],"searchable":true,"uid":false},{"type":"rich-text","name":"secondHeading","label":"Second Heading","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","VideoEmbed","duration"]}],"namespace":["training","footer","FixedTabsLayout","secondHeading","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","BookingButton","buttonSubtitle"]}],"namespace":["training","footer","FixedTabsLayout","secondHeading","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList","skills"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","ExpertBlock","link","url"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","ExpertBlock","link"]}],"namespace":["training","footer","FixedTabsLayout","secondHeading","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["training","footer","FixedTabsLayout","secondHeading","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","CustomImage","sizes"]}],"namespace":["training","footer","FixedTabsLayout","secondHeading","CustomImage"]}],"namespace":["training","_body","FixedTabsLayout","secondHeading"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","name":"secondBody","label":"Second Body","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","VideoEmbed","duration"]}],"namespace":["training","footer","FixedTabsLayout","secondBody","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","BookingButton","buttonSubtitle"]}],"namespace":["training","footer","FixedTabsLayout","secondBody","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList","skills"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","ExpertBlock","link","url"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","ExpertBlock","link"]}],"namespace":["training","footer","FixedTabsLayout","secondBody","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["training","footer","FixedTabsLayout","secondBody","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","CustomImage","sizes"]}],"namespace":["training","footer","FixedTabsLayout","secondBody","CustomImage"]}],"namespace":["training","_body","FixedTabsLayout","secondBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["training","_body","FixedTabsLayout"]},{"label":"Google Maps","name":"GoogleMaps","ui":{"previewSrc":"/images/thumbs/tina/google-maps.jpg"},"fields":[{"type":"string","label":"URL","name":"embedUrl","required":true,"namespace":["training","_body","GoogleMaps","embedUrl"],"searchable":true,"uid":false},{"type":"string","label":"Width","name":"embedWidth","namespace":["training","_body","GoogleMaps","embedWidth"],"searchable":true,"uid":false},{"type":"string","label":"Height","name":"embedHeight","namespace":["training","_body","GoogleMaps","embedHeight"],"searchable":true,"uid":false}],"namespace":["training","_body","GoogleMaps"]},{"label":"Grid Layout","name":"GridLayout","ui":{"previewSrc":"/images/thumbs/tina/grid-layout.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["training","_body","GridLayout","title"],"searchable":true,"uid":false},{"type":"object","list":true,"label":"Grid Items","name":"grids","ui":{},"fields":[{"type":"string","label":"Grid Title","name":"gridTitle","namespace":["training","footer","GridLayout","grids","gridTitle"]},{"type":"boolean","label":"Show Grid Title","name":"showGridTitle","namespace":["training","footer","GridLayout","grids","showGridTitle"]},{"type":"boolean","label":"Centered Grid Title","name":"centeredGridTitle","namespace":["training","footer","GridLayout","grids","centeredGridTitle"]},{"type":"boolean","label":"Show Header Divider","name":"showHeaderDivider","namespace":["training","footer","GridLayout","grids","showHeaderDivider"]},{"type":"boolean","label":"Offset Grid Start","name":"offsetGridStart","namespace":["training","footer","GridLayout","grids","offsetGridStart"]},{"type":"object","label":"Blocks","name":"blocks","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["userGroupPage","contentPage","_body","GridLayout","grids","blocks","title"]},{"type":"boolean","label":"Show Title","name":"showTitle","namespace":["userGroupPage","contentPage","_body","GridLayout","grids","blocks","showTitle"]},{"type":"image","label":"Image","name":"image","uploadDir":{"namespace":["page","beforeBody","GridLayout","grids","blocks","image","uploadDir"]},"namespace":["userGroupPage","contentPage","_body","GridLayout","grids","blocks","image"]},{"type":"image","label":"Related Image","name":"relatedImage","uploadDir":{"namespace":["page","beforeBody","GridLayout","grids","blocks","relatedImage","uploadDir"]},"namespace":["userGroupPage","contentPage","_body","GridLayout","grids","blocks","relatedImage"]},{"type":"rich-text","name":"linkContent","label":"Link Content","templates":[{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["userGroupPage","contentPage","_body","GridLayout","grids","blocks","linkContent","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["userGroupPage","contentPage","_body","GridLayout","grids","blocks","linkContent","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["userGroupPage","contentPage","_body","GridLayout","grids","blocks","linkContent","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["userGroupPage","contentPage","_body","GridLayout","grids","blocks","linkContent","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["userGroupPage","contentPage","_body","GridLayout","grids","blocks","linkContent","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["userGroupPage","contentPage","_body","GridLayout","grids","blocks","linkContent","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["userGroupPage","contentPage","_body","GridLayout","grids","blocks","linkContent","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["userGroupPage","contentPage","_body","GridLayout","grids","blocks","linkContent","UtilityButton","openInNewTab"]}],"namespace":["userGroupPage","contentPage","_body","GridLayout","grids","blocks","linkContent","UtilityButton"]}],"namespace":["userGroupPage","contentPage","_body","GridLayout","grids","blocks","linkContent"]}],"namespace":["training","footer","GridLayout","grids","blocks"]}],"namespace":["training","_body","GridLayout","grids"],"searchable":true,"uid":false}],"namespace":["training","_body","GridLayout"]},{"name":"Hero","label":"Hero","ui":{"previewSrc":"/blocks/hero.png","defaultItem":{"tagline":"Here's some text above the other text","headline":"This Big Text is Totally Awesome","text":"Phasellus scelerisque, libero eu finibus rutrum, risus risus accumsan libero, nec molestie urna dui a leo."}},"fields":[{"type":"string","label":"Tagline","name":"tagline","namespace":["training","_body","Hero","tagline"],"searchable":true,"uid":false},{"type":"string","label":"Headline","name":"headline","namespace":["training","_body","Hero","headline"],"searchable":true,"uid":false},{"label":"Text","name":"text","type":"rich-text","namespace":["training","_body","Hero","text"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"label":"Actions","name":"actions","type":"object","list":true,"ui":{"defaultItem":{"label":"Action Label","type":"button","icon":true,"link":"/"}},"fields":[{"label":"Label","name":"label","type":"string","namespace":["training","footer","Hero","actions","label"]},{"label":"Type","name":"type","type":"string","options":[{"label":"Button","value":"button"},{"label":"Link","value":"link"}],"namespace":["training","footer","Hero","actions","type"]},{"label":"Icon","name":"icon","type":"boolean","namespace":["training","footer","Hero","actions","icon"]},{"label":"Link","name":"link","type":"string","namespace":["training","footer","Hero","actions","link"]}],"namespace":["training","_body","Hero","actions"],"searchable":true,"uid":false},{"type":"object","label":"Image","name":"image","fields":[{"name":"src","label":"Image Source","type":"image","namespace":["training","footer","Hero","image","src"]},{"name":"alt","label":"Alt Text","type":"string","namespace":["training","footer","Hero","image","alt"]}],"namespace":["training","_body","Hero","image"],"searchable":true,"uid":false},{"type":"string","label":"Color","name":"color","options":[{"label":"Default","value":"default"},{"label":"Tint","value":"tint"},{"label":"Primary","value":"primary"}],"namespace":["training","_body","Hero","color"],"searchable":true,"uid":false}],"namespace":["training","_body","Hero"]},{"name":"HorizontalCard","label":"Horizontal Card","ui":{"previewSrc":"/images/thumbs/tina/horizontal-card.jpg"},"fields":[{"type":"object","label":"Cards","name":"cardList","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["training","footer","HorizontalCard","cardList","title"]},{"type":"rich-text","label":"Content","name":"content","namespace":["training","footer","HorizontalCard","cardList","content"]},{"type":"image","label":"Thumbnail","name":"thumbnail","uploadDir":{"namespace":["page","beforeBody","HorizontalCard","cardList","thumbnail","uploadDir"]},"namespace":["training","footer","HorizontalCard","cardList","thumbnail"]},{"type":"string","label":"Link","name":"link","namespace":["training","footer","HorizontalCard","cardList","link"]}],"namespace":["training","_body","HorizontalCard","cardList"],"searchable":true,"uid":false},{"type":"object","label":"Button","name":"button","fields":[{"type":"string","label":"Text","name":"text","namespace":["training","footer","HorizontalCard","button","text"]},{"type":"string","label":"Link","name":"link","namespace":["training","footer","HorizontalCard","button","link"]}],"namespace":["training","_body","HorizontalCard","button"],"searchable":true,"uid":false}],"namespace":["training","_body","HorizontalCard"]},{"name":"InternalCarousel","label":"Internal Carousel","ui":{"previewSrc":"/images/thumbs/tina/internal-carousel.jpg"},"fields":[{"label":"Images","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Image description"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["training","footer","InternalCarousel","items","label"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","InternalCarousel","items","imgSrc","uploadDir"]},"namespace":["training","footer","InternalCarousel","items","imgSrc"]}],"namespace":["training","_body","InternalCarousel","items"],"searchable":true,"uid":false},{"type":"string","label":"Header","name":"header","namespace":["training","_body","InternalCarousel","header"],"searchable":true,"uid":false},{"type":"rich-text","label":"Text","name":"paragraph","isBody":false,"namespace":["training","_body","InternalCarousel","paragraph"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Website","name":"website","namespace":["training","_body","InternalCarousel","website"],"searchable":true,"uid":false},{"type":"object","label":"Technologies","name":"technologies","list":true,"ui":{},"fields":[{"type":"string","label":"Name","name":"name","namespace":["training","footer","InternalCarousel","technologies","name"]}],"namespace":["training","_body","InternalCarousel","technologies"],"searchable":true,"uid":false},{"type":"string","label":"Case Study","name":"caseStudyUrl","namespace":["training","_body","InternalCarousel","caseStudyUrl"],"searchable":true,"uid":false},{"type":"string","label":"Video URL","name":"videoUrl","namespace":["training","_body","InternalCarousel","videoUrl"],"searchable":true,"uid":false}],"namespace":["training","_body","InternalCarousel"]},{"label":"Join As Presenter","name":"joinAsPresenter","fields":[{"label":"Learn More Link","name":"link","type":"string","namespace":["training","_body","joinAsPresenter","link"],"searchable":true,"uid":false},{"label":"Image","name":"img","type":"image","namespace":["training","_body","joinAsPresenter","img"],"searchable":false,"uid":false}],"namespace":["training","_body","joinAsPresenter"]},{"label":"Join Github","name":"joinGithub","ui":{"previewSrc":"/images/thumbs/tina/join-github.jpg"},"fields":[{"label":"Title","name":"title","type":"string","namespace":["training","_body","joinGithub","title"],"searchable":true,"uid":false},{"label":"Join Github Link","name":"link","type":"string","namespace":["training","_body","joinGithub","link"],"searchable":true,"uid":false}],"namespace":["training","_body","joinGithub"]},{"name":"JotFormEmbed","label":"JotForm Embed","ui":{"previewSrc":"/images/thumbs/tina/jotform-embed.jpg"},"fields":[{"type":"string","name":"jotFormId","label":"JotForm Id","required":true,"namespace":["training","_body","JotFormEmbed","jotFormId"],"searchable":true,"uid":false},{"type":"string","label":"Button Text","name":"buttonText","namespace":["training","_body","JotFormEmbed","buttonText"],"searchable":true,"uid":false},{"type":"string","name":"containerClass","label":"Container Class","namespace":["training","_body","JotFormEmbed","containerClass"],"searchable":true,"uid":false},{"type":"string","label":"Button Class","name":"buttonClass","namespace":["training","_body","JotFormEmbed","buttonClass"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","namespace":["training","_body","JotFormEmbed","animated"],"searchable":true,"uid":false}],"namespace":["training","_body","JotFormEmbed"]},{"name":"LatestTech","label":"Latest Tech","ui":{"previewSrc":"/images/thumbs/tina/latest-tech.jpg"},"fields":[{"type":"reference","description":"Select a config file including a set of badges","collections":["userGroupGlobal"],"label":"Badges","name":"badges","namespace":["training","_body","LatestTech","badges"],"searchable":true,"uid":false}],"namespace":["training","_body","LatestTech"]},{"name":"LocationBlock","label":"Locations","ui":{"previewSrc":"/images/thumbs/tina/locations.jpg"},"fields":[{"type":"string","name":"title","label":"Title","namespace":["training","_body","LocationBlock","title"],"searchable":true,"uid":false},{"type":"object","label":"Location List","name":"locationList","list":true,"ui":{},"fields":[{"type":"reference","collections":["locations"],"label":"Location","name":"location","namespace":["training","footer","LocationBlock","locationList","location"]}],"namespace":["training","_body","LocationBlock","locationList"],"searchable":true,"uid":false},{"type":"object","name":"chapelWebsite","label":"Chapel Website","fields":[{"type":"string","name":"title","label":"Text","namespace":["training","footer","LocationBlock","chapelWebsite","title"]},{"type":"string","name":"URL","label":"URL","namespace":["training","footer","LocationBlock","chapelWebsite","URL"]}],"namespace":["training","_body","LocationBlock","chapelWebsite"],"searchable":true,"uid":false}],"namespace":["training","_body","LocationBlock"]},{"name":"NewslettersTable","label":"Newsletters Table","ui":{"previewSrc":"/images/thumbs/tina/newsletters-table.jpg"},"fields":[{"type":"string","label":"Header text","name":"headerText","namespace":["training","_body","NewslettersTable","headerText"],"searchable":true,"uid":false}],"namespace":["training","_body","NewslettersTable"]},{"label":"Organizer","name":"organizer","fields":[{"type":"image","label":"Profile Image","name":"profileImg","namespace":["training","_body","organizer","profileImg"],"searchable":false,"uid":false},{"type":"string","label":"Profile Link","name":"profileLink","namespace":["training","_body","organizer","profileLink"],"searchable":true,"uid":false},{"type":"string","label":"Name","name":"name","namespace":["training","_body","organizer","name"],"searchable":true,"uid":false},{"type":"string","label":"Position","name":"position","namespace":["training","_body","organizer","position"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","namespace":["training","_body","organizer","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["training","_body","organizer"]},{"label":"Payment Block","name":"paymentBlock","ui":{"previewSrc":"/images/thumbs/tina/payment-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["training","_body","paymentBlock","title"],"searchable":true,"uid":false},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["training","_body","paymentBlock","subTitle"],"searchable":true,"uid":false},{"type":"reference","label":"Payment Links","name":"payments","collections":["paymentDetails"],"namespace":["training","_body","paymentBlock","payments"],"searchable":true,"uid":false},{"type":"rich-text","label":"Footer","name":"footer","namespace":["training","_body","paymentBlock","footer"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"image","label":"Credit Cards Image","name":"creditImgSrc","namespace":["training","_body","paymentBlock","creditImgSrc"],"searchable":false,"uid":false},{"type":"string","label":"Alt Text","name":"altTxt","namespace":["training","_body","paymentBlock","altTxt"],"searchable":true,"uid":false}],"namespace":["training","_body","paymentBlock"]},{"name":"PresenterBlock","label":"Presenters","ui":{"previewSrc":"/images/thumbs/tina/presenters.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["training","_body","PresenterBlock","header"],"searchable":true,"uid":false},{"type":"object","name":"presenterList","label":"Presenters","list":true,"ui":{},"fields":[{"type":"reference","name":"presenter","label":"Presenters","collections":["presenter"],"namespace":["training","footer","PresenterBlock","presenterList","presenter"]}],"namespace":["training","_body","PresenterBlock","presenterList"],"searchable":true,"uid":false},{"type":"object","label":"Other Events","name":"otherEvent","fields":[{"type":"string","label":"Title","name":"title","namespace":["training","footer","PresenterBlock","otherEvent","title"]},{"type":"string","label":"URL","name":"eventURL","namespace":["training","footer","PresenterBlock","otherEvent","eventURL"]}],"namespace":["training","_body","PresenterBlock","otherEvent"],"searchable":true,"uid":false}],"namespace":["training","_body","PresenterBlock"]},{"label":"Recurring Event","name":"RecurringEvent","ui":{"previewSrc":"/images/thumbs/tina/recurring-event.jpg"},"fields":[{"type":"string","label":"Apply Link Redirect","name":"applyLinkRedirect","namespace":["training","_body","RecurringEvent","applyLinkRedirect"],"searchable":true,"uid":false},{"type":"string","label":"Day","name":"day","options":[{"label":"Monday","value":"monday"},{"label":"Tuesday","value":"tuesday"},{"label":"Wednesday","value":"wednesday"},{"label":"Thursday","value":"thursday"},{"label":"Friday","value":"friday"},{"label":"Saturday","value":"saturday"},{"label":"Sunday","value":"sunday"}],"required":true,"namespace":["training","_body","RecurringEvent","day"],"searchable":true,"uid":false}],"namespace":["training","_body","RecurringEvent"]},{"name":"SectionHeader","label":"Section Header","ui":{"previewSrc":"/images/thumbs/tina/section-header.jpg"},"fields":[{"type":"string","label":"Header Text","name":"headerText","namespace":["training","_body","SectionHeader","headerText"],"searchable":true,"uid":false}],"namespace":["training","_body","SectionHeader"]},{"name":"ServiceCards","label":"Service Cards","ui":{"previewSrc":"/images/thumbs/tina/services-cards.jpg"},"fields":[{"type":"string","label":"Big Cards Label","name":"bigCardsLabel","namespace":["training","_body","ServiceCards","bigCardsLabel"],"searchable":true,"uid":false},{"label":"Big Cards","name":"bigCards","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["training","footer","ServiceCards","bigCards","title"]},{"type":"string","label":"Description","component":"textarea","name":"description","namespace":["training","footer","ServiceCards","bigCards","description"]},{"type":"string","label":"URL","name":"link","namespace":["training","footer","ServiceCards","bigCards","link"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Red","value":"red"},{"label":"Light Gray","value":"lightgray"},{"label":"Medium Gray","value":"mediumgray"},{"label":"Dark Gray","value":"darkgray"}],"namespace":["training","footer","ServiceCards","bigCards","color"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","ServiceCards","bigCards","imgSrc","uploadDir"]},"namespace":["training","footer","ServiceCards","bigCards","imgSrc"]}],"namespace":["training","_body","ServiceCards","bigCards"],"searchable":true,"uid":false},{"type":"string","label":"Small Cards Label","name":"smallCardsLabel","namespace":["training","_body","ServiceCards","smallCardsLabel"],"searchable":true,"uid":false},{"label":"Small Cards","name":"smallCards","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["training","footer","ServiceCards","smallCards","title"]},{"type":"string","label":"URL","name":"link","namespace":["training","footer","ServiceCards","smallCards","link"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Red","value":"red"},{"label":"Light Gray","value":"lightgray"},{"label":"Medium Gray","value":"mediumgray"},{"label":"Dark Gray","value":"darkgray"}],"namespace":["training","footer","ServiceCards","smallCards","color"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","ServiceCards","smallCards","imgSrc","uploadDir"]},"namespace":["training","footer","ServiceCards","smallCards","imgSrc"]},{"type":"boolean","label":"External Page","description":"Select this if the link is not part of the website. This includes SSW.Rules, and SSW.People links","name":"isExternal","namespace":["training","footer","ServiceCards","smallCards","isExternal"]}],"namespace":["training","_body","ServiceCards","smallCards"],"searchable":true,"uid":false},{"label":"Links","name":"links","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["training","footer","ServiceCards","links","label"]},{"type":"string","label":"URL","name":"link","namespace":["training","footer","ServiceCards","links","link"]}],"namespace":["training","_body","ServiceCards","links"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["training","_body","ServiceCards","backgroundColor"],"searchable":true,"uid":false}],"namespace":["training","_body","ServiceCards"]},{"label":"Table Layout","name":"TableLayout","ui":{"previewSrc":"/images/thumbs/tina/table-layout.jpg"},"fields":[{"label":"Table Style","name":"tableStyle","type":"string","options":["none","basicBorder","styled","benefits"],"namespace":["training","_body","TableLayout","tableStyle"],"searchable":true,"uid":false},{"label":"First column bolded + left aligned","name":"firstColBold","type":"boolean","required":false,"namespace":["training","_body","TableLayout","firstColBold"],"searchable":true,"uid":false},{"type":"string","label":"Table Headers","name":"headers","list":true,"namespace":["training","_body","TableLayout","headers"],"searchable":true,"uid":false},{"type":"object","label":"Rows","name":"rows","list":true,"fields":[{"type":"object","label":"Cells","name":"cells","list":true,"fields":[{"type":"string","label":"Value","name":"cellValue","required":true,"component":{"namespace":["page","beforeBody","TableLayout","rows","cells","cellValue",""]},"namespace":["userGroupPage","contentPage","_body","TableLayout","rows","cells","cellValue"]}],"ui":{},"namespace":["training","footer","TableLayout","rows","cells"]},{"type":"boolean","label":"Is Heading","name":"isHeader","required":false,"namespace":["training","footer","TableLayout","rows","isHeader"]}],"ui":{},"namespace":["training","_body","TableLayout","rows"],"searchable":true,"uid":false}],"namespace":["training","_body","TableLayout"]},{"name":"TestimonialsList","label":"Testimonials List","ui":{"previewSrc":"/images/thumbs/tina/testimonials.jpg"},"fields":[{"type":"object","label":"Exclude Categories","name":"excludedCategories","ui":{},"list":true,"fields":[{"type":"reference","label":"Category Name","name":"categoryName","collections":["testimonialCategories"],"namespace":["training","footer","TestimonialsList","excludedCategories","categoryName"]}],"namespace":["training","_body","TestimonialsList","excludedCategories"],"searchable":true,"uid":false}],"namespace":["training","_body","TestimonialsList"]},{"label":"Training Information","name":"TrainingInformation","ui":{"previewSrc":"/images/thumbs/tina/training-information.jpg"},"fields":[{"type":"object","label":"Training Information Items","name":"trainingInformationItems","list":true,"fields":[{"type":"string","label":"Header","name":"header","namespace":["training","footer","TrainingInformation","trainingInformationItems","header"]},{"type":"rich-text","label":"Body","name":"body","templates":[{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["userGroupPage","contentPage","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["userGroupPage","contentPage","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["userGroupPage","contentPage","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["userGroupPage","contentPage","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["userGroupPage","contentPage","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","afterBody"]}],"namespace":["userGroupPage","contentPage","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem"]},{"label":"Recurring Event","name":"RecurringEvent","ui":{"previewSrc":"/images/thumbs/tina/recurring-event.jpg"},"fields":[{"type":"string","label":"Apply Link Redirect","name":"applyLinkRedirect","namespace":["userGroupPage","contentPage","_body","TrainingInformation","trainingInformationItems","body","RecurringEvent","applyLinkRedirect"]},{"type":"string","label":"Day","name":"day","options":[{"label":"Monday","value":"monday"},{"label":"Tuesday","value":"tuesday"},{"label":"Wednesday","value":"wednesday"},{"label":"Thursday","value":"thursday"},{"label":"Friday","value":"friday"},{"label":"Saturday","value":"saturday"},{"label":"Sunday","value":"sunday"}],"required":true,"namespace":["userGroupPage","contentPage","_body","TrainingInformation","trainingInformationItems","body","RecurringEvent","day"]}],"namespace":["userGroupPage","contentPage","_body","TrainingInformation","trainingInformationItems","body","RecurringEvent"]}],"namespace":["training","footer","TrainingInformation","trainingInformationItems","body"]}],"namespace":["training","_body","TrainingInformation","trainingInformationItems"],"searchable":true,"uid":false}],"namespace":["training","_body","TrainingInformation"]},{"label":"Training Learning Outcomes","name":"TrainingLearningOutcome","ui":{"previewSrc":"/images/thumbs/tina/training-learning-outcomes.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["training","_body","TrainingLearningOutcome","header"],"searchable":true,"uid":false},{"type":"object","label":"List Items","name":"listItems","list":true,"fields":[{"type":"string","label":"Title","name":"title","namespace":["training","footer","TrainingLearningOutcome","listItems","title"]},{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["training","footer","TrainingLearningOutcome","listItems","content"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","TrainingLearningOutcome","listItems","icon","uploadDir"]},"namespace":["training","footer","TrainingLearningOutcome","listItems","icon"]}],"namespace":["training","_body","TrainingLearningOutcome","listItems"],"searchable":true,"uid":false}],"namespace":["training","_body","TrainingLearningOutcome"]},{"label":"Tweet Embed","name":"TweetEmbed","ui":{"previewSrc":"/images/thumbs/tina/tweet-embed.jpg"},"fields":[{"type":"string","name":"url","label":"Tweet URL","required":true,"namespace":["training","_body","TweetEmbed","url"],"searchable":true,"uid":false}],"namespace":["training","_body","TweetEmbed"]},{"name":"UpcomingEvents","label":"Upcoming Events","ui":{"previewSrc":"/images/thumbs/tina/upcoming-events.jpg","defaultItem":{"title":"Upcoming Events","numberOfEvents":30}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["training","_body","UpcomingEvents","title"],"searchable":true,"uid":false},{"type":"number","label":"Number of Events","name":"numberOfEvents","namespace":["training","_body","UpcomingEvents","numberOfEvents"],"searchable":true,"uid":false}],"namespace":["training","_body","UpcomingEvents"]},{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["training","_body","UtilityButton","buttonText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"link","required":false,"namespace":["training","_body","UtilityButton","link"],"searchable":true,"uid":false},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["training","_body","UtilityButton","size"],"searchable":true,"uid":false},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["training","_body","UtilityButton","btnIcon"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["training","_body","UtilityButton","animated"],"searchable":true,"uid":false},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["training","_body","UtilityButton","uncentered"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["training","_body","UtilityButton","removeTopMargin"],"searchable":true,"uid":false},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["training","_body","UtilityButton","openInNewTab"],"searchable":true,"uid":false}],"namespace":["training","_body","UtilityButton"]},{"name":"VerticalImageLayout","label":"Vertical Image Layout","fields":[{"type":"image","label":"Image","name":"imageSrc","uploadDir":{"namespace":["page","beforeBody","VerticalImageLayout","imageSrc","uploadDir"]},"namespace":["training","_body","VerticalImageLayout","imageSrc"],"searchable":false,"uid":false},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["training","_body","VerticalImageLayout","altText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"imageLink","namespace":["training","_body","VerticalImageLayout","imageLink"],"searchable":true,"uid":false},{"type":"number","label":"Height","name":"height","required":true,"namespace":["training","_body","VerticalImageLayout","height"],"searchable":true,"uid":false},{"type":"number","label":"Width","name":"width","required":true,"namespace":["training","_body","VerticalImageLayout","width"],"searchable":true,"uid":false},{"type":"rich-text","label":"Message","name":"message","required":true,"namespace":["training","_body","VerticalImageLayout","message"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["training","_body","VerticalImageLayout","sizes"],"searchable":true,"uid":false}],"namespace":["training","_body","VerticalImageLayout"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["training","_body","VerticalListItem","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"number","label":"Index number","name":"index","namespace":["training","_body","VerticalListItem","index"],"searchable":true,"uid":false},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["training","_body","VerticalListItem","icon"],"searchable":false,"uid":false},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["training","_body","VerticalListItem","iconScale"],"searchable":true,"uid":false},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["training","_body","VerticalListItem","afterBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["training","_body","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["training","_body","VideoEmbed","url"],"searchable":true,"uid":false},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["training","_body","VideoEmbed","videoWidth"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["training","_body","VideoEmbed","removeMargin"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["training","_body","VideoEmbed","uncentre"],"searchable":true,"uid":false},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["training","_body","VideoEmbed","overflow"],"searchable":true,"uid":false},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["training","_body","VideoEmbed","caption"],"searchable":true,"uid":false},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["training","_body","VideoEmbed","duration"],"searchable":true,"uid":false}],"namespace":["training","_body","VideoEmbed"]},{"name":"InlineJotForm","label":"In-line JotForm","ui":{"previewSrc":"/images/thumbs/tina/inline-jot-form.jpg"},"fields":[{"type":"string","name":"title","label":"Title","description":"Optional title for JotForm","namespace":["training","_body","InlineJotForm","title"],"searchable":true,"uid":false},{"type":"string","name":"jotFormId","label":"JotForm ID","required":true,"namespace":["training","_body","InlineJotForm","jotFormId"],"searchable":true,"uid":false},{"type":"string","name":"additionalClasses","label":"Additional classnames","description":"Optional styling for iframe element only","namespace":["training","_body","InlineJotForm","additionalClasses"],"searchable":true,"uid":false}],"namespace":["training","_body","InlineJotForm"]}],"namespace":["training","_body"],"searchable":true,"uid":false},{"type":"rich-text","name":"footer","label":"Footer","templates":[{"name":"AboutUs","label":"About Us","ui":{"previewSrc":"/images/thumbs/tina/about-us.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["training","footer","AboutUs","backgroundColor"],"searchable":true,"uid":false},{"type":"boolean","label":"Show Map","name":"showMap","required":false,"namespace":["training","footer","AboutUs","showMap"],"searchable":true,"uid":false}],"namespace":["training","footer","AboutUs"]},{"label":"Agenda","name":"Agenda","ui":{"previewSrc":"/images/thumbs/tina/agenda.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["training","footer","Agenda","header"],"searchable":true,"uid":false},{"type":"string","label":"Header Color","name":"textColor","options":[{"label":"Red","value":"red"},{"label":"Gray","value":"gray"},{"label":"Default","value":"default"}],"namespace":["training","footer","Agenda","textColor"],"searchable":true,"uid":false},{"type":"object","label":"Agenda Items","name":"agendaItemList","ui":{},"list":true,"fields":[{"type":"string","label":"Placeholder Text","name":"placeholder","namespace":["userGroupPage","contentPage","_body","Agenda","agendaItemList","placeholder"]},{"type":"rich-text","label":"Body","name":"body","templates":[{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["userGroupPage","contentPage","_body","Agenda","agendaItemList","body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["userGroupPage","contentPage","_body","Agenda","agendaItemList","body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["userGroupPage","contentPage","_body","Agenda","agendaItemList","body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["userGroupPage","contentPage","_body","Agenda","agendaItemList","body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["userGroupPage","contentPage","_body","Agenda","agendaItemList","body","VerticalListItem","afterBody"]}],"namespace":["userGroupPage","contentPage","_body","Agenda","agendaItemList","body","VerticalListItem"]}],"namespace":["userGroupPage","contentPage","_body","Agenda","agendaItemList","body"]}],"namespace":["training","footer","Agenda","agendaItemList"],"searchable":true,"uid":false}],"namespace":["training","footer","Agenda"]},{"label":"Agreement Form","name":"AgreementForm","ui":{"previewSrc":"/images/thumbs/tina/agreement-form.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["training","footer","AgreementForm","backgroundColor"],"searchable":true,"uid":false},{"type":"object","label":"Form fields","name":"fields","list":true,"fields":[{"type":"string","label":"ID","name":"id","required":true,"namespace":["userGroupPage","contentPage","_body","AgreementForm","fields","id"]},{"type":"string","label":"Label","name":"label","required":true,"namespace":["userGroupPage","contentPage","_body","AgreementForm","fields","label"]},{"type":"string","label":"Placeholder","name":"placeholder","namespace":["userGroupPage","contentPage","_body","AgreementForm","fields","placeholder"]},{"type":"boolean","label":"Resizeable","name":"resizeable","required":true,"namespace":["userGroupPage","contentPage","_body","AgreementForm","fields","resizeable"]}],"namespace":["training","footer","AgreementForm","fields"],"searchable":true,"uid":false}],"namespace":["training","footer","AgreementForm"]},{"label":"Interest Form","name":"InterestForm","ui":{"previewSrc":"/images/thumbs/tina/interest-form.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["training","footer","InterestForm","buttonText"],"searchable":true,"uid":false}],"namespace":["training","footer","InterestForm"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["training","footer","BookingButton","buttonText"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","namespace":["training","footer","BookingButton","animated"],"searchable":true,"uid":false},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["training","footer","BookingButton","buttonSubtitle"],"searchable":true,"uid":false}],"namespace":["training","footer","BookingButton"]},{"name":"BuiltOnAzure","label":"Built on Azure","ui":{"previewSrc":"/images/thumbs/tina/built-on-azure.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["training","footer","BuiltOnAzure","backgroundColor"],"searchable":true,"uid":false}],"namespace":["training","footer","BuiltOnAzure"]},{"name":"Carousel","label":"Carousel","ui":{"previewSrc":"/images/thumbs/tina/carousel.jpg"},"fields":[{"label":"Items","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Item description","link":"/","openIn":"sameWindow"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["userGroupPage","contentPage","_body","Carousel","items","label"]},{"type":"string","label":"URL","name":"link","description":"If link contains ssw.com.au, you can skip the full URL and just use the path. e.g. /services","namespace":["userGroupPage","contentPage","_body","Carousel","items","link"]},{"type":"string","label":"Open in","name":"openIn","description":"If it is external link, please select 'New window' option.","options":[{"label":"Same window","value":"sameWindow"},{"label":"Modal","value":"modal"},{"label":"New window","value":"newWindow"}],"namespace":["userGroupPage","contentPage","_body","Carousel","items","openIn"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","Carousel","items","imgSrc","uploadDir"]},"namespace":["userGroupPage","contentPage","_body","Carousel","items","imgSrc"]}],"namespace":["training","footer","Carousel","items"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["training","footer","Carousel","backgroundColor"],"searchable":true,"uid":false},{"type":"number","label":"Delay (Seconds)","name":"delay","required":true,"namespace":["training","footer","Carousel","delay"],"searchable":true,"uid":false},{"type":"boolean","label":"Show on mobile devices","name":"showOnMobileDevices","namespace":["training","footer","Carousel","showOnMobileDevices"],"searchable":true,"uid":false}],"namespace":["training","footer","Carousel"]},{"name":"Citation","label":"Citation","fields":[{"type":"string","label":"author","name":"author","namespace":["training","footer","Citation","author"],"searchable":true,"uid":false},{"type":"string","label":"article","name":"article","required":true,"namespace":["training","footer","Citation","article"],"searchable":true,"uid":false}],"namespace":["training","footer","Citation"]},{"label":"Client List","name":"ClientList","ui":{"previewSrc":"/images/thumbs/tina/clients-list.jpg"},"fields":[{"type":"object","name":"categories","label":"Categories","list":true,"fields":[{"type":"reference","name":"category","label":"Category","collections":["clientCategories"],"namespace":["userGroupPage","contentPage","_body","ClientList","categories","category"]}],"ui":{},"namespace":["training","footer","ClientList","categories"],"searchable":true,"uid":false},{"type":"object","name":"clients","label":"Clients list","list":true,"ui":{"previewSrc":"/images/thumbs/tina/clients-list.jpg"},"fields":[{"type":"string","name":"name","label":"Name","namespace":["userGroupPage","contentPage","_body","ClientList","clients","name"]},{"type":"image","name":"logo","label":"Logo","namespace":["userGroupPage","contentPage","_body","ClientList","clients","logo"]},{"type":"string","name":"logoUrl","label":"Logo URL","namespace":["userGroupPage","contentPage","_body","ClientList","clients","logoUrl"]},{"type":"rich-text","name":"content","label":"Content","templates":[{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","UtilityButton","openInNewTab"]}],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","UtilityButton"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","VideoEmbed","duration"]}],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","VideoEmbed"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","CustomImage","sizes"]}],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","CustomImage"]},{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","CustomImage","sizes"]}],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","duration"]}],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","ColorBlock"]}],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content"]}],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard"]}],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content"]},{"type":"string","name":"caseStudyUrl","label":"Case study URL","namespace":["userGroupPage","contentPage","_body","ClientList","clients","caseStudyUrl"]},{"type":"object","name":"categories","label":"Categories","list":true,"ui":{},"fields":[{"type":"reference","name":"category","label":"Category","collections":["clientCategories"],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","categories","category"]}],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","categories"]}],"namespace":["training","footer","ClientList","clients"],"searchable":true,"uid":false}],"namespace":["training","footer","ClientList"]},{"name":"ClientLogos","label":"Client Logos","ui":{"previewSrc":"/images/thumbs/tina/client-logos.jpg"},"fields":[{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["training","footer","ClientLogos","altText"],"searchable":true,"uid":false}],"namespace":["training","footer","ClientLogos"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["training","footer","ColorBlock","title"],"searchable":true,"uid":false},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["training","footer","ColorBlock","subTitle"],"searchable":true,"uid":false},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["userGroupPage","contentPage","_body","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["userGroupPage","contentPage","_body","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["userGroupPage","contentPage","_body","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["userGroupPage","contentPage","_body","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["userGroupPage","contentPage","_body","ColorBlock","colorRow","caption"]}],"namespace":["training","footer","ColorBlock","colorRow"],"searchable":true,"uid":false}],"namespace":["training","footer","ColorBlock"]},{"name":"ColorPalette","label":"Color Palette","ui":{"previewSrc":"/images/thumbs/tina/color-palette.jpg"},"fields":[{"type":"string","label":"Name","name":"name","namespace":["training","footer","ColorPalette","name"],"searchable":true,"uid":false}],"namespace":["training","footer","ColorPalette"]},{"name":"Content","label":"Content","ui":{"previewSrc":"/images/thumbs/tina/content.jpg","defaultItem":{"body":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["training","footer","Content","title"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["userGroupPage","contentPage","_body","Content","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["userGroupPage","contentPage","_body","Content","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["userGroupPage","contentPage","_body","Content","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["userGroupPage","contentPage","_body","Content","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["userGroupPage","contentPage","_body","Content","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["userGroupPage","contentPage","_body","Content","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["userGroupPage","contentPage","_body","Content","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["userGroupPage","contentPage","_body","Content","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["userGroupPage","contentPage","_body","Content","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["userGroupPage","contentPage","_body","Content","content","CustomImage","sizes"]}],"namespace":["userGroupPage","contentPage","_body","Content","content","CustomImage"]},{"name":"ClientLogos","label":"Client Logos","ui":{"previewSrc":"/images/thumbs/tina/client-logos.jpg"},"fields":[{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["userGroupPage","contentPage","_body","Content","content","ClientLogos","altText"]}],"namespace":["userGroupPage","contentPage","_body","Content","content","ClientLogos"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["userGroupPage","contentPage","_body","Content","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["userGroupPage","contentPage","_body","Content","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["userGroupPage","contentPage","_body","Content","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["userGroupPage","contentPage","_body","Content","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["userGroupPage","contentPage","_body","Content","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["userGroupPage","contentPage","_body","Content","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["userGroupPage","contentPage","_body","Content","content","VideoEmbed","duration"]}],"namespace":["userGroupPage","contentPage","_body","Content","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["userGroupPage","contentPage","_body","Content","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["userGroupPage","contentPage","_body","Content","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["userGroupPage","contentPage","_body","Content","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["userGroupPage","contentPage","_body","Content","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["userGroupPage","contentPage","_body","Content","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["userGroupPage","contentPage","_body","Content","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["userGroupPage","contentPage","_body","Content","content","ColorBlock","colorRow","caption"]}],"namespace":["userGroupPage","contentPage","_body","Content","content","ColorBlock","colorRow"]}],"namespace":["userGroupPage","contentPage","_body","Content","content","ColorBlock"]}],"namespace":["training","footer","Content","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Container Padding","name":"paddingClass","options":["Mobile: No Padding","Mobile: No Top and Horizontal Padding"],"namespace":["training","footer","Content","paddingClass"],"searchable":true,"uid":false},{"type":"string","label":"Text size","name":"size","options":[{"label":"small","value":"sm"},{"label":"normal","value":"base"},{"label":"large","value":"lg"},{"label":"extra large","value":"xl"},{"label":"2x large","value":"2xl"}],"namespace":["training","footer","Content","size"],"searchable":true,"uid":false},{"type":"string","label":"Align","name":"align","options":[{"label":"Left","value":"left"},{"label":"Center","value":"center"},{"label":"Right","value":"right"}],"namespace":["training","footer","Content","align"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["training","footer","Content","backgroundColor"],"searchable":true,"uid":false}],"namespace":["training","footer","Content"]},{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["training","footer","ContentCard","prose"],"searchable":true,"uid":false},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["training","footer","ContentCard","centerAlignedText"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["userGroupPage","contentPage","_body","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["userGroupPage","contentPage","_body","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["userGroupPage","contentPage","_body","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["userGroupPage","contentPage","_body","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["userGroupPage","contentPage","_body","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["userGroupPage","contentPage","_body","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["userGroupPage","contentPage","_body","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["userGroupPage","contentPage","_body","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["userGroupPage","contentPage","_body","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["userGroupPage","contentPage","_body","ContentCard","content","CustomImage","sizes"]}],"namespace":["userGroupPage","contentPage","_body","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["userGroupPage","contentPage","_body","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["userGroupPage","contentPage","_body","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["userGroupPage","contentPage","_body","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["userGroupPage","contentPage","_body","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["userGroupPage","contentPage","_body","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["userGroupPage","contentPage","_body","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["userGroupPage","contentPage","_body","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["userGroupPage","contentPage","_body","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["userGroupPage","contentPage","_body","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["userGroupPage","contentPage","_body","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["userGroupPage","contentPage","_body","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["userGroupPage","contentPage","_body","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["userGroupPage","contentPage","_body","ContentCard","content","VideoEmbed","duration"]}],"namespace":["userGroupPage","contentPage","_body","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["userGroupPage","contentPage","_body","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["userGroupPage","contentPage","_body","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["userGroupPage","contentPage","_body","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["userGroupPage","contentPage","_body","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["userGroupPage","contentPage","_body","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["userGroupPage","contentPage","_body","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["userGroupPage","contentPage","_body","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["userGroupPage","contentPage","_body","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["userGroupPage","contentPage","_body","ContentCard","content","ColorBlock"]}],"namespace":["training","footer","ContentCard","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["training","footer","ContentCard"]},{"name":"CustomDownloadButton","label":"Custom Download Button","ui":{"previewSrc":"/images/thumbs/tina/custom-download-button.jpg"},"fields":[{"type":"string","label":"Text","name":"btnText","namespace":["training","footer","CustomDownloadButton","btnText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"btnLink","namespace":["training","footer","CustomDownloadButton","btnLink"],"searchable":true,"uid":false}],"namespace":["training","footer","CustomDownloadButton"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["training","footer","CustomImage","src"],"searchable":false,"uid":false},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["training","footer","CustomImage","altText"],"searchable":true,"uid":false},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["training","footer","CustomImage","alignment"],"searchable":true,"uid":false},{"type":"number","label":"Height","name":"height","required":true,"namespace":["training","footer","CustomImage","height"],"searchable":true,"uid":false},{"type":"number","label":"Width","name":"width","required":true,"namespace":["training","footer","CustomImage","width"],"searchable":true,"uid":false},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["training","footer","CustomImage","link"],"searchable":true,"uid":false},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["training","footer","CustomImage","customClass"],"searchable":true,"uid":false},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["training","footer","CustomImage","caption"],"searchable":true,"uid":false},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["training","footer","CustomImage","captionColor"],"searchable":true,"uid":false},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["training","footer","CustomImage","sizes"],"searchable":true,"uid":false}],"namespace":["training","footer","CustomImage"]},{"name":"DomainFromQuery","label":"Domain from query","ui":{"previewSrc":"/images/thumbs/tina/domain-from-query.jpg"},"fields":[{"name":"title","label":"Title","type":"string","description":"This is a H1 heading","namespace":["training","footer","DomainFromQuery","title"],"searchable":true,"uid":false},{"name":"showDomain","label":"Show domain name","type":"boolean","description":"Query param in URL must have key of 'domain'","namespace":["training","footer","DomainFromQuery","showDomain"],"searchable":true,"uid":false}],"namespace":["training","footer","DomainFromQuery"]},{"name":"DownloadBlock","label":"Download Block","ui":{"previewSrc":"/images/thumbs/tina/download-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["training","footer","DownloadBlock","title"],"searchable":true,"uid":false},{"type":"object","label":"Downloads","name":"downloads","ui":{},"list":true,"fields":[{"type":"string","label":"Header","name":"header","namespace":["userGroupPage","contentPage","_body","DownloadBlock","downloads","header"]},{"type":"image","label":"Image","name":"img","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","img","uploadDir"]},"namespace":["userGroupPage","contentPage","_body","DownloadBlock","downloads","img"]},{"type":"string","label":"Image Background","name":"imgBackground","options":["black","grey","white","darkgrey","darkgreen"],"namespace":["userGroupPage","contentPage","_body","DownloadBlock","downloads","imgBackground"]},{"type":"string","label":"First Link Text","name":"firstLinkText","description":"Defaults to PNG","namespace":["userGroupPage","contentPage","_body","DownloadBlock","downloads","firstLinkText"]},{"type":"image","label":"First Link","name":"firstLink","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","firstLink","uploadDir"]},"namespace":["userGroupPage","contentPage","_body","DownloadBlock","downloads","firstLink"]},{"type":"string","label":"Second Link Text","name":"secondLinkText","description":"Defaults to PDF","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","secondLinkText","uploadDir"]},"namespace":["userGroupPage","contentPage","_body","DownloadBlock","downloads","secondLinkText"]},{"type":"image","label":"Second Link","name":"secondLink","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","secondLink","uploadDir"]},"namespace":["userGroupPage","contentPage","_body","DownloadBlock","downloads","secondLink"]}],"namespace":["training","footer","DownloadBlock","downloads"],"searchable":true,"uid":false},{"type":"boolean","label":"Bottom border","name":"bottomBorder","namespace":["training","footer","DownloadBlock","bottomBorder"],"searchable":true,"uid":false}],"namespace":["training","footer","DownloadBlock"]},{"name":"DynamicColumns","label":"Dynamic Column Layout","fields":[{"type":"rich-text","label":"Column text body","name":"colBody","required":true,"namespace":["training","footer","DynamicColumns","colBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"number","label":"Number of columns","name":"colCount","required":true,"ui":{},"namespace":["training","footer","DynamicColumns","colCount"],"searchable":true,"uid":false}],"namespace":["training","footer","DynamicColumns"]},{"name":"EventBooking","label":"Events Booking","ui":{"previewSrc":"/images/thumbs/tina/events-booking.jpg"},"fields":[{"type":"number","label":"Duration (In Days)","name":"eventDurationInDays","required":true,"namespace":["training","footer","EventBooking","eventDurationInDays"],"searchable":true,"uid":false},{"type":"number","label":"Price","name":"price","required":true,"namespace":["training","footer","EventBooking","price"],"searchable":true,"uid":false},{"type":"number","label":"Discount Price","name":"discountPrice","namespace":["training","footer","EventBooking","discountPrice"],"searchable":true,"uid":false},{"type":"string","name":"gstText","label":"Select GST Option","options":["inc GST","+ GST"],"required":true,"namespace":["training","footer","EventBooking","gstText"],"searchable":true,"uid":false},{"type":"string","label":"Discount Note","name":"discountNote","namespace":["training","footer","EventBooking","discountNote"],"searchable":true,"uid":false},{"type":"object","label":"Event","name":"eventList","ui":{},"list":true,"fields":[{"type":"string","label":"City","name":"city","namespace":["userGroupPage","contentPage","_body","EventBooking","eventList","city"]},{"type":"datetime","label":"Start Date","name":"date","ui":{},"namespace":["userGroupPage","contentPage","_body","EventBooking","eventList","date"]},{"type":"string","label":"Booking URL","name":"bookingURL","namespace":["userGroupPage","contentPage","_body","EventBooking","eventList","bookingURL"]},{"type":"reference","label":"Location","name":"location","collections":["locations"],"namespace":["userGroupPage","contentPage","_body","EventBooking","eventList","location"]}],"namespace":["training","footer","EventBooking","eventList"],"searchable":true,"uid":false}],"namespace":["training","footer","EventBooking"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["userGroupPage","contentPage","_body","EventLink","content","Flag","country"]}],"namespace":["userGroupPage","contentPage","_body","EventLink","content","Flag"]}],"namespace":["training","footer","EventLink","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Link","name":"link","namespace":["training","footer","EventLink","link"],"searchable":true,"uid":false},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["training","footer","EventLink","eventThumbnail"],"searchable":false,"uid":false},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["training","footer","EventLink","thumbnailAlt"],"searchable":true,"uid":false}],"namespace":["training","footer","EventLink"]},{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["training","footer","Flag","country"],"searchable":true,"uid":false}],"namespace":["training","footer","Flag"]},{"name":"FixedColumns","label":"Fixed Column Layout (2 columns)","ui":{"previewSrc":"/images/thumbs/tina/fixed-columns.jpg"},"fields":[{"type":"rich-text","label":"Header Section (Optional)","name":"headerSection","namespace":["training","footer","FixedColumns","headerSection"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"First column text","name":"firstColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock"]}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content"]}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","CustomImage","sizes"]}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","EventLink","content","Flag","country"]}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","EventLink","content","Flag"]}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","EventLink","thumbnailAlt"]}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","EventLink"]}],"namespace":["training","footer","FixedColumns","firstColBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","label":"Second column text","name":"secondColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock"]}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content"]}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","CustomImage","sizes"]}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","EventLink","content","Flag","country"]}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","EventLink","content","Flag"]}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","EventLink","thumbnailAlt"]}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","EventLink"]}],"namespace":["training","footer","FixedColumns","secondColBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["training","footer","FixedColumns"]},{"name":"FixedTabsLayout","label":"Fixed Tabs Layout","ui":{"previewSrc":"/images/thumbs/tina/fixed-tabs-layout.jpg"},"fields":[{"type":"string","name":"firstTab","label":"First Tab","namespace":["training","footer","FixedTabsLayout","firstTab"],"searchable":true,"uid":false},{"type":"rich-text","name":"firstHeading","label":"First Heading","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","VideoEmbed","duration"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","BookingButton","buttonSubtitle"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList","skills"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","ExpertBlock","link","url"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","ExpertBlock","link"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","CustomImage","sizes"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","CustomImage"]}],"namespace":["training","footer","FixedTabsLayout","firstHeading"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","name":"firstBody","label":"First Body","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","VideoEmbed","duration"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","BookingButton","buttonSubtitle"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList","skills"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","ExpertBlock","link","url"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","ExpertBlock","link"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","CustomImage","sizes"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","CustomImage"]}],"namespace":["training","footer","FixedTabsLayout","firstBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","name":"secondTab","label":"Second Tab","namespace":["training","footer","FixedTabsLayout","secondTab"],"searchable":true,"uid":false},{"type":"rich-text","name":"secondHeading","label":"Second Heading","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","VideoEmbed","duration"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","BookingButton","buttonSubtitle"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList","skills"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","ExpertBlock","link","url"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","ExpertBlock","link"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","CustomImage","sizes"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","CustomImage"]}],"namespace":["training","footer","FixedTabsLayout","secondHeading"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"rich-text","name":"secondBody","label":"Second Body","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","VideoEmbed","duration"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","BookingButton","buttonSubtitle"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList","skills"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","ExpertBlock","link","url"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","ExpertBlock","link"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","CustomImage","sizes"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","CustomImage"]}],"namespace":["training","footer","FixedTabsLayout","secondBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["training","footer","FixedTabsLayout"]},{"label":"Google Maps","name":"GoogleMaps","ui":{"previewSrc":"/images/thumbs/tina/google-maps.jpg"},"fields":[{"type":"string","label":"URL","name":"embedUrl","required":true,"namespace":["training","footer","GoogleMaps","embedUrl"],"searchable":true,"uid":false},{"type":"string","label":"Width","name":"embedWidth","namespace":["training","footer","GoogleMaps","embedWidth"],"searchable":true,"uid":false},{"type":"string","label":"Height","name":"embedHeight","namespace":["training","footer","GoogleMaps","embedHeight"],"searchable":true,"uid":false}],"namespace":["training","footer","GoogleMaps"]},{"label":"Grid Layout","name":"GridLayout","ui":{"previewSrc":"/images/thumbs/tina/grid-layout.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["training","footer","GridLayout","title"],"searchable":true,"uid":false},{"type":"object","list":true,"label":"Grid Items","name":"grids","ui":{},"fields":[{"type":"string","label":"Grid Title","name":"gridTitle","namespace":["userGroupPage","contentPage","_body","GridLayout","grids","gridTitle"]},{"type":"boolean","label":"Show Grid Title","name":"showGridTitle","namespace":["userGroupPage","contentPage","_body","GridLayout","grids","showGridTitle"]},{"type":"boolean","label":"Centered Grid Title","name":"centeredGridTitle","namespace":["userGroupPage","contentPage","_body","GridLayout","grids","centeredGridTitle"]},{"type":"boolean","label":"Show Header Divider","name":"showHeaderDivider","namespace":["userGroupPage","contentPage","_body","GridLayout","grids","showHeaderDivider"]},{"type":"boolean","label":"Offset Grid Start","name":"offsetGridStart","namespace":["userGroupPage","contentPage","_body","GridLayout","grids","offsetGridStart"]},{"type":"object","label":"Blocks","name":"blocks","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["userGroupPage","contentPage","_body","GridLayout","grids","blocks","title"]},{"type":"boolean","label":"Show Title","name":"showTitle","namespace":["userGroupPage","contentPage","_body","GridLayout","grids","blocks","showTitle"]},{"type":"image","label":"Image","name":"image","uploadDir":{"namespace":["page","beforeBody","GridLayout","grids","blocks","image","uploadDir"]},"namespace":["userGroupPage","contentPage","_body","GridLayout","grids","blocks","image"]},{"type":"image","label":"Related Image","name":"relatedImage","uploadDir":{"namespace":["page","beforeBody","GridLayout","grids","blocks","relatedImage","uploadDir"]},"namespace":["userGroupPage","contentPage","_body","GridLayout","grids","blocks","relatedImage"]},{"type":"rich-text","name":"linkContent","label":"Link Content","templates":[{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["userGroupPage","contentPage","_body","GridLayout","grids","blocks","linkContent","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["userGroupPage","contentPage","_body","GridLayout","grids","blocks","linkContent","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["userGroupPage","contentPage","_body","GridLayout","grids","blocks","linkContent","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["userGroupPage","contentPage","_body","GridLayout","grids","blocks","linkContent","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["userGroupPage","contentPage","_body","GridLayout","grids","blocks","linkContent","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["userGroupPage","contentPage","_body","GridLayout","grids","blocks","linkContent","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["userGroupPage","contentPage","_body","GridLayout","grids","blocks","linkContent","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["userGroupPage","contentPage","_body","GridLayout","grids","blocks","linkContent","UtilityButton","openInNewTab"]}],"namespace":["userGroupPage","contentPage","_body","GridLayout","grids","blocks","linkContent","UtilityButton"]}],"namespace":["userGroupPage","contentPage","_body","GridLayout","grids","blocks","linkContent"]}],"namespace":["userGroupPage","contentPage","_body","GridLayout","grids","blocks"]}],"namespace":["training","footer","GridLayout","grids"],"searchable":true,"uid":false}],"namespace":["training","footer","GridLayout"]},{"name":"Hero","label":"Hero","ui":{"previewSrc":"/blocks/hero.png","defaultItem":{"tagline":"Here's some text above the other text","headline":"This Big Text is Totally Awesome","text":"Phasellus scelerisque, libero eu finibus rutrum, risus risus accumsan libero, nec molestie urna dui a leo."}},"fields":[{"type":"string","label":"Tagline","name":"tagline","namespace":["training","footer","Hero","tagline"],"searchable":true,"uid":false},{"type":"string","label":"Headline","name":"headline","namespace":["training","footer","Hero","headline"],"searchable":true,"uid":false},{"label":"Text","name":"text","type":"rich-text","namespace":["training","footer","Hero","text"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"label":"Actions","name":"actions","type":"object","list":true,"ui":{"defaultItem":{"label":"Action Label","type":"button","icon":true,"link":"/"}},"fields":[{"label":"Label","name":"label","type":"string","namespace":["userGroupPage","contentPage","_body","Hero","actions","label"]},{"label":"Type","name":"type","type":"string","options":[{"label":"Button","value":"button"},{"label":"Link","value":"link"}],"namespace":["userGroupPage","contentPage","_body","Hero","actions","type"]},{"label":"Icon","name":"icon","type":"boolean","namespace":["userGroupPage","contentPage","_body","Hero","actions","icon"]},{"label":"Link","name":"link","type":"string","namespace":["userGroupPage","contentPage","_body","Hero","actions","link"]}],"namespace":["training","footer","Hero","actions"],"searchable":true,"uid":false},{"type":"object","label":"Image","name":"image","fields":[{"name":"src","label":"Image Source","type":"image","namespace":["userGroupPage","contentPage","_body","Hero","image","src"]},{"name":"alt","label":"Alt Text","type":"string","namespace":["userGroupPage","contentPage","_body","Hero","image","alt"]}],"namespace":["training","footer","Hero","image"],"searchable":true,"uid":false},{"type":"string","label":"Color","name":"color","options":[{"label":"Default","value":"default"},{"label":"Tint","value":"tint"},{"label":"Primary","value":"primary"}],"namespace":["training","footer","Hero","color"],"searchable":true,"uid":false}],"namespace":["training","footer","Hero"]},{"name":"HorizontalCard","label":"Horizontal Card","ui":{"previewSrc":"/images/thumbs/tina/horizontal-card.jpg"},"fields":[{"type":"object","label":"Cards","name":"cardList","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["userGroupPage","contentPage","_body","HorizontalCard","cardList","title"]},{"type":"rich-text","label":"Content","name":"content","namespace":["userGroupPage","contentPage","_body","HorizontalCard","cardList","content"]},{"type":"image","label":"Thumbnail","name":"thumbnail","uploadDir":{"namespace":["page","beforeBody","HorizontalCard","cardList","thumbnail","uploadDir"]},"namespace":["userGroupPage","contentPage","_body","HorizontalCard","cardList","thumbnail"]},{"type":"string","label":"Link","name":"link","namespace":["userGroupPage","contentPage","_body","HorizontalCard","cardList","link"]}],"namespace":["training","footer","HorizontalCard","cardList"],"searchable":true,"uid":false},{"type":"object","label":"Button","name":"button","fields":[{"type":"string","label":"Text","name":"text","namespace":["userGroupPage","contentPage","_body","HorizontalCard","button","text"]},{"type":"string","label":"Link","name":"link","namespace":["userGroupPage","contentPage","_body","HorizontalCard","button","link"]}],"namespace":["training","footer","HorizontalCard","button"],"searchable":true,"uid":false}],"namespace":["training","footer","HorizontalCard"]},{"name":"InternalCarousel","label":"Internal Carousel","ui":{"previewSrc":"/images/thumbs/tina/internal-carousel.jpg"},"fields":[{"label":"Images","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Image description"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["userGroupPage","contentPage","_body","InternalCarousel","items","label"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","InternalCarousel","items","imgSrc","uploadDir"]},"namespace":["userGroupPage","contentPage","_body","InternalCarousel","items","imgSrc"]}],"namespace":["training","footer","InternalCarousel","items"],"searchable":true,"uid":false},{"type":"string","label":"Header","name":"header","namespace":["training","footer","InternalCarousel","header"],"searchable":true,"uid":false},{"type":"rich-text","label":"Text","name":"paragraph","isBody":false,"namespace":["training","footer","InternalCarousel","paragraph"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","label":"Website","name":"website","namespace":["training","footer","InternalCarousel","website"],"searchable":true,"uid":false},{"type":"object","label":"Technologies","name":"technologies","list":true,"ui":{},"fields":[{"type":"string","label":"Name","name":"name","namespace":["userGroupPage","contentPage","_body","InternalCarousel","technologies","name"]}],"namespace":["training","footer","InternalCarousel","technologies"],"searchable":true,"uid":false},{"type":"string","label":"Case Study","name":"caseStudyUrl","namespace":["training","footer","InternalCarousel","caseStudyUrl"],"searchable":true,"uid":false},{"type":"string","label":"Video URL","name":"videoUrl","namespace":["training","footer","InternalCarousel","videoUrl"],"searchable":true,"uid":false}],"namespace":["training","footer","InternalCarousel"]},{"label":"Join As Presenter","name":"joinAsPresenter","fields":[{"label":"Learn More Link","name":"link","type":"string","namespace":["training","footer","joinAsPresenter","link"],"searchable":true,"uid":false},{"label":"Image","name":"img","type":"image","namespace":["training","footer","joinAsPresenter","img"],"searchable":false,"uid":false}],"namespace":["training","footer","joinAsPresenter"]},{"label":"Join Github","name":"joinGithub","ui":{"previewSrc":"/images/thumbs/tina/join-github.jpg"},"fields":[{"label":"Title","name":"title","type":"string","namespace":["training","footer","joinGithub","title"],"searchable":true,"uid":false},{"label":"Join Github Link","name":"link","type":"string","namespace":["training","footer","joinGithub","link"],"searchable":true,"uid":false}],"namespace":["training","footer","joinGithub"]},{"name":"JotFormEmbed","label":"JotForm Embed","ui":{"previewSrc":"/images/thumbs/tina/jotform-embed.jpg"},"fields":[{"type":"string","name":"jotFormId","label":"JotForm Id","required":true,"namespace":["training","footer","JotFormEmbed","jotFormId"],"searchable":true,"uid":false},{"type":"string","label":"Button Text","name":"buttonText","namespace":["training","footer","JotFormEmbed","buttonText"],"searchable":true,"uid":false},{"type":"string","name":"containerClass","label":"Container Class","namespace":["training","footer","JotFormEmbed","containerClass"],"searchable":true,"uid":false},{"type":"string","label":"Button Class","name":"buttonClass","namespace":["training","footer","JotFormEmbed","buttonClass"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","namespace":["training","footer","JotFormEmbed","animated"],"searchable":true,"uid":false}],"namespace":["training","footer","JotFormEmbed"]},{"name":"LatestTech","label":"Latest Tech","ui":{"previewSrc":"/images/thumbs/tina/latest-tech.jpg"},"fields":[{"type":"reference","description":"Select a config file including a set of badges","collections":["userGroupGlobal"],"label":"Badges","name":"badges","namespace":["training","footer","LatestTech","badges"],"searchable":true,"uid":false}],"namespace":["training","footer","LatestTech"]},{"name":"LocationBlock","label":"Locations","ui":{"previewSrc":"/images/thumbs/tina/locations.jpg"},"fields":[{"type":"string","name":"title","label":"Title","namespace":["training","footer","LocationBlock","title"],"searchable":true,"uid":false},{"type":"object","label":"Location List","name":"locationList","list":true,"ui":{},"fields":[{"type":"reference","collections":["locations"],"label":"Location","name":"location","namespace":["userGroupPage","contentPage","_body","LocationBlock","locationList","location"]}],"namespace":["training","footer","LocationBlock","locationList"],"searchable":true,"uid":false},{"type":"object","name":"chapelWebsite","label":"Chapel Website","fields":[{"type":"string","name":"title","label":"Text","namespace":["userGroupPage","contentPage","_body","LocationBlock","chapelWebsite","title"]},{"type":"string","name":"URL","label":"URL","namespace":["userGroupPage","contentPage","_body","LocationBlock","chapelWebsite","URL"]}],"namespace":["training","footer","LocationBlock","chapelWebsite"],"searchable":true,"uid":false}],"namespace":["training","footer","LocationBlock"]},{"name":"NewslettersTable","label":"Newsletters Table","ui":{"previewSrc":"/images/thumbs/tina/newsletters-table.jpg"},"fields":[{"type":"string","label":"Header text","name":"headerText","namespace":["training","footer","NewslettersTable","headerText"],"searchable":true,"uid":false}],"namespace":["training","footer","NewslettersTable"]},{"label":"Organizer","name":"organizer","fields":[{"type":"image","label":"Profile Image","name":"profileImg","namespace":["training","footer","organizer","profileImg"],"searchable":false,"uid":false},{"type":"string","label":"Profile Link","name":"profileLink","namespace":["training","footer","organizer","profileLink"],"searchable":true,"uid":false},{"type":"string","label":"Name","name":"name","namespace":["training","footer","organizer","name"],"searchable":true,"uid":false},{"type":"string","label":"Position","name":"position","namespace":["training","footer","organizer","position"],"searchable":true,"uid":false},{"type":"rich-text","label":"Content","name":"content","namespace":["training","footer","organizer","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["training","footer","organizer"]},{"label":"Payment Block","name":"paymentBlock","ui":{"previewSrc":"/images/thumbs/tina/payment-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["training","footer","paymentBlock","title"],"searchable":true,"uid":false},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["training","footer","paymentBlock","subTitle"],"searchable":true,"uid":false},{"type":"reference","label":"Payment Links","name":"payments","collections":["paymentDetails"],"namespace":["training","footer","paymentBlock","payments"],"searchable":true,"uid":false},{"type":"rich-text","label":"Footer","name":"footer","namespace":["training","footer","paymentBlock","footer"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"image","label":"Credit Cards Image","name":"creditImgSrc","namespace":["training","footer","paymentBlock","creditImgSrc"],"searchable":false,"uid":false},{"type":"string","label":"Alt Text","name":"altTxt","namespace":["training","footer","paymentBlock","altTxt"],"searchable":true,"uid":false}],"namespace":["training","footer","paymentBlock"]},{"name":"PresenterBlock","label":"Presenters","ui":{"previewSrc":"/images/thumbs/tina/presenters.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["training","footer","PresenterBlock","header"],"searchable":true,"uid":false},{"type":"object","name":"presenterList","label":"Presenters","list":true,"ui":{},"fields":[{"type":"reference","name":"presenter","label":"Presenters","collections":["presenter"],"namespace":["userGroupPage","contentPage","_body","PresenterBlock","presenterList","presenter"]}],"namespace":["training","footer","PresenterBlock","presenterList"],"searchable":true,"uid":false},{"type":"object","label":"Other Events","name":"otherEvent","fields":[{"type":"string","label":"Title","name":"title","namespace":["userGroupPage","contentPage","_body","PresenterBlock","otherEvent","title"]},{"type":"string","label":"URL","name":"eventURL","namespace":["userGroupPage","contentPage","_body","PresenterBlock","otherEvent","eventURL"]}],"namespace":["training","footer","PresenterBlock","otherEvent"],"searchable":true,"uid":false}],"namespace":["training","footer","PresenterBlock"]},{"label":"Recurring Event","name":"RecurringEvent","ui":{"previewSrc":"/images/thumbs/tina/recurring-event.jpg"},"fields":[{"type":"string","label":"Apply Link Redirect","name":"applyLinkRedirect","namespace":["training","footer","RecurringEvent","applyLinkRedirect"],"searchable":true,"uid":false},{"type":"string","label":"Day","name":"day","options":[{"label":"Monday","value":"monday"},{"label":"Tuesday","value":"tuesday"},{"label":"Wednesday","value":"wednesday"},{"label":"Thursday","value":"thursday"},{"label":"Friday","value":"friday"},{"label":"Saturday","value":"saturday"},{"label":"Sunday","value":"sunday"}],"required":true,"namespace":["training","footer","RecurringEvent","day"],"searchable":true,"uid":false}],"namespace":["training","footer","RecurringEvent"]},{"name":"SectionHeader","label":"Section Header","ui":{"previewSrc":"/images/thumbs/tina/section-header.jpg"},"fields":[{"type":"string","label":"Header Text","name":"headerText","namespace":["training","footer","SectionHeader","headerText"],"searchable":true,"uid":false}],"namespace":["training","footer","SectionHeader"]},{"name":"ServiceCards","label":"Service Cards","ui":{"previewSrc":"/images/thumbs/tina/services-cards.jpg"},"fields":[{"type":"string","label":"Big Cards Label","name":"bigCardsLabel","namespace":["training","footer","ServiceCards","bigCardsLabel"],"searchable":true,"uid":false},{"label":"Big Cards","name":"bigCards","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["userGroupPage","contentPage","_body","ServiceCards","bigCards","title"]},{"type":"string","label":"Description","component":"textarea","name":"description","namespace":["userGroupPage","contentPage","_body","ServiceCards","bigCards","description"]},{"type":"string","label":"URL","name":"link","namespace":["userGroupPage","contentPage","_body","ServiceCards","bigCards","link"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Red","value":"red"},{"label":"Light Gray","value":"lightgray"},{"label":"Medium Gray","value":"mediumgray"},{"label":"Dark Gray","value":"darkgray"}],"namespace":["userGroupPage","contentPage","_body","ServiceCards","bigCards","color"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","ServiceCards","bigCards","imgSrc","uploadDir"]},"namespace":["userGroupPage","contentPage","_body","ServiceCards","bigCards","imgSrc"]}],"namespace":["training","footer","ServiceCards","bigCards"],"searchable":true,"uid":false},{"type":"string","label":"Small Cards Label","name":"smallCardsLabel","namespace":["training","footer","ServiceCards","smallCardsLabel"],"searchable":true,"uid":false},{"label":"Small Cards","name":"smallCards","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["userGroupPage","contentPage","_body","ServiceCards","smallCards","title"]},{"type":"string","label":"URL","name":"link","namespace":["userGroupPage","contentPage","_body","ServiceCards","smallCards","link"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Red","value":"red"},{"label":"Light Gray","value":"lightgray"},{"label":"Medium Gray","value":"mediumgray"},{"label":"Dark Gray","value":"darkgray"}],"namespace":["userGroupPage","contentPage","_body","ServiceCards","smallCards","color"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","ServiceCards","smallCards","imgSrc","uploadDir"]},"namespace":["userGroupPage","contentPage","_body","ServiceCards","smallCards","imgSrc"]},{"type":"boolean","label":"External Page","description":"Select this if the link is not part of the website. This includes SSW.Rules, and SSW.People links","name":"isExternal","namespace":["userGroupPage","contentPage","_body","ServiceCards","smallCards","isExternal"]}],"namespace":["training","footer","ServiceCards","smallCards"],"searchable":true,"uid":false},{"label":"Links","name":"links","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["userGroupPage","contentPage","_body","ServiceCards","links","label"]},{"type":"string","label":"URL","name":"link","namespace":["userGroupPage","contentPage","_body","ServiceCards","links","link"]}],"namespace":["training","footer","ServiceCards","links"],"searchable":true,"uid":false},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["training","footer","ServiceCards","backgroundColor"],"searchable":true,"uid":false}],"namespace":["training","footer","ServiceCards"]},{"label":"Table Layout","name":"TableLayout","ui":{"previewSrc":"/images/thumbs/tina/table-layout.jpg"},"fields":[{"label":"Table Style","name":"tableStyle","type":"string","options":["none","basicBorder","styled","benefits"],"namespace":["training","footer","TableLayout","tableStyle"],"searchable":true,"uid":false},{"label":"First column bolded + left aligned","name":"firstColBold","type":"boolean","required":false,"namespace":["training","footer","TableLayout","firstColBold"],"searchable":true,"uid":false},{"type":"string","label":"Table Headers","name":"headers","list":true,"namespace":["training","footer","TableLayout","headers"],"searchable":true,"uid":false},{"type":"object","label":"Rows","name":"rows","list":true,"fields":[{"type":"object","label":"Cells","name":"cells","list":true,"fields":[{"type":"string","label":"Value","name":"cellValue","required":true,"component":{"namespace":["page","beforeBody","TableLayout","rows","cells","cellValue",""]},"namespace":["userGroupPage","contentPage","_body","TableLayout","rows","cells","cellValue"]}],"ui":{},"namespace":["userGroupPage","contentPage","_body","TableLayout","rows","cells"]},{"type":"boolean","label":"Is Heading","name":"isHeader","required":false,"namespace":["userGroupPage","contentPage","_body","TableLayout","rows","isHeader"]}],"ui":{},"namespace":["training","footer","TableLayout","rows"],"searchable":true,"uid":false}],"namespace":["training","footer","TableLayout"]},{"name":"TestimonialsList","label":"Testimonials List","ui":{"previewSrc":"/images/thumbs/tina/testimonials.jpg"},"fields":[{"type":"object","label":"Exclude Categories","name":"excludedCategories","ui":{},"list":true,"fields":[{"type":"reference","label":"Category Name","name":"categoryName","collections":["testimonialCategories"],"namespace":["userGroupPage","contentPage","_body","TestimonialsList","excludedCategories","categoryName"]}],"namespace":["training","footer","TestimonialsList","excludedCategories"],"searchable":true,"uid":false}],"namespace":["training","footer","TestimonialsList"]},{"label":"Training Information","name":"TrainingInformation","ui":{"previewSrc":"/images/thumbs/tina/training-information.jpg"},"fields":[{"type":"object","label":"Training Information Items","name":"trainingInformationItems","list":true,"fields":[{"type":"string","label":"Header","name":"header","namespace":["userGroupPage","contentPage","_body","TrainingInformation","trainingInformationItems","header"]},{"type":"rich-text","label":"Body","name":"body","templates":[{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["userGroupPage","contentPage","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["userGroupPage","contentPage","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["userGroupPage","contentPage","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["userGroupPage","contentPage","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["userGroupPage","contentPage","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","afterBody"]}],"namespace":["userGroupPage","contentPage","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem"]},{"label":"Recurring Event","name":"RecurringEvent","ui":{"previewSrc":"/images/thumbs/tina/recurring-event.jpg"},"fields":[{"type":"string","label":"Apply Link Redirect","name":"applyLinkRedirect","namespace":["userGroupPage","contentPage","_body","TrainingInformation","trainingInformationItems","body","RecurringEvent","applyLinkRedirect"]},{"type":"string","label":"Day","name":"day","options":[{"label":"Monday","value":"monday"},{"label":"Tuesday","value":"tuesday"},{"label":"Wednesday","value":"wednesday"},{"label":"Thursday","value":"thursday"},{"label":"Friday","value":"friday"},{"label":"Saturday","value":"saturday"},{"label":"Sunday","value":"sunday"}],"required":true,"namespace":["userGroupPage","contentPage","_body","TrainingInformation","trainingInformationItems","body","RecurringEvent","day"]}],"namespace":["userGroupPage","contentPage","_body","TrainingInformation","trainingInformationItems","body","RecurringEvent"]}],"namespace":["userGroupPage","contentPage","_body","TrainingInformation","trainingInformationItems","body"]}],"namespace":["training","footer","TrainingInformation","trainingInformationItems"],"searchable":true,"uid":false}],"namespace":["training","footer","TrainingInformation"]},{"label":"Training Learning Outcomes","name":"TrainingLearningOutcome","ui":{"previewSrc":"/images/thumbs/tina/training-learning-outcomes.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["training","footer","TrainingLearningOutcome","header"],"searchable":true,"uid":false},{"type":"object","label":"List Items","name":"listItems","list":true,"fields":[{"type":"string","label":"Title","name":"title","namespace":["userGroupPage","contentPage","_body","TrainingLearningOutcome","listItems","title"]},{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["userGroupPage","contentPage","_body","TrainingLearningOutcome","listItems","content"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","TrainingLearningOutcome","listItems","icon","uploadDir"]},"namespace":["userGroupPage","contentPage","_body","TrainingLearningOutcome","listItems","icon"]}],"namespace":["training","footer","TrainingLearningOutcome","listItems"],"searchable":true,"uid":false}],"namespace":["training","footer","TrainingLearningOutcome"]},{"label":"Tweet Embed","name":"TweetEmbed","ui":{"previewSrc":"/images/thumbs/tina/tweet-embed.jpg"},"fields":[{"type":"string","name":"url","label":"Tweet URL","required":true,"namespace":["training","footer","TweetEmbed","url"],"searchable":true,"uid":false}],"namespace":["training","footer","TweetEmbed"]},{"name":"UpcomingEvents","label":"Upcoming Events","ui":{"previewSrc":"/images/thumbs/tina/upcoming-events.jpg","defaultItem":{"title":"Upcoming Events","numberOfEvents":30}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["training","footer","UpcomingEvents","title"],"searchable":true,"uid":false},{"type":"number","label":"Number of Events","name":"numberOfEvents","namespace":["training","footer","UpcomingEvents","numberOfEvents"],"searchable":true,"uid":false}],"namespace":["training","footer","UpcomingEvents"]},{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["training","footer","UtilityButton","buttonText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"link","required":false,"namespace":["training","footer","UtilityButton","link"],"searchable":true,"uid":false},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["training","footer","UtilityButton","size"],"searchable":true,"uid":false},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["training","footer","UtilityButton","btnIcon"],"searchable":true,"uid":false},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["training","footer","UtilityButton","animated"],"searchable":true,"uid":false},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["training","footer","UtilityButton","uncentered"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["training","footer","UtilityButton","removeTopMargin"],"searchable":true,"uid":false},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["training","footer","UtilityButton","openInNewTab"],"searchable":true,"uid":false}],"namespace":["training","footer","UtilityButton"]},{"name":"VerticalImageLayout","label":"Vertical Image Layout","fields":[{"type":"image","label":"Image","name":"imageSrc","uploadDir":{"namespace":["page","beforeBody","VerticalImageLayout","imageSrc","uploadDir"]},"namespace":["training","footer","VerticalImageLayout","imageSrc"],"searchable":false,"uid":false},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["training","footer","VerticalImageLayout","altText"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"imageLink","namespace":["training","footer","VerticalImageLayout","imageLink"],"searchable":true,"uid":false},{"type":"number","label":"Height","name":"height","required":true,"namespace":["training","footer","VerticalImageLayout","height"],"searchable":true,"uid":false},{"type":"number","label":"Width","name":"width","required":true,"namespace":["training","footer","VerticalImageLayout","width"],"searchable":true,"uid":false},{"type":"rich-text","label":"Message","name":"message","required":true,"namespace":["training","footer","VerticalImageLayout","message"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["training","footer","VerticalImageLayout","sizes"],"searchable":true,"uid":false}],"namespace":["training","footer","VerticalImageLayout"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["training","footer","VerticalListItem","content"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"number","label":"Index number","name":"index","namespace":["training","footer","VerticalListItem","index"],"searchable":true,"uid":false},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["training","footer","VerticalListItem","icon"],"searchable":false,"uid":false},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["training","footer","VerticalListItem","iconScale"],"searchable":true,"uid":false},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["training","footer","VerticalListItem","afterBody"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["training","footer","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["training","footer","VideoEmbed","url"],"searchable":true,"uid":false},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["training","footer","VideoEmbed","videoWidth"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["training","footer","VideoEmbed","removeMargin"],"searchable":true,"uid":false},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["training","footer","VideoEmbed","uncentre"],"searchable":true,"uid":false},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["training","footer","VideoEmbed","overflow"],"searchable":true,"uid":false},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["training","footer","VideoEmbed","caption"],"searchable":true,"uid":false},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["training","footer","VideoEmbed","duration"],"searchable":true,"uid":false}],"namespace":["training","footer","VideoEmbed"]},{"name":"InlineJotForm","label":"In-line JotForm","ui":{"previewSrc":"/images/thumbs/tina/inline-jot-form.jpg"},"fields":[{"type":"string","name":"title","label":"Title","description":"Optional title for JotForm","namespace":["training","footer","InlineJotForm","title"],"searchable":true,"uid":false},{"type":"string","name":"jotFormId","label":"JotForm ID","required":true,"namespace":["training","footer","InlineJotForm","jotFormId"],"searchable":true,"uid":false},{"type":"string","name":"additionalClasses","label":"Additional classnames","description":"Optional styling for iframe element only","namespace":["training","footer","InlineJotForm","additionalClasses"],"searchable":true,"uid":false}],"namespace":["training","footer","InlineJotForm"]}],"namespace":["training","footer"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"object","label":"Videos","name":"videos","fields":[{"type":"string","label":"Channel Link","name":"channelLink","namespace":["training","videos","channelLink"],"searchable":true,"uid":false},{"type":"object","label":"Video Cards","name":"videoCards","list":true,"fields":[{"type":"string","label":"Title","name":"title","namespace":["training","videos","videoCards","title"],"searchable":true,"uid":false},{"type":"string","label":"Link","name":"link","namespace":["training","videos","videoCards","link"],"searchable":true,"uid":false}],"namespace":["training","videos","videoCards"],"searchable":true,"uid":false}],"namespace":["training","videos"],"searchable":true,"uid":false}],"namespace":["training"]},{"label":"User Groups - Pages","name":"userGroupPage","format":"mdx","path":"content/netug","match":{"exclude":"global/**/**"},"ui":{},"description":"Some of the content on this page comes from SharePoint, if you wish to edit that content please contact the marketing team (i.e. Camilla or Seth).","templates":[{"name":"locationPage","label":"Location User Group Page","fields":[{"type":"string","name":"tip","label":"Tip","ui":{},"namespace":["userGroupPage","locationPage","tip"],"searchable":true,"uid":false},{"type":"object","label":"SEO Values","name":"seo","fields":[{"type":"string","label":"Title (70 characters)","name":"title","ui":{},"namespace":["userGroupPage","locationPage","seo","title"]},{"type":"string","label":"Description (150 characters)","name":"description","component":"textarea","ui":{},"namespace":["userGroupPage","locationPage","seo","description"]},{"type":"string","label":"Canonical URL","name":"canonical","namespace":["userGroupPage","locationPage","seo","canonical"]},{"type":"boolean","name":"showBreadcrumb","label":"Show Breadcrumb","namespace":["userGroupPage","locationPage","seo","showBreadcrumb"]},{"label":"Images","name":"images","list":true,"type":"object","ui":{"defaultItem":{"url":"/images/ssw-default-og.jpg","width":1200,"height":630,"alt":"SSW Consulting - Enterprise Software Development"}},"fields":[{"type":"image","label":"Image Url","name":"url","require":true,"namespace":["userGroupPage","contentPage","seo","images","url"]},{"type":"number","label":"Width (px)","name":"width","namespace":["userGroupPage","contentPage","seo","images","width"]},{"type":"number","label":"Height (px)","name":"height","namespace":["userGroupPage","contentPage","seo","images","height"]},{"type":"string","label":"Image Alt Text","name":"alt","namespace":["userGroupPage","contentPage","seo","images","alt"]}],"namespace":["userGroupPage","locationPage","seo","images"]}],"namespace":["userGroupPage","locationPage","seo"],"searchable":true,"uid":false},{"type":"string","label":"Register URL","name":"registerUrl","namespace":["userGroupPage","locationPage","registerUrl"],"searchable":true,"uid":false},{"type":"string","label":"Title","name":"title","namespace":["userGroupPage","locationPage","title"],"searchable":true,"uid":false},{"type":"object","label":"Join GitHub Panel","name":"joinGithub","fields":[{"label":"Title","name":"title","type":"string","namespace":["userGroupPage","locationPage","joinGithub","title"]},{"label":"Join Github Link","name":"link","type":"string","namespace":["userGroupPage","locationPage","joinGithub","link"]}],"namespace":["userGroupPage","locationPage","joinGithub"],"searchable":true,"uid":false},{"type":"object","label":"When & Where Panel","name":"whenAndWhere","fields":[{"type":"rich-text","label":"Content","name":"content","namespace":["userGroupPage","locationPage","whenAndWhere","content"]},{"type":"string","label":"Google Maps Embed URL","name":"googleMapsEmbedUrl","namespace":["userGroupPage","locationPage","whenAndWhere","googleMapsEmbedUrl"]}],"namespace":["userGroupPage","locationPage","whenAndWhere"],"searchable":true,"uid":false},{"type":"object","label":"Agenda Panel","name":"agenda","fields":[{"type":"string","label":"Time","name":"time","namespace":["userGroupPage","locationPage","agenda","time"]},{"type":"string","label":"Label","name":"label","namespace":["userGroupPage","locationPage","agenda","label"]}],"ui":{},"list":true,"namespace":["userGroupPage","locationPage","agenda"],"searchable":true,"uid":false},{"type":"object","label":"Organizer Panel","name":"organizer","fields":[{"type":"string","label":"Name","name":"name","namespace":["userGroupPage","locationPage","organizer","name"]},{"type":"string","label":"Position","name":"position","namespace":["userGroupPage","locationPage","organizer","position"]},{"type":"string","label":"Name URL","name":"nameUrl","namespace":["userGroupPage","locationPage","organizer","nameUrl"]},{"type":"image","label":"Organizer Image","name":"profileImg","uploadDir":{"namespace":["userGroupPage","locationPage","organizer","profileImg","uploadDir"]},"namespace":["userGroupPage","locationPage","organizer","profileImg"]},{"type":"rich-text","label":"Organizer Bio","name":"bio","namespace":["userGroupPage","locationPage","organizer","bio"]}],"namespace":["userGroupPage","locationPage","organizer"],"searchable":true,"uid":false},{"type":"object","label":"Latest Tech","name":"latestTech","fields":[{"type":"reference","description":"Select a config file including a set of badges","collections":["userGroupGlobal"],"label":"Badges","name":"badges","namespace":["userGroupPage","locationPage","latestTech","badges"]}],"namespace":["userGroupPage","locationPage","latestTech"],"searchable":true,"uid":false},{"type":"object","list":true,"name":"sections","label":"Sections","templates":[{"name":"ActionSection","label":"Action Section","fields":[{"type":"string","label":"Heading","name":"heading","namespace":["userGroupPage","locationPage","sections","ActionSection","heading"]},{"type":"rich-text","label":"Content","name":"content","namespace":["userGroupPage","locationPage","sections","ActionSection","content"]},{"type":"object","label":"List Items","name":"listItems","list":true,"fields":[{"type":"string","label":"Icon","name":"icon","options":[{"value":"graduation","label":"Graduation Cap"},{"value":"messages","label":"Messages Square"},{"value":"smile","label":"Smile"},{"value":"pizza","label":"Pizza"}],"namespace":["userGroupPage","locationPage","sections","ActionSection","listItems","icon"]},{"type":"string","label":"Text","name":"text","namespace":["userGroupPage","locationPage","sections","ActionSection","listItems","text"]}],"ui":{},"namespace":["userGroupPage","locationPage","sections","ActionSection","listItems"]},{"type":"string","label":"Meetup Title","name":"meetupTitle","description":"DEFAULT: 'Get your free ticket'","namespace":["userGroupPage","locationPage","sections","ActionSection","meetupTitle"]},{"type":"string","label":"Meetup Button","name":"meetupBtnText","description":"DEFAULT: 'Get your free ticket', Meetup Url is coming from the Register URL, it cannot be changed here","namespace":["userGroupPage","locationPage","sections","ActionSection","meetupBtnText"]},{"type":"image","label":"Event Sponsors","name":"eventSponsors","uploadDir":{"namespace":["userGroupPage","locationPage","sections","ActionSection","eventSponsors","uploadDir"]},"list":true,"namespace":["userGroupPage","locationPage","sections","ActionSection","eventSponsors"]}],"namespace":["userGroupPage","locationPage","sections","ActionSection"]},{"name":"CommunitySection","label":"Community Section","fields":[{"type":"string","label":"Heading","name":"heading","namespace":["userGroupPage","locationPage","sections","CommunitySection","heading"]},{"type":"string","label":"Twitter Username","name":"twitterUsername","namespace":["userGroupPage","locationPage","sections","CommunitySection","twitterUsername"]},{"type":"string","label":"Facebook Username","name":"facebookUsername","namespace":["userGroupPage","locationPage","sections","CommunitySection","facebookUsername"]},{"type":"object","list":true,"label":"Social Buttons","name":"socialButtons","fields":[{"type":"string","label":"URL","name":"url","namespace":["userGroupPage","locationPage","sections","CommunitySection","socialButtons","url"]},{"type":"string","label":"Label","name":"label","namespace":["userGroupPage","locationPage","sections","CommunitySection","socialButtons","label"]},{"type":"string","label":"Platform","name":"platform","options":[{"label":"facebook","value":"facebook"},{"label":"github","value":"github"},{"label":"linkedin","value":"linkedin"},{"label":"meetup","value":"meetup"}],"namespace":["userGroupPage","locationPage","sections","CommunitySection","socialButtons","platform"]}],"ui":{},"namespace":["userGroupPage","locationPage","sections","CommunitySection","socialButtons"]}],"namespace":["userGroupPage","locationPage","sections","CommunitySection"]},{"name":"VideosSection","label":"Videos Section","fields":[{"type":"reference","label":"Global User Group Info","name":"globalUserGroupInfo","collections":["userGroupGlobal"],"required":true,"namespace":["userGroupPage","locationPage","sections","VideosSection","globalUserGroupInfo"]}],"namespace":["userGroupPage","locationPage","sections","VideosSection"]}],"namespace":["userGroupPage","locationPage","sections"],"searchable":true,"uid":false},{"type":"string","label":"About Header","name":"aboutHeader","namespace":["userGroupPage","locationPage","aboutHeader"],"searchable":true,"uid":false},{"type":"rich-text","label":"About Content","name":"aboutContent","isBody":true,"namespace":["userGroupPage","locationPage","aboutContent"],"searchable":true,"parser":{"type":"mdx"},"uid":false},{"type":"reference","label":"Priority testimonial categories","name":"testimonialCategories","collections":["testimonialCategories"],"namespace":["userGroupPage","locationPage","testimonialCategories"],"searchable":true,"uid":false}],"namespace":["userGroupPage","locationPage"]},{"name":"contentPage","label":"Content User Group Page","fields":[{"type":"string","name":"tip","label":"Tip","ui":{},"namespace":["userGroupPage","contentPage","tip"],"searchable":true,"uid":false},{"type":"object","label":"SEO Values","name":"seo","fields":[{"type":"string","label":"Title (70 characters)","name":"title","ui":{},"namespace":["userGroupPage","contentPage","seo","title"]},{"type":"string","label":"Description (150 characters)","name":"description","component":"textarea","ui":{},"namespace":["userGroupPage","contentPage","seo","description"]},{"type":"string","label":"Canonical URL","name":"canonical","namespace":["userGroupPage","contentPage","seo","canonical"]},{"type":"boolean","name":"showBreadcrumb","label":"Show Breadcrumb","namespace":["userGroupPage","contentPage","seo","showBreadcrumb"]},{"label":"Images","name":"images","list":true,"type":"object","ui":{"defaultItem":{"url":"/images/ssw-default-og.jpg","width":1200,"height":630,"alt":"SSW Consulting - Enterprise Software Development"}},"fields":[{"type":"image","label":"Image Url","name":"url","require":true,"namespace":["userGroupPage","contentPage","seo","images","url"]},{"type":"number","label":"Width (px)","name":"width","namespace":["userGroupPage","contentPage","seo","images","width"]},{"type":"number","label":"Height (px)","name":"height","namespace":["userGroupPage","contentPage","seo","images","height"]},{"type":"string","label":"Image Alt Text","name":"alt","namespace":["userGroupPage","contentPage","seo","images","alt"]}],"namespace":["userGroupPage","contentPage","seo","images"]}],"namespace":["userGroupPage","contentPage","seo"],"searchable":true,"uid":false},{"type":"rich-text","name":"_body","label":"Body","isBody":true,"templates":[{"name":"AboutUs","label":"About Us","ui":{"previewSrc":"/images/thumbs/tina/about-us.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["userGroupPage","contentPage","_body","AboutUs","backgroundColor"]},{"type":"boolean","label":"Show Map","name":"showMap","required":false,"namespace":["userGroupPage","contentPage","_body","AboutUs","showMap"]}],"namespace":["userGroupPage","contentPage","_body","AboutUs"]},{"label":"Agenda","name":"Agenda","ui":{"previewSrc":"/images/thumbs/tina/agenda.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["userGroupPage","contentPage","_body","Agenda","header"]},{"type":"string","label":"Header Color","name":"textColor","options":[{"label":"Red","value":"red"},{"label":"Gray","value":"gray"},{"label":"Default","value":"default"}],"namespace":["userGroupPage","contentPage","_body","Agenda","textColor"]},{"type":"object","label":"Agenda Items","name":"agendaItemList","ui":{},"list":true,"fields":[{"type":"string","label":"Placeholder Text","name":"placeholder","namespace":["userGroupPage","contentPage","_body","Agenda","agendaItemList","placeholder"]},{"type":"rich-text","label":"Body","name":"body","templates":[{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["userGroupPage","contentPage","_body","Agenda","agendaItemList","body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["userGroupPage","contentPage","_body","Agenda","agendaItemList","body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["userGroupPage","contentPage","_body","Agenda","agendaItemList","body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["userGroupPage","contentPage","_body","Agenda","agendaItemList","body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["userGroupPage","contentPage","_body","Agenda","agendaItemList","body","VerticalListItem","afterBody"]}],"namespace":["userGroupPage","contentPage","_body","Agenda","agendaItemList","body","VerticalListItem"]}],"namespace":["userGroupPage","contentPage","_body","Agenda","agendaItemList","body"]}],"namespace":["userGroupPage","contentPage","_body","Agenda","agendaItemList"]}],"namespace":["userGroupPage","contentPage","_body","Agenda"]},{"label":"Agreement Form","name":"AgreementForm","ui":{"previewSrc":"/images/thumbs/tina/agreement-form.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["userGroupPage","contentPage","_body","AgreementForm","backgroundColor"]},{"type":"object","label":"Form fields","name":"fields","list":true,"fields":[{"type":"string","label":"ID","name":"id","required":true,"namespace":["userGroupPage","contentPage","_body","AgreementForm","fields","id"]},{"type":"string","label":"Label","name":"label","required":true,"namespace":["userGroupPage","contentPage","_body","AgreementForm","fields","label"]},{"type":"string","label":"Placeholder","name":"placeholder","namespace":["userGroupPage","contentPage","_body","AgreementForm","fields","placeholder"]},{"type":"boolean","label":"Resizeable","name":"resizeable","required":true,"namespace":["userGroupPage","contentPage","_body","AgreementForm","fields","resizeable"]}],"namespace":["userGroupPage","contentPage","_body","AgreementForm","fields"]}],"namespace":["userGroupPage","contentPage","_body","AgreementForm"]},{"label":"Interest Form","name":"InterestForm","ui":{"previewSrc":"/images/thumbs/tina/interest-form.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["userGroupPage","contentPage","_body","InterestForm","buttonText"]}],"namespace":["userGroupPage","contentPage","_body","InterestForm"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["userGroupPage","contentPage","_body","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["userGroupPage","contentPage","_body","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["userGroupPage","contentPage","_body","BookingButton","buttonSubtitle"]}],"namespace":["userGroupPage","contentPage","_body","BookingButton"]},{"name":"BuiltOnAzure","label":"Built on Azure","ui":{"previewSrc":"/images/thumbs/tina/built-on-azure.jpg"},"fields":[{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["userGroupPage","contentPage","_body","BuiltOnAzure","backgroundColor"]}],"namespace":["userGroupPage","contentPage","_body","BuiltOnAzure"]},{"name":"Carousel","label":"Carousel","ui":{"previewSrc":"/images/thumbs/tina/carousel.jpg"},"fields":[{"label":"Items","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Item description","link":"/","openIn":"sameWindow"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["userGroupPage","contentPage","_body","Carousel","items","label"]},{"type":"string","label":"URL","name":"link","description":"If link contains ssw.com.au, you can skip the full URL and just use the path. e.g. /services","namespace":["userGroupPage","contentPage","_body","Carousel","items","link"]},{"type":"string","label":"Open in","name":"openIn","description":"If it is external link, please select 'New window' option.","options":[{"label":"Same window","value":"sameWindow"},{"label":"Modal","value":"modal"},{"label":"New window","value":"newWindow"}],"namespace":["userGroupPage","contentPage","_body","Carousel","items","openIn"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","Carousel","items","imgSrc","uploadDir"]},"namespace":["userGroupPage","contentPage","_body","Carousel","items","imgSrc"]}],"namespace":["userGroupPage","contentPage","_body","Carousel","items"]},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["userGroupPage","contentPage","_body","Carousel","backgroundColor"]},{"type":"number","label":"Delay (Seconds)","name":"delay","required":true,"namespace":["userGroupPage","contentPage","_body","Carousel","delay"]},{"type":"boolean","label":"Show on mobile devices","name":"showOnMobileDevices","namespace":["userGroupPage","contentPage","_body","Carousel","showOnMobileDevices"]}],"namespace":["userGroupPage","contentPage","_body","Carousel"]},{"name":"Citation","label":"Citation","fields":[{"type":"string","label":"author","name":"author","namespace":["userGroupPage","contentPage","_body","Citation","author"]},{"type":"string","label":"article","name":"article","required":true,"namespace":["userGroupPage","contentPage","_body","Citation","article"]}],"namespace":["userGroupPage","contentPage","_body","Citation"]},{"label":"Client List","name":"ClientList","ui":{"previewSrc":"/images/thumbs/tina/clients-list.jpg"},"fields":[{"type":"object","name":"categories","label":"Categories","list":true,"fields":[{"type":"reference","name":"category","label":"Category","collections":["clientCategories"],"namespace":["userGroupPage","contentPage","_body","ClientList","categories","category"]}],"ui":{},"namespace":["userGroupPage","contentPage","_body","ClientList","categories"]},{"type":"object","name":"clients","label":"Clients list","list":true,"ui":{"previewSrc":"/images/thumbs/tina/clients-list.jpg"},"fields":[{"type":"string","name":"name","label":"Name","namespace":["userGroupPage","contentPage","_body","ClientList","clients","name"]},{"type":"image","name":"logo","label":"Logo","namespace":["userGroupPage","contentPage","_body","ClientList","clients","logo"]},{"type":"string","name":"logoUrl","label":"Logo URL","namespace":["userGroupPage","contentPage","_body","ClientList","clients","logoUrl"]},{"type":"rich-text","name":"content","label":"Content","templates":[{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","UtilityButton","openInNewTab"]}],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","UtilityButton"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","VideoEmbed","duration"]}],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","VideoEmbed"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","CustomImage","sizes"]}],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","CustomImage"]},{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","CustomImage","sizes"]}],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","VideoEmbed","duration"]}],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content","ColorBlock"]}],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard","content"]}],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content","ContentCard"]}],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","content"]},{"type":"string","name":"caseStudyUrl","label":"Case study URL","namespace":["userGroupPage","contentPage","_body","ClientList","clients","caseStudyUrl"]},{"type":"object","name":"categories","label":"Categories","list":true,"ui":{},"fields":[{"type":"reference","name":"category","label":"Category","collections":["clientCategories"],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","categories","category"]}],"namespace":["userGroupPage","contentPage","_body","ClientList","clients","categories"]}],"namespace":["userGroupPage","contentPage","_body","ClientList","clients"]}],"namespace":["userGroupPage","contentPage","_body","ClientList"]},{"name":"ClientLogos","label":"Client Logos","ui":{"previewSrc":"/images/thumbs/tina/client-logos.jpg"},"fields":[{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["userGroupPage","contentPage","_body","ClientLogos","altText"]}],"namespace":["userGroupPage","contentPage","_body","ClientLogos"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["userGroupPage","contentPage","_body","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["userGroupPage","contentPage","_body","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["userGroupPage","contentPage","_body","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["userGroupPage","contentPage","_body","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["userGroupPage","contentPage","_body","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["userGroupPage","contentPage","_body","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["userGroupPage","contentPage","_body","ColorBlock","colorRow","caption"]}],"namespace":["userGroupPage","contentPage","_body","ColorBlock","colorRow"]}],"namespace":["userGroupPage","contentPage","_body","ColorBlock"]},{"name":"ColorPalette","label":"Color Palette","ui":{"previewSrc":"/images/thumbs/tina/color-palette.jpg"},"fields":[{"type":"string","label":"Name","name":"name","namespace":["userGroupPage","contentPage","_body","ColorPalette","name"]}],"namespace":["userGroupPage","contentPage","_body","ColorPalette"]},{"name":"Content","label":"Content","ui":{"previewSrc":"/images/thumbs/tina/content.jpg","defaultItem":{"body":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["userGroupPage","contentPage","_body","Content","title"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["userGroupPage","contentPage","_body","Content","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["userGroupPage","contentPage","_body","Content","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["userGroupPage","contentPage","_body","Content","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["userGroupPage","contentPage","_body","Content","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["userGroupPage","contentPage","_body","Content","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["userGroupPage","contentPage","_body","Content","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["userGroupPage","contentPage","_body","Content","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["userGroupPage","contentPage","_body","Content","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["userGroupPage","contentPage","_body","Content","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["userGroupPage","contentPage","_body","Content","content","CustomImage","sizes"]}],"namespace":["userGroupPage","contentPage","_body","Content","content","CustomImage"]},{"name":"ClientLogos","label":"Client Logos","ui":{"previewSrc":"/images/thumbs/tina/client-logos.jpg"},"fields":[{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["userGroupPage","contentPage","_body","Content","content","ClientLogos","altText"]}],"namespace":["userGroupPage","contentPage","_body","Content","content","ClientLogos"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["userGroupPage","contentPage","_body","Content","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["userGroupPage","contentPage","_body","Content","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["userGroupPage","contentPage","_body","Content","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["userGroupPage","contentPage","_body","Content","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["userGroupPage","contentPage","_body","Content","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["userGroupPage","contentPage","_body","Content","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["userGroupPage","contentPage","_body","Content","content","VideoEmbed","duration"]}],"namespace":["userGroupPage","contentPage","_body","Content","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["userGroupPage","contentPage","_body","Content","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["userGroupPage","contentPage","_body","Content","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["userGroupPage","contentPage","_body","Content","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["userGroupPage","contentPage","_body","Content","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["userGroupPage","contentPage","_body","Content","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["userGroupPage","contentPage","_body","Content","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["userGroupPage","contentPage","_body","Content","content","ColorBlock","colorRow","caption"]}],"namespace":["userGroupPage","contentPage","_body","Content","content","ColorBlock","colorRow"]}],"namespace":["userGroupPage","contentPage","_body","Content","content","ColorBlock"]}],"namespace":["userGroupPage","contentPage","_body","Content","content"]},{"type":"string","label":"Container Padding","name":"paddingClass","options":["Mobile: No Padding","Mobile: No Top and Horizontal Padding"],"namespace":["userGroupPage","contentPage","_body","Content","paddingClass"]},{"type":"string","label":"Text size","name":"size","options":[{"label":"small","value":"sm"},{"label":"normal","value":"base"},{"label":"large","value":"lg"},{"label":"extra large","value":"xl"},{"label":"2x large","value":"2xl"}],"namespace":["userGroupPage","contentPage","_body","Content","size"]},{"type":"string","label":"Align","name":"align","options":[{"label":"Left","value":"left"},{"label":"Center","value":"center"},{"label":"Right","value":"right"}],"namespace":["userGroupPage","contentPage","_body","Content","align"]},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["userGroupPage","contentPage","_body","Content","backgroundColor"]}],"namespace":["userGroupPage","contentPage","_body","Content"]},{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["userGroupPage","contentPage","_body","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["userGroupPage","contentPage","_body","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["userGroupPage","contentPage","_body","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["userGroupPage","contentPage","_body","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["userGroupPage","contentPage","_body","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["userGroupPage","contentPage","_body","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["userGroupPage","contentPage","_body","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["userGroupPage","contentPage","_body","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["userGroupPage","contentPage","_body","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["userGroupPage","contentPage","_body","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["userGroupPage","contentPage","_body","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["userGroupPage","contentPage","_body","ContentCard","content","CustomImage","sizes"]}],"namespace":["userGroupPage","contentPage","_body","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["userGroupPage","contentPage","_body","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["userGroupPage","contentPage","_body","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["userGroupPage","contentPage","_body","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["userGroupPage","contentPage","_body","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["userGroupPage","contentPage","_body","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["userGroupPage","contentPage","_body","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["userGroupPage","contentPage","_body","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["userGroupPage","contentPage","_body","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["userGroupPage","contentPage","_body","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["userGroupPage","contentPage","_body","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["userGroupPage","contentPage","_body","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["userGroupPage","contentPage","_body","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["userGroupPage","contentPage","_body","ContentCard","content","VideoEmbed","duration"]}],"namespace":["userGroupPage","contentPage","_body","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["userGroupPage","contentPage","_body","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["userGroupPage","contentPage","_body","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["userGroupPage","contentPage","_body","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["userGroupPage","contentPage","_body","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["userGroupPage","contentPage","_body","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["userGroupPage","contentPage","_body","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["userGroupPage","contentPage","_body","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["userGroupPage","contentPage","_body","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["userGroupPage","contentPage","_body","ContentCard","content","ColorBlock"]}],"namespace":["userGroupPage","contentPage","_body","ContentCard","content"]}],"namespace":["userGroupPage","contentPage","_body","ContentCard"]},{"name":"CustomDownloadButton","label":"Custom Download Button","ui":{"previewSrc":"/images/thumbs/tina/custom-download-button.jpg"},"fields":[{"type":"string","label":"Text","name":"btnText","namespace":["userGroupPage","contentPage","_body","CustomDownloadButton","btnText"]},{"type":"string","label":"Link","name":"btnLink","namespace":["userGroupPage","contentPage","_body","CustomDownloadButton","btnLink"]}],"namespace":["userGroupPage","contentPage","_body","CustomDownloadButton"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["userGroupPage","contentPage","_body","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["userGroupPage","contentPage","_body","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["userGroupPage","contentPage","_body","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["userGroupPage","contentPage","_body","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["userGroupPage","contentPage","_body","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["userGroupPage","contentPage","_body","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["userGroupPage","contentPage","_body","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["userGroupPage","contentPage","_body","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["userGroupPage","contentPage","_body","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["userGroupPage","contentPage","_body","CustomImage","sizes"]}],"namespace":["userGroupPage","contentPage","_body","CustomImage"]},{"name":"DomainFromQuery","label":"Domain from query","ui":{"previewSrc":"/images/thumbs/tina/domain-from-query.jpg"},"fields":[{"name":"title","label":"Title","type":"string","description":"This is a H1 heading","namespace":["userGroupPage","contentPage","_body","DomainFromQuery","title"]},{"name":"showDomain","label":"Show domain name","type":"boolean","description":"Query param in URL must have key of 'domain'","namespace":["userGroupPage","contentPage","_body","DomainFromQuery","showDomain"]}],"namespace":["userGroupPage","contentPage","_body","DomainFromQuery"]},{"name":"DownloadBlock","label":"Download Block","ui":{"previewSrc":"/images/thumbs/tina/download-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["userGroupPage","contentPage","_body","DownloadBlock","title"]},{"type":"object","label":"Downloads","name":"downloads","ui":{},"list":true,"fields":[{"type":"string","label":"Header","name":"header","namespace":["userGroupPage","contentPage","_body","DownloadBlock","downloads","header"]},{"type":"image","label":"Image","name":"img","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","img","uploadDir"]},"namespace":["userGroupPage","contentPage","_body","DownloadBlock","downloads","img"]},{"type":"string","label":"Image Background","name":"imgBackground","options":["black","grey","white","darkgrey","darkgreen"],"namespace":["userGroupPage","contentPage","_body","DownloadBlock","downloads","imgBackground"]},{"type":"string","label":"First Link Text","name":"firstLinkText","description":"Defaults to PNG","namespace":["userGroupPage","contentPage","_body","DownloadBlock","downloads","firstLinkText"]},{"type":"image","label":"First Link","name":"firstLink","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","firstLink","uploadDir"]},"namespace":["userGroupPage","contentPage","_body","DownloadBlock","downloads","firstLink"]},{"type":"string","label":"Second Link Text","name":"secondLinkText","description":"Defaults to PDF","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","secondLinkText","uploadDir"]},"namespace":["userGroupPage","contentPage","_body","DownloadBlock","downloads","secondLinkText"]},{"type":"image","label":"Second Link","name":"secondLink","uploadDir":{"namespace":["page","beforeBody","DownloadBlock","downloads","secondLink","uploadDir"]},"namespace":["userGroupPage","contentPage","_body","DownloadBlock","downloads","secondLink"]}],"namespace":["userGroupPage","contentPage","_body","DownloadBlock","downloads"]},{"type":"boolean","label":"Bottom border","name":"bottomBorder","namespace":["userGroupPage","contentPage","_body","DownloadBlock","bottomBorder"]}],"namespace":["userGroupPage","contentPage","_body","DownloadBlock"]},{"name":"DynamicColumns","label":"Dynamic Column Layout","fields":[{"type":"rich-text","label":"Column text body","name":"colBody","required":true,"namespace":["userGroupPage","contentPage","_body","DynamicColumns","colBody"]},{"type":"number","label":"Number of columns","name":"colCount","required":true,"ui":{},"namespace":["userGroupPage","contentPage","_body","DynamicColumns","colCount"]}],"namespace":["userGroupPage","contentPage","_body","DynamicColumns"]},{"name":"EventBooking","label":"Events Booking","ui":{"previewSrc":"/images/thumbs/tina/events-booking.jpg"},"fields":[{"type":"number","label":"Duration (In Days)","name":"eventDurationInDays","required":true,"namespace":["userGroupPage","contentPage","_body","EventBooking","eventDurationInDays"]},{"type":"number","label":"Price","name":"price","required":true,"namespace":["userGroupPage","contentPage","_body","EventBooking","price"]},{"type":"number","label":"Discount Price","name":"discountPrice","namespace":["userGroupPage","contentPage","_body","EventBooking","discountPrice"]},{"type":"string","name":"gstText","label":"Select GST Option","options":["inc GST","+ GST"],"required":true,"namespace":["userGroupPage","contentPage","_body","EventBooking","gstText"]},{"type":"string","label":"Discount Note","name":"discountNote","namespace":["userGroupPage","contentPage","_body","EventBooking","discountNote"]},{"type":"object","label":"Event","name":"eventList","ui":{},"list":true,"fields":[{"type":"string","label":"City","name":"city","namespace":["userGroupPage","contentPage","_body","EventBooking","eventList","city"]},{"type":"datetime","label":"Start Date","name":"date","ui":{},"namespace":["userGroupPage","contentPage","_body","EventBooking","eventList","date"]},{"type":"string","label":"Booking URL","name":"bookingURL","namespace":["userGroupPage","contentPage","_body","EventBooking","eventList","bookingURL"]},{"type":"reference","label":"Location","name":"location","collections":["locations"],"namespace":["userGroupPage","contentPage","_body","EventBooking","eventList","location"]}],"namespace":["userGroupPage","contentPage","_body","EventBooking","eventList"]}],"namespace":["userGroupPage","contentPage","_body","EventBooking"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["userGroupPage","contentPage","_body","EventLink","content","Flag","country"]}],"namespace":["userGroupPage","contentPage","_body","EventLink","content","Flag"]}],"namespace":["userGroupPage","contentPage","_body","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["userGroupPage","contentPage","_body","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["userGroupPage","contentPage","_body","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["userGroupPage","contentPage","_body","EventLink","thumbnailAlt"]}],"namespace":["userGroupPage","contentPage","_body","EventLink"]},{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["userGroupPage","contentPage","_body","Flag","country"]}],"namespace":["userGroupPage","contentPage","_body","Flag"]},{"name":"FixedColumns","label":"Fixed Column Layout (2 columns)","ui":{"previewSrc":"/images/thumbs/tina/fixed-columns.jpg"},"fields":[{"type":"rich-text","label":"Header Section (Optional)","name":"headerSection","namespace":["userGroupPage","contentPage","_body","FixedColumns","headerSection"]},{"type":"rich-text","label":"First column text","name":"firstColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content","ColorBlock"]}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard","content"]}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","CustomImage","sizes"]}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","EventLink","content","Flag","country"]}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","EventLink","content","Flag"]}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","EventLink","thumbnailAlt"]}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody","EventLink"]}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","firstColBody"]},{"type":"rich-text","label":"Second column text","name":"secondColBody","required":true,"templates":[{"name":"ContentCard","label":"Content Card","ui":{"previewSrc":"/images/thumbs/tina/content-card.jpg","defaultItem":{"content":"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."}},"fields":[{"type":"boolean","label":"Prose","name":"prose","namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","prose"]},{"type":"boolean","label":"Centered Aligned Text","name":"centerAlignedText","namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","centerAlignedText"]},{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage","sizes"]}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","CustomImage"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem","afterBody"]}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed","duration"]}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","VideoEmbed"]},{"name":"ColorBlock","label":"Color block","ui":{"previewSrc":"/images/thumbs/tina/color-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","subTitle"]},{"type":"object","label":"Color Row","name":"colorRow","ui":{},"list":true,"fields":[{"type":"string","label":"First Color","name":"firstColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","firstColor"]},{"type":"string","label":"First color Text","name":"fText","namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","fText"]},{"type":"string","label":"Second Color","name":"secondColor","options":["#CC4141","#333333","#AAAAAA","#797979"],"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","secondColor"]},{"type":"string","label":"Text","name":"sText","namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","sText"]},{"type":"rich-text","label":"Caption","name":"caption","namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow","caption"]}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock","colorRow"]}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content","ColorBlock"]}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard","content"]}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","ContentCard"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","CustomImage","sizes"]}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","CustomImage"]},{"name":"EventLink","label":"Event Link","ui":{"previewSrc":"/images/thumbs/tina/event-link.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","templates":[{"name":"Flag","label":"Flag Image","ui":{"previewSrc":"/images/thumbs/tina/flag-image.jpg"},"fields":[{"type":"string","label":"Country","name":"country","options":["Australia","China","France"],"required":true,"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","EventLink","content","Flag","country"]}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","EventLink","content","Flag"]}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","EventLink","content"]},{"type":"string","label":"Link","name":"link","namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","EventLink","link"]},{"type":"image","label":"Thumbnail","name":"eventThumbnail","uploadDir":{"namespace":["page","beforeBody","EventLink","eventThumbnail","uploadDir"]},"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","EventLink","eventThumbnail"]},{"type":"string","label":"Thumbnail Alt Text","name":"thumbnailAlt","namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","EventLink","thumbnailAlt"]}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody","EventLink"]}],"namespace":["userGroupPage","contentPage","_body","FixedColumns","secondColBody"]}],"namespace":["userGroupPage","contentPage","_body","FixedColumns"]},{"name":"FixedTabsLayout","label":"Fixed Tabs Layout","ui":{"previewSrc":"/images/thumbs/tina/fixed-tabs-layout.jpg"},"fields":[{"type":"string","name":"firstTab","label":"First Tab","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstTab"]},{"type":"rich-text","name":"firstHeading","label":"First Heading","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","VideoEmbed","duration"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","BookingButton","buttonSubtitle"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList","skills"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","ExpertBlock","link","url"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","ExpertBlock","link"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","CustomImage","sizes"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading","CustomImage"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstHeading"]},{"type":"rich-text","name":"firstBody","label":"First Body","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","VideoEmbed","duration"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","BookingButton","buttonSubtitle"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList","skills"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","ExpertBlock","link","url"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","ExpertBlock","link"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","CustomImage","sizes"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody","CustomImage"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","firstBody"]},{"type":"string","name":"secondTab","label":"Second Tab","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondTab"]},{"type":"rich-text","name":"secondHeading","label":"Second Heading","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","VideoEmbed","duration"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","BookingButton","buttonSubtitle"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList","skills"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","ExpertBlock","link","url"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","ExpertBlock","link"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","CustomImage","sizes"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading","CustomImage"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondHeading"]},{"type":"rich-text","name":"secondBody","label":"Second Body","templates":[{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","VideoEmbed","duration"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","VideoEmbed"]},{"name":"BookingButton","label":"Booking Button","ui":{"previewSrc":"/images/thumbs/tina/booking-button.jpg","defaultItem":{"buttonText":"Book a FREE Initial Meeting","buttonSubtitle":"or call +61 2 9953 3000","animated":true}},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","BookingButton","buttonText"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","BookingButton","animated"]},{"type":"string","label":"Button Subtitle","name":"buttonSubtitle","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","BookingButton","buttonSubtitle"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","BookingButton"]},{"name":"ExpertBlock","label":"Expert Block","fields":[{"type":"string","label":"Header","name":"header","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","ExpertBlock","header"]},{"type":"object","label":"Expert List","name":"expertList","list":true,"ui":{},"fields":[{"type":"string","label":"Person","name":"person","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList","person"]},{"type":"image","label":"Profile Image","name":"profileImage","uploadDir":{"namespace":["page","beforeBody","FixedTabsLayout","firstHeading","ExpertBlock","expertList","profileImage","uploadDir"]},"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList","profileImage"]},{"type":"string","label":"People URL","name":"peopleURL","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList","peopleURL"]},{"type":"string","label":"Skills","name":"skills","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList","skills"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","ExpertBlock","expertList"]},{"type":"object","label":"Link","name":"link","fields":[{"type":"string","label":"Text","name":"text","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","ExpertBlock","link","text"]},{"type":"string","label":"URL","name":"url","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","ExpertBlock","link","url"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","ExpertBlock","link"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","ExpertBlock"]},{"name":"YoutubePlaylistBlock","label":"Youtube PlayList Block","fields":[{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","title"]},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistId"]},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","videosCount"]},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","text"]},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","link"]},{"type":"boolean","name":"animated","label":"Animated?","namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton","animated"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist","playlistButton"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock","youtubePlaylist"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","YoutubePlaylistBlock"]},{"name":"CustomImage","label":"Custom Image","ui":{"previewSrc":"/images/thumbs/tina/custom-image.jpg"},"fields":[{"type":"image","label":"Image","name":"src","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","CustomImage","src"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","CustomImage","altText"]},{"type":"string","label":"Alignment","name":"alignment","options":[{"label":"Left","value":"items-start"},{"label":"Center","value":"items-center"},{"label":"Right","value":"items-end"}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","CustomImage","alignment"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","CustomImage","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","CustomImage","width"]},{"type":"string","label":"Link (optional)","name":"link","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","CustomImage","link"]},{"type":"string","label":"Custom Class (optional)","name":"customClass","options":["none","Only mobile top margin (mt-6)","Top margin (mt-6)","Vertical margin (my-0)"],"required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","CustomImage","customClass"]},{"type":"string","label":"Caption (optional)","name":"caption","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","CustomImage","caption"]},{"type":"string","label":"Caption Color (optional)","name":"captionColor","required":false,"options":[{"label":"Black","value":"text-sswBlack"},{"label":"White","value":"text-white"}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","CustomImage","captionColor"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","CustomImage","sizes"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody","CustomImage"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout","secondBody"]}],"namespace":["userGroupPage","contentPage","_body","FixedTabsLayout"]},{"label":"Google Maps","name":"GoogleMaps","ui":{"previewSrc":"/images/thumbs/tina/google-maps.jpg"},"fields":[{"type":"string","label":"URL","name":"embedUrl","required":true,"namespace":["userGroupPage","contentPage","_body","GoogleMaps","embedUrl"]},{"type":"string","label":"Width","name":"embedWidth","namespace":["userGroupPage","contentPage","_body","GoogleMaps","embedWidth"]},{"type":"string","label":"Height","name":"embedHeight","namespace":["userGroupPage","contentPage","_body","GoogleMaps","embedHeight"]}],"namespace":["userGroupPage","contentPage","_body","GoogleMaps"]},{"label":"Grid Layout","name":"GridLayout","ui":{"previewSrc":"/images/thumbs/tina/grid-layout.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["userGroupPage","contentPage","_body","GridLayout","title"]},{"type":"object","list":true,"label":"Grid Items","name":"grids","ui":{},"fields":[{"type":"string","label":"Grid Title","name":"gridTitle","namespace":["userGroupPage","contentPage","_body","GridLayout","grids","gridTitle"]},{"type":"boolean","label":"Show Grid Title","name":"showGridTitle","namespace":["userGroupPage","contentPage","_body","GridLayout","grids","showGridTitle"]},{"type":"boolean","label":"Centered Grid Title","name":"centeredGridTitle","namespace":["userGroupPage","contentPage","_body","GridLayout","grids","centeredGridTitle"]},{"type":"boolean","label":"Show Header Divider","name":"showHeaderDivider","namespace":["userGroupPage","contentPage","_body","GridLayout","grids","showHeaderDivider"]},{"type":"boolean","label":"Offset Grid Start","name":"offsetGridStart","namespace":["userGroupPage","contentPage","_body","GridLayout","grids","offsetGridStart"]},{"type":"object","label":"Blocks","name":"blocks","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["userGroupPage","contentPage","_body","GridLayout","grids","blocks","title"]},{"type":"boolean","label":"Show Title","name":"showTitle","namespace":["userGroupPage","contentPage","_body","GridLayout","grids","blocks","showTitle"]},{"type":"image","label":"Image","name":"image","uploadDir":{"namespace":["page","beforeBody","GridLayout","grids","blocks","image","uploadDir"]},"namespace":["userGroupPage","contentPage","_body","GridLayout","grids","blocks","image"]},{"type":"image","label":"Related Image","name":"relatedImage","uploadDir":{"namespace":["page","beforeBody","GridLayout","grids","blocks","relatedImage","uploadDir"]},"namespace":["userGroupPage","contentPage","_body","GridLayout","grids","blocks","relatedImage"]},{"type":"rich-text","name":"linkContent","label":"Link Content","templates":[{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["userGroupPage","contentPage","_body","GridLayout","grids","blocks","linkContent","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["userGroupPage","contentPage","_body","GridLayout","grids","blocks","linkContent","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["userGroupPage","contentPage","_body","GridLayout","grids","blocks","linkContent","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["userGroupPage","contentPage","_body","GridLayout","grids","blocks","linkContent","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["userGroupPage","contentPage","_body","GridLayout","grids","blocks","linkContent","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["userGroupPage","contentPage","_body","GridLayout","grids","blocks","linkContent","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["userGroupPage","contentPage","_body","GridLayout","grids","blocks","linkContent","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["userGroupPage","contentPage","_body","GridLayout","grids","blocks","linkContent","UtilityButton","openInNewTab"]}],"namespace":["userGroupPage","contentPage","_body","GridLayout","grids","blocks","linkContent","UtilityButton"]}],"namespace":["userGroupPage","contentPage","_body","GridLayout","grids","blocks","linkContent"]}],"namespace":["userGroupPage","contentPage","_body","GridLayout","grids","blocks"]}],"namespace":["userGroupPage","contentPage","_body","GridLayout","grids"]}],"namespace":["userGroupPage","contentPage","_body","GridLayout"]},{"name":"Hero","label":"Hero","ui":{"previewSrc":"/blocks/hero.png","defaultItem":{"tagline":"Here's some text above the other text","headline":"This Big Text is Totally Awesome","text":"Phasellus scelerisque, libero eu finibus rutrum, risus risus accumsan libero, nec molestie urna dui a leo."}},"fields":[{"type":"string","label":"Tagline","name":"tagline","namespace":["userGroupPage","contentPage","_body","Hero","tagline"]},{"type":"string","label":"Headline","name":"headline","namespace":["userGroupPage","contentPage","_body","Hero","headline"]},{"label":"Text","name":"text","type":"rich-text","namespace":["userGroupPage","contentPage","_body","Hero","text"]},{"label":"Actions","name":"actions","type":"object","list":true,"ui":{"defaultItem":{"label":"Action Label","type":"button","icon":true,"link":"/"}},"fields":[{"label":"Label","name":"label","type":"string","namespace":["userGroupPage","contentPage","_body","Hero","actions","label"]},{"label":"Type","name":"type","type":"string","options":[{"label":"Button","value":"button"},{"label":"Link","value":"link"}],"namespace":["userGroupPage","contentPage","_body","Hero","actions","type"]},{"label":"Icon","name":"icon","type":"boolean","namespace":["userGroupPage","contentPage","_body","Hero","actions","icon"]},{"label":"Link","name":"link","type":"string","namespace":["userGroupPage","contentPage","_body","Hero","actions","link"]}],"namespace":["userGroupPage","contentPage","_body","Hero","actions"]},{"type":"object","label":"Image","name":"image","fields":[{"name":"src","label":"Image Source","type":"image","namespace":["userGroupPage","contentPage","_body","Hero","image","src"]},{"name":"alt","label":"Alt Text","type":"string","namespace":["userGroupPage","contentPage","_body","Hero","image","alt"]}],"namespace":["userGroupPage","contentPage","_body","Hero","image"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Default","value":"default"},{"label":"Tint","value":"tint"},{"label":"Primary","value":"primary"}],"namespace":["userGroupPage","contentPage","_body","Hero","color"]}],"namespace":["userGroupPage","contentPage","_body","Hero"]},{"name":"HorizontalCard","label":"Horizontal Card","ui":{"previewSrc":"/images/thumbs/tina/horizontal-card.jpg"},"fields":[{"type":"object","label":"Cards","name":"cardList","list":true,"ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["userGroupPage","contentPage","_body","HorizontalCard","cardList","title"]},{"type":"rich-text","label":"Content","name":"content","namespace":["userGroupPage","contentPage","_body","HorizontalCard","cardList","content"]},{"type":"image","label":"Thumbnail","name":"thumbnail","uploadDir":{"namespace":["page","beforeBody","HorizontalCard","cardList","thumbnail","uploadDir"]},"namespace":["userGroupPage","contentPage","_body","HorizontalCard","cardList","thumbnail"]},{"type":"string","label":"Link","name":"link","namespace":["userGroupPage","contentPage","_body","HorizontalCard","cardList","link"]}],"namespace":["userGroupPage","contentPage","_body","HorizontalCard","cardList"]},{"type":"object","label":"Button","name":"button","fields":[{"type":"string","label":"Text","name":"text","namespace":["userGroupPage","contentPage","_body","HorizontalCard","button","text"]},{"type":"string","label":"Link","name":"link","namespace":["userGroupPage","contentPage","_body","HorizontalCard","button","link"]}],"namespace":["userGroupPage","contentPage","_body","HorizontalCard","button"]}],"namespace":["userGroupPage","contentPage","_body","HorizontalCard"]},{"name":"InternalCarousel","label":"Internal Carousel","ui":{"previewSrc":"/images/thumbs/tina/internal-carousel.jpg"},"fields":[{"label":"Images","name":"items","type":"object","list":true,"ui":{"defaultItem":{"label":"Image description"}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["userGroupPage","contentPage","_body","InternalCarousel","items","label"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","InternalCarousel","items","imgSrc","uploadDir"]},"namespace":["userGroupPage","contentPage","_body","InternalCarousel","items","imgSrc"]}],"namespace":["userGroupPage","contentPage","_body","InternalCarousel","items"]},{"type":"string","label":"Header","name":"header","namespace":["userGroupPage","contentPage","_body","InternalCarousel","header"]},{"type":"rich-text","label":"Text","name":"paragraph","isBody":false,"namespace":["userGroupPage","contentPage","_body","InternalCarousel","paragraph"]},{"type":"string","label":"Website","name":"website","namespace":["userGroupPage","contentPage","_body","InternalCarousel","website"]},{"type":"object","label":"Technologies","name":"technologies","list":true,"ui":{},"fields":[{"type":"string","label":"Name","name":"name","namespace":["userGroupPage","contentPage","_body","InternalCarousel","technologies","name"]}],"namespace":["userGroupPage","contentPage","_body","InternalCarousel","technologies"]},{"type":"string","label":"Case Study","name":"caseStudyUrl","namespace":["userGroupPage","contentPage","_body","InternalCarousel","caseStudyUrl"]},{"type":"string","label":"Video URL","name":"videoUrl","namespace":["userGroupPage","contentPage","_body","InternalCarousel","videoUrl"]}],"namespace":["userGroupPage","contentPage","_body","InternalCarousel"]},{"label":"Join As Presenter","name":"joinAsPresenter","fields":[{"label":"Learn More Link","name":"link","type":"string","namespace":["userGroupPage","contentPage","_body","joinAsPresenter","link"]},{"label":"Image","name":"img","type":"image","namespace":["userGroupPage","contentPage","_body","joinAsPresenter","img"]}],"namespace":["userGroupPage","contentPage","_body","joinAsPresenter"]},{"label":"Join Github","name":"joinGithub","ui":{"previewSrc":"/images/thumbs/tina/join-github.jpg"},"fields":[{"label":"Title","name":"title","type":"string","namespace":["userGroupPage","contentPage","_body","joinGithub","title"]},{"label":"Join Github Link","name":"link","type":"string","namespace":["userGroupPage","contentPage","_body","joinGithub","link"]}],"namespace":["userGroupPage","contentPage","_body","joinGithub"]},{"name":"JotFormEmbed","label":"JotForm Embed","ui":{"previewSrc":"/images/thumbs/tina/jotform-embed.jpg"},"fields":[{"type":"string","name":"jotFormId","label":"JotForm Id","required":true,"namespace":["userGroupPage","contentPage","_body","JotFormEmbed","jotFormId"]},{"type":"string","label":"Button Text","name":"buttonText","namespace":["userGroupPage","contentPage","_body","JotFormEmbed","buttonText"]},{"type":"string","name":"containerClass","label":"Container Class","namespace":["userGroupPage","contentPage","_body","JotFormEmbed","containerClass"]},{"type":"string","label":"Button Class","name":"buttonClass","namespace":["userGroupPage","contentPage","_body","JotFormEmbed","buttonClass"]},{"type":"boolean","label":"Animated","name":"animated","namespace":["userGroupPage","contentPage","_body","JotFormEmbed","animated"]}],"namespace":["userGroupPage","contentPage","_body","JotFormEmbed"]},{"name":"LatestTech","label":"Latest Tech","ui":{"previewSrc":"/images/thumbs/tina/latest-tech.jpg"},"fields":[{"type":"reference","description":"Select a config file including a set of badges","collections":["userGroupGlobal"],"label":"Badges","name":"badges","namespace":["userGroupPage","contentPage","_body","LatestTech","badges"]}],"namespace":["userGroupPage","contentPage","_body","LatestTech"]},{"name":"LocationBlock","label":"Locations","ui":{"previewSrc":"/images/thumbs/tina/locations.jpg"},"fields":[{"type":"string","name":"title","label":"Title","namespace":["userGroupPage","contentPage","_body","LocationBlock","title"]},{"type":"object","label":"Location List","name":"locationList","list":true,"ui":{},"fields":[{"type":"reference","collections":["locations"],"label":"Location","name":"location","namespace":["userGroupPage","contentPage","_body","LocationBlock","locationList","location"]}],"namespace":["userGroupPage","contentPage","_body","LocationBlock","locationList"]},{"type":"object","name":"chapelWebsite","label":"Chapel Website","fields":[{"type":"string","name":"title","label":"Text","namespace":["userGroupPage","contentPage","_body","LocationBlock","chapelWebsite","title"]},{"type":"string","name":"URL","label":"URL","namespace":["userGroupPage","contentPage","_body","LocationBlock","chapelWebsite","URL"]}],"namespace":["userGroupPage","contentPage","_body","LocationBlock","chapelWebsite"]}],"namespace":["userGroupPage","contentPage","_body","LocationBlock"]},{"name":"NewslettersTable","label":"Newsletters Table","ui":{"previewSrc":"/images/thumbs/tina/newsletters-table.jpg"},"fields":[{"type":"string","label":"Header text","name":"headerText","namespace":["userGroupPage","contentPage","_body","NewslettersTable","headerText"]}],"namespace":["userGroupPage","contentPage","_body","NewslettersTable"]},{"label":"Organizer","name":"organizer","fields":[{"type":"image","label":"Profile Image","name":"profileImg","namespace":["userGroupPage","contentPage","_body","organizer","profileImg"]},{"type":"string","label":"Profile Link","name":"profileLink","namespace":["userGroupPage","contentPage","_body","organizer","profileLink"]},{"type":"string","label":"Name","name":"name","namespace":["userGroupPage","contentPage","_body","organizer","name"]},{"type":"string","label":"Position","name":"position","namespace":["userGroupPage","contentPage","_body","organizer","position"]},{"type":"rich-text","label":"Content","name":"content","namespace":["userGroupPage","contentPage","_body","organizer","content"]}],"namespace":["userGroupPage","contentPage","_body","organizer"]},{"label":"Payment Block","name":"paymentBlock","ui":{"previewSrc":"/images/thumbs/tina/payment-block.jpg"},"fields":[{"type":"string","label":"Title","name":"title","namespace":["userGroupPage","contentPage","_body","paymentBlock","title"]},{"type":"string","label":"Sub Title","name":"subTitle","namespace":["userGroupPage","contentPage","_body","paymentBlock","subTitle"]},{"type":"reference","label":"Payment Links","name":"payments","collections":["paymentDetails"],"namespace":["userGroupPage","contentPage","_body","paymentBlock","payments"]},{"type":"rich-text","label":"Footer","name":"footer","namespace":["userGroupPage","contentPage","_body","paymentBlock","footer"]},{"type":"image","label":"Credit Cards Image","name":"creditImgSrc","namespace":["userGroupPage","contentPage","_body","paymentBlock","creditImgSrc"]},{"type":"string","label":"Alt Text","name":"altTxt","namespace":["userGroupPage","contentPage","_body","paymentBlock","altTxt"]}],"namespace":["userGroupPage","contentPage","_body","paymentBlock"]},{"name":"PresenterBlock","label":"Presenters","ui":{"previewSrc":"/images/thumbs/tina/presenters.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["userGroupPage","contentPage","_body","PresenterBlock","header"]},{"type":"object","name":"presenterList","label":"Presenters","list":true,"ui":{},"fields":[{"type":"reference","name":"presenter","label":"Presenters","collections":["presenter"],"namespace":["userGroupPage","contentPage","_body","PresenterBlock","presenterList","presenter"]}],"namespace":["userGroupPage","contentPage","_body","PresenterBlock","presenterList"]},{"type":"object","label":"Other Events","name":"otherEvent","fields":[{"type":"string","label":"Title","name":"title","namespace":["userGroupPage","contentPage","_body","PresenterBlock","otherEvent","title"]},{"type":"string","label":"URL","name":"eventURL","namespace":["userGroupPage","contentPage","_body","PresenterBlock","otherEvent","eventURL"]}],"namespace":["userGroupPage","contentPage","_body","PresenterBlock","otherEvent"]}],"namespace":["userGroupPage","contentPage","_body","PresenterBlock"]},{"label":"Recurring Event","name":"RecurringEvent","ui":{"previewSrc":"/images/thumbs/tina/recurring-event.jpg"},"fields":[{"type":"string","label":"Apply Link Redirect","name":"applyLinkRedirect","namespace":["userGroupPage","contentPage","_body","RecurringEvent","applyLinkRedirect"]},{"type":"string","label":"Day","name":"day","options":[{"label":"Monday","value":"monday"},{"label":"Tuesday","value":"tuesday"},{"label":"Wednesday","value":"wednesday"},{"label":"Thursday","value":"thursday"},{"label":"Friday","value":"friday"},{"label":"Saturday","value":"saturday"},{"label":"Sunday","value":"sunday"}],"required":true,"namespace":["userGroupPage","contentPage","_body","RecurringEvent","day"]}],"namespace":["userGroupPage","contentPage","_body","RecurringEvent"]},{"name":"SectionHeader","label":"Section Header","ui":{"previewSrc":"/images/thumbs/tina/section-header.jpg"},"fields":[{"type":"string","label":"Header Text","name":"headerText","namespace":["userGroupPage","contentPage","_body","SectionHeader","headerText"]}],"namespace":["userGroupPage","contentPage","_body","SectionHeader"]},{"name":"ServiceCards","label":"Service Cards","ui":{"previewSrc":"/images/thumbs/tina/services-cards.jpg"},"fields":[{"type":"string","label":"Big Cards Label","name":"bigCardsLabel","namespace":["userGroupPage","contentPage","_body","ServiceCards","bigCardsLabel"]},{"label":"Big Cards","name":"bigCards","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["userGroupPage","contentPage","_body","ServiceCards","bigCards","title"]},{"type":"string","label":"Description","component":"textarea","name":"description","namespace":["userGroupPage","contentPage","_body","ServiceCards","bigCards","description"]},{"type":"string","label":"URL","name":"link","namespace":["userGroupPage","contentPage","_body","ServiceCards","bigCards","link"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Red","value":"red"},{"label":"Light Gray","value":"lightgray"},{"label":"Medium Gray","value":"mediumgray"},{"label":"Dark Gray","value":"darkgray"}],"namespace":["userGroupPage","contentPage","_body","ServiceCards","bigCards","color"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","ServiceCards","bigCards","imgSrc","uploadDir"]},"namespace":["userGroupPage","contentPage","_body","ServiceCards","bigCards","imgSrc"]}],"namespace":["userGroupPage","contentPage","_body","ServiceCards","bigCards"]},{"type":"string","label":"Small Cards Label","name":"smallCardsLabel","namespace":["userGroupPage","contentPage","_body","ServiceCards","smallCardsLabel"]},{"label":"Small Cards","name":"smallCards","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["userGroupPage","contentPage","_body","ServiceCards","smallCards","title"]},{"type":"string","label":"URL","name":"link","namespace":["userGroupPage","contentPage","_body","ServiceCards","smallCards","link"]},{"type":"string","label":"Color","name":"color","options":[{"label":"Red","value":"red"},{"label":"Light Gray","value":"lightgray"},{"label":"Medium Gray","value":"mediumgray"},{"label":"Dark Gray","value":"darkgray"}],"namespace":["userGroupPage","contentPage","_body","ServiceCards","smallCards","color"]},{"type":"image","label":"Image","name":"imgSrc","uploadDir":{"namespace":["page","beforeBody","ServiceCards","smallCards","imgSrc","uploadDir"]},"namespace":["userGroupPage","contentPage","_body","ServiceCards","smallCards","imgSrc"]},{"type":"boolean","label":"External Page","description":"Select this if the link is not part of the website. This includes SSW.Rules, and SSW.People links","name":"isExternal","namespace":["userGroupPage","contentPage","_body","ServiceCards","smallCards","isExternal"]}],"namespace":["userGroupPage","contentPage","_body","ServiceCards","smallCards"]},{"label":"Links","name":"links","type":"object","list":true,"ui":{"defaultItem":{}},"fields":[{"type":"string","label":"Label","name":"label","namespace":["userGroupPage","contentPage","_body","ServiceCards","links","label"]},{"type":"string","label":"URL","name":"link","namespace":["userGroupPage","contentPage","_body","ServiceCards","links","link"]}],"namespace":["userGroupPage","contentPage","_body","ServiceCards","links"]},{"type":"string","label":"Background Color","name":"backgroundColor","options":[{"label":"Default","value":"default"},{"label":"Light Gray","value":"lightgray"},{"label":"Red","value":"red"},{"label":"Black","value":"black"}],"namespace":["userGroupPage","contentPage","_body","ServiceCards","backgroundColor"]}],"namespace":["userGroupPage","contentPage","_body","ServiceCards"]},{"label":"Table Layout","name":"TableLayout","ui":{"previewSrc":"/images/thumbs/tina/table-layout.jpg"},"fields":[{"label":"Table Style","name":"tableStyle","type":"string","options":["none","basicBorder","styled","benefits"],"namespace":["userGroupPage","contentPage","_body","TableLayout","tableStyle"]},{"label":"First column bolded + left aligned","name":"firstColBold","type":"boolean","required":false,"namespace":["userGroupPage","contentPage","_body","TableLayout","firstColBold"]},{"type":"string","label":"Table Headers","name":"headers","list":true,"namespace":["userGroupPage","contentPage","_body","TableLayout","headers"]},{"type":"object","label":"Rows","name":"rows","list":true,"fields":[{"type":"object","label":"Cells","name":"cells","list":true,"fields":[{"type":"string","label":"Value","name":"cellValue","required":true,"component":{"namespace":["page","beforeBody","TableLayout","rows","cells","cellValue",""]},"namespace":["userGroupPage","contentPage","_body","TableLayout","rows","cells","cellValue"]}],"ui":{},"namespace":["userGroupPage","contentPage","_body","TableLayout","rows","cells"]},{"type":"boolean","label":"Is Heading","name":"isHeader","required":false,"namespace":["userGroupPage","contentPage","_body","TableLayout","rows","isHeader"]}],"ui":{},"namespace":["userGroupPage","contentPage","_body","TableLayout","rows"]}],"namespace":["userGroupPage","contentPage","_body","TableLayout"]},{"name":"TestimonialsList","label":"Testimonials List","ui":{"previewSrc":"/images/thumbs/tina/testimonials.jpg"},"fields":[{"type":"object","label":"Exclude Categories","name":"excludedCategories","ui":{},"list":true,"fields":[{"type":"reference","label":"Category Name","name":"categoryName","collections":["testimonialCategories"],"namespace":["userGroupPage","contentPage","_body","TestimonialsList","excludedCategories","categoryName"]}],"namespace":["userGroupPage","contentPage","_body","TestimonialsList","excludedCategories"]}],"namespace":["userGroupPage","contentPage","_body","TestimonialsList"]},{"label":"Training Information","name":"TrainingInformation","ui":{"previewSrc":"/images/thumbs/tina/training-information.jpg"},"fields":[{"type":"object","label":"Training Information Items","name":"trainingInformationItems","list":true,"fields":[{"type":"string","label":"Header","name":"header","namespace":["userGroupPage","contentPage","_body","TrainingInformation","trainingInformationItems","header"]},{"type":"rich-text","label":"Body","name":"body","templates":[{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["userGroupPage","contentPage","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["userGroupPage","contentPage","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["userGroupPage","contentPage","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["userGroupPage","contentPage","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["userGroupPage","contentPage","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem","afterBody"]}],"namespace":["userGroupPage","contentPage","_body","TrainingInformation","trainingInformationItems","body","VerticalListItem"]},{"label":"Recurring Event","name":"RecurringEvent","ui":{"previewSrc":"/images/thumbs/tina/recurring-event.jpg"},"fields":[{"type":"string","label":"Apply Link Redirect","name":"applyLinkRedirect","namespace":["userGroupPage","contentPage","_body","TrainingInformation","trainingInformationItems","body","RecurringEvent","applyLinkRedirect"]},{"type":"string","label":"Day","name":"day","options":[{"label":"Monday","value":"monday"},{"label":"Tuesday","value":"tuesday"},{"label":"Wednesday","value":"wednesday"},{"label":"Thursday","value":"thursday"},{"label":"Friday","value":"friday"},{"label":"Saturday","value":"saturday"},{"label":"Sunday","value":"sunday"}],"required":true,"namespace":["userGroupPage","contentPage","_body","TrainingInformation","trainingInformationItems","body","RecurringEvent","day"]}],"namespace":["userGroupPage","contentPage","_body","TrainingInformation","trainingInformationItems","body","RecurringEvent"]}],"namespace":["userGroupPage","contentPage","_body","TrainingInformation","trainingInformationItems","body"]}],"namespace":["userGroupPage","contentPage","_body","TrainingInformation","trainingInformationItems"]}],"namespace":["userGroupPage","contentPage","_body","TrainingInformation"]},{"label":"Training Learning Outcomes","name":"TrainingLearningOutcome","ui":{"previewSrc":"/images/thumbs/tina/training-learning-outcomes.jpg"},"fields":[{"type":"string","label":"Header","name":"header","namespace":["userGroupPage","contentPage","_body","TrainingLearningOutcome","header"]},{"type":"object","label":"List Items","name":"listItems","list":true,"fields":[{"type":"string","label":"Title","name":"title","namespace":["userGroupPage","contentPage","_body","TrainingLearningOutcome","listItems","title"]},{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["userGroupPage","contentPage","_body","TrainingLearningOutcome","listItems","content"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","TrainingLearningOutcome","listItems","icon","uploadDir"]},"namespace":["userGroupPage","contentPage","_body","TrainingLearningOutcome","listItems","icon"]}],"namespace":["userGroupPage","contentPage","_body","TrainingLearningOutcome","listItems"]}],"namespace":["userGroupPage","contentPage","_body","TrainingLearningOutcome"]},{"label":"Tweet Embed","name":"TweetEmbed","ui":{"previewSrc":"/images/thumbs/tina/tweet-embed.jpg"},"fields":[{"type":"string","name":"url","label":"Tweet URL","required":true,"namespace":["userGroupPage","contentPage","_body","TweetEmbed","url"]}],"namespace":["userGroupPage","contentPage","_body","TweetEmbed"]},{"name":"UpcomingEvents","label":"Upcoming Events","ui":{"previewSrc":"/images/thumbs/tina/upcoming-events.jpg","defaultItem":{"title":"Upcoming Events","numberOfEvents":30}},"fields":[{"type":"string","label":"Title","name":"title","namespace":["userGroupPage","contentPage","_body","UpcomingEvents","title"]},{"type":"number","label":"Number of Events","name":"numberOfEvents","namespace":["userGroupPage","contentPage","_body","UpcomingEvents","numberOfEvents"]}],"namespace":["userGroupPage","contentPage","_body","UpcomingEvents"]},{"name":"UtilityButton","label":"Utility Button","ui":{"previewSrc":"/images/thumbs/tina/utility-button.jpg"},"fields":[{"type":"string","label":"Button Text","name":"buttonText","required":false,"isBody":true,"namespace":["userGroupPage","contentPage","_body","UtilityButton","buttonText"]},{"type":"string","label":"Link","name":"link","required":false,"namespace":["userGroupPage","contentPage","_body","UtilityButton","link"]},{"type":"string","label":"Size","name":"size","required":false,"options":["small","medium"],"namespace":["userGroupPage","contentPage","_body","UtilityButton","size"]},{"type":"string","label":"Icon","name":"btnIcon","required":false,"options":["BsArrowRightCircle","BsArrowLeftCircle"],"namespace":["userGroupPage","contentPage","_body","UtilityButton","btnIcon"]},{"type":"boolean","label":"Animated","name":"animated","required":false,"namespace":["userGroupPage","contentPage","_body","UtilityButton","animated"]},{"type":"boolean","label":"Uncentered","name":"uncentered","required":false,"namespace":["userGroupPage","contentPage","_body","UtilityButton","uncentered"]},{"type":"boolean","label":"Remove top margin","name":"removeTopMargin","required":false,"namespace":["userGroupPage","contentPage","_body","UtilityButton","removeTopMargin"]},{"type":"boolean","label":"Open in new tab","name":"openInNewTab","required":false,"namespace":["userGroupPage","contentPage","_body","UtilityButton","openInNewTab"]}],"namespace":["userGroupPage","contentPage","_body","UtilityButton"]},{"name":"VerticalImageLayout","label":"Vertical Image Layout","fields":[{"type":"image","label":"Image","name":"imageSrc","uploadDir":{"namespace":["page","beforeBody","VerticalImageLayout","imageSrc","uploadDir"]},"namespace":["userGroupPage","contentPage","_body","VerticalImageLayout","imageSrc"]},{"type":"string","label":"Alt text","name":"altText","required":true,"namespace":["userGroupPage","contentPage","_body","VerticalImageLayout","altText"]},{"type":"string","label":"Link","name":"imageLink","namespace":["userGroupPage","contentPage","_body","VerticalImageLayout","imageLink"]},{"type":"number","label":"Height","name":"height","required":true,"namespace":["userGroupPage","contentPage","_body","VerticalImageLayout","height"]},{"type":"number","label":"Width","name":"width","required":true,"namespace":["userGroupPage","contentPage","_body","VerticalImageLayout","width"]},{"type":"rich-text","label":"Message","name":"message","required":true,"namespace":["userGroupPage","contentPage","_body","VerticalImageLayout","message"]},{"type":"string","name":"sizes","label":"Sizes - Advanced (optional)","description":"See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes or https://nextjs.org/docs/pages/api-reference/components/image#sizes for more info","required":false,"namespace":["userGroupPage","contentPage","_body","VerticalImageLayout","sizes"]}],"namespace":["userGroupPage","contentPage","_body","VerticalImageLayout"]},{"label":"List Item","name":"VerticalListItem","ui":{"previewSrc":"/images/thumbs/tina/vertical-list-item.jpg"},"fields":[{"type":"rich-text","label":"Content","name":"content","isBody":true,"namespace":["userGroupPage","contentPage","_body","VerticalListItem","content"]},{"type":"number","label":"Index number","name":"index","namespace":["userGroupPage","contentPage","_body","VerticalListItem","index"]},{"type":"image","label":"Icon","name":"icon","uploadDir":{"namespace":["page","beforeBody","Agenda","agendaItemList","body","VerticalListItem","icon","uploadDir"]},"namespace":["userGroupPage","contentPage","_body","VerticalListItem","icon"]},{"type":"number","label":"Icon Scale","name":"iconScale","namespace":["userGroupPage","contentPage","_body","VerticalListItem","iconScale"]},{"type":"rich-text","label":"After Body","name":"afterBody","required":false,"namespace":["userGroupPage","contentPage","_body","VerticalListItem","afterBody"]}],"namespace":["userGroupPage","contentPage","_body","VerticalListItem"]},{"name":"VideoEmbed","label":"Video Embed","ui":{"previewSrc":"/blocks/videoEmbedContent.png"},"fields":[{"type":"string","label":"Video URL","name":"url","description":"Only YouTube and Vimeo URLs are supported. To embed videos from other sources, please raise an issue","required":true,"namespace":["userGroupPage","contentPage","_body","VideoEmbed","url"]},{"type":"string","label":"Width","description":"Default is 75%","name":"videoWidth","required":false,"options":[{"value":"w-full","label":"100%"},{"value":"w-3/4","label":"75%"},{"value":"w-1/2","label":"50%"},{"value":"w-1/4","label":"25%"}],"namespace":["userGroupPage","contentPage","_body","VideoEmbed","videoWidth"]},{"type":"boolean","label":"Remove margin","name":"removeMargin","required":false,"namespace":["userGroupPage","contentPage","_body","VideoEmbed","removeMargin"]},{"type":"boolean","label":"Remove centre alignment","name":"uncentre","namespace":["userGroupPage","contentPage","_body","VideoEmbed","uncentre"]},{"type":"boolean","label":"Overflow - read more at tailwindcss.com/docs/overflow","name":"overflow","required":false,"namespace":["userGroupPage","contentPage","_body","VideoEmbed","overflow"]},{"type":"string","label":"Caption","name":"caption","description":"Shows up under the video as 'Video: {{ YOUR_INPUT }} ( {{ YOUR_DURATION }} )'. This adheres to https://www.ssw.com.au/rules/add-useful-and-concise-figure-captions/","required":false,"namespace":["userGroupPage","contentPage","_body","VideoEmbed","caption"]},{"type":"string","label":"Duration","name":"duration","description":"See caption description","namespace":["userGroupPage","contentPage","_body","VideoEmbed","duration"]}],"namespace":["userGroupPage","contentPage","_body","VideoEmbed"]},{"name":"InlineJotForm","label":"In-line JotForm","ui":{"previewSrc":"/images/thumbs/tina/inline-jot-form.jpg"},"fields":[{"type":"string","name":"title","label":"Title","description":"Optional title for JotForm","namespace":["userGroupPage","contentPage","_body","InlineJotForm","title"]},{"type":"string","name":"jotFormId","label":"JotForm ID","required":true,"namespace":["userGroupPage","contentPage","_body","InlineJotForm","jotFormId"]},{"type":"string","name":"additionalClasses","label":"Additional classnames","description":"Optional styling for iframe element only","namespace":["userGroupPage","contentPage","_body","InlineJotForm","additionalClasses"]}],"namespace":["userGroupPage","contentPage","_body","InlineJotForm"]}],"namespace":["userGroupPage","contentPage","_body"],"searchable":true,"parser":{"type":"mdx"},"uid":false}],"namespace":["userGroupPage","contentPage"]}],"namespace":["userGroupPage"]},{"label":"User Groups - Sections","name":"userGroupGlobal","format":"json","path":"content/netug/global","ui":{"allowedActions":{"create":false,"delete":false}},"fields":[{"type":"string","label":"Latest Tech Title","name":"latestTechTitle","namespace":["userGroupGlobal","latestTechTitle"],"searchable":true,"uid":false},{"type":"object","label":"Latest Technology Badges","name":"latestTechBadges","fields":[{"type":"boolean","label":"Randomize","name":"random","namespace":["userGroupGlobal","latestTechBadges","random"],"searchable":true,"uid":false},{"type":"object","label":"Badges","name":"badgesList","list":true,"ui":{},"fields":[{"type":"string","label":"Name","name":"name","isTitle":true,"required":true,"namespace":["userGroupGlobal","latestTechBadges","badgesList","name"],"searchable":true,"uid":false},{"type":"string","label":"URL","name":"url","namespace":["userGroupGlobal","latestTechBadges","badgesList","url"],"searchable":true,"uid":false},{"type":"image","label":"Badge image","name":"imgURL","required":true,"uploadDir":{"namespace":["userGroupGlobal","latestTechBadges","badgesList","imgURL","uploadDir"]},"namespace":["userGroupGlobal","latestTechBadges","badgesList","imgURL"],"searchable":false,"uid":false},{"type":"number","label":"Badge image rotation","name":"rotate","namespace":["userGroupGlobal","latestTechBadges","badgesList","rotate"],"searchable":true,"uid":false},{"type":"number","label":"Animation duration","name":"duration","namespace":["userGroupGlobal","latestTechBadges","badgesList","duration"],"searchable":true,"uid":false},{"type":"boolean","label":"Bounce down","name":"bounceDown","namespace":["userGroupGlobal","latestTechBadges","badgesList","bounceDown"],"searchable":true,"uid":false}],"namespace":["userGroupGlobal","latestTechBadges","badgesList"],"searchable":true,"uid":false}],"namespace":["userGroupGlobal","latestTechBadges"],"searchable":true,"uid":false},{"type":"object","label":"Youtube Playlist","name":"youtubePlaylist","ui":{},"fields":[{"type":"string","label":"Title","name":"title","namespace":["userGroupGlobal","youtubePlaylist","title"],"searchable":true,"uid":false},{"type":"string","label":"Playlist Id","name":"playlistId","required":true,"namespace":["userGroupGlobal","youtubePlaylist","playlistId"],"searchable":true,"uid":false},{"type":"number","label":"Videos Count","name":"videosCount","required":true,"namespace":["userGroupGlobal","youtubePlaylist","videosCount"],"searchable":true,"uid":false},{"type":"object","label":"Playlist Button","name":"playlistButton","fields":[{"type":"string","name":"text","label":"Text","namespace":["userGroupGlobal","youtubePlaylist","playlistButton","text"],"searchable":true,"uid":false},{"type":"string","name":"link","label":"Link","description":"DEFAULT: PlaylistId.","namespace":["userGroupGlobal","youtubePlaylist","playlistButton","link"],"searchable":true,"uid":false},{"type":"boolean","name":"animated","label":"Animated?","namespace":["userGroupGlobal","youtubePlaylist","playlistButton","animated"],"searchable":true,"uid":false}],"namespace":["userGroupGlobal","youtubePlaylist","playlistButton"],"searchable":true,"uid":false}],"namespace":["userGroupGlobal","youtubePlaylist"],"searchable":true,"uid":false},{"type":"object","label":"Join Us Panel","name":"joinUs","fields":[{"label":"Learn More Link","name":"link","type":"string","namespace":["userGroupGlobal","joinUs","link"],"searchable":true,"uid":false},{"label":"Image","name":"img","type":"image","namespace":["userGroupGlobal","joinUs","img"],"searchable":false,"uid":false}],"namespace":["userGroupGlobal","joinUs"],"searchable":true,"uid":false},{"type":"object","label":"Technologies","name":"technologies","list":true,"ui":{},"fields":[{"type":"string","label":"Technology Name","name":"name","namespace":["userGroupGlobal","technologies","name"],"searchable":true,"uid":false},{"type":"string","label":"Image URL","name":"imageUrl","description":"The path of the image from the project root (most of the time, '/images/...')","namespace":["userGroupGlobal","technologies","imageUrl"],"searchable":true,"uid":false}],"namespace":["userGroupGlobal","technologies"],"searchable":true,"uid":false}],"namespace":["userGroupGlobal"]}],"config":{"media":{"tina":{"publicFolder":"public","mediaRoot":"images"}}}},"lookup":{"DocumentConnection":{"type":"DocumentConnection","resolveType":"multiCollectionDocumentList","collections":["page","global","megamenu","articlesIndex","articles","companyIndex","company","clientCategories","paymentDetails","caseStudy","consultingIndex","consulting","videoProduction","consultingCategory","consultingTag","technologies","employment","opportunities","eventsIndex","events","eventsCalendar","locations","presenter","logos","industry","live","marketing","newsletters","officeIndex","offices","partnerIndex","productsIndex","industryIndex","products","testimonials","testimonialCategories","training","userGroupPage","userGroupGlobal"]},"Node":{"type":"Node","resolveType":"nodeDocument"},"DocumentNode":{"type":"DocumentNode","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"Page_bodyClientListCategoriesCategory":{"type":"Page_bodyClientListCategoriesCategory","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"PageSideBarClientListClientsCategoriesCategory":{"type":"PageSideBarClientListClientsCategoriesCategory","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"Page_bodyEventBookingEventListLocation":{"type":"Page_bodyEventBookingEventListLocation","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"PageBeforeBodyLatestTechBadges":{"type":"PageBeforeBodyLatestTechBadges","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"Page_bodyLocationBlockLocationListLocation":{"type":"Page_bodyLocationBlockLocationListLocation","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"PageBeforeBodyPaymentBlockPayments":{"type":"PageBeforeBodyPaymentBlockPayments","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"Page_bodyPresenterBlockPresenterListPresenter":{"type":"Page_bodyPresenterBlockPresenterListPresenter","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"Page_bodyTestimonialsListExcludedCategoriesCategoryName":{"type":"Page_bodyTestimonialsListExcludedCategoriesCategoryName","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"PageBeforeBody":{"type":"PageBeforeBody","resolveType":"unionData","typeMap":{"AboutUs":"PageBeforeBodyAboutUs","Agenda":"PageBeforeBodyAgenda","AgreementForm":"PageBeforeBodyAgreementForm","InterestForm":"PageBeforeBodyInterestForm","BookingButton":"PageBeforeBodyBookingButton","BuiltOnAzure":"PageBeforeBodyBuiltOnAzure","Carousel":"PageBeforeBodyCarousel","Citation":"PageBeforeBodyCitation","ClientList":"PageBeforeBodyClientList","ClientLogos":"PageBeforeBodyClientLogos","ColorBlock":"PageBeforeBodyColorBlock","ColorPalette":"PageBeforeBodyColorPalette","Content":"PageBeforeBodyContent","ContentCard":"PageBeforeBodyContentCard","CustomDownloadButton":"PageBeforeBodyCustomDownloadButton","CustomImage":"PageBeforeBodyCustomImage","DomainFromQuery":"PageBeforeBodyDomainFromQuery","DownloadBlock":"PageBeforeBodyDownloadBlock","DynamicColumns":"PageBeforeBodyDynamicColumns","EventBooking":"PageBeforeBodyEventBooking","EventLink":"PageBeforeBodyEventLink","Flag":"PageBeforeBodyFlag","FixedColumns":"PageBeforeBodyFixedColumns","FixedTabsLayout":"PageBeforeBodyFixedTabsLayout","GoogleMaps":"PageBeforeBodyGoogleMaps","GridLayout":"PageBeforeBodyGridLayout","Hero":"PageBeforeBodyHero","HorizontalCard":"PageBeforeBodyHorizontalCard","InternalCarousel":"PageBeforeBodyInternalCarousel","joinAsPresenter":"PageBeforeBodyJoinAsPresenter","joinGithub":"PageBeforeBodyJoinGithub","JotFormEmbed":"PageBeforeBodyJotFormEmbed","LatestTech":"PageBeforeBodyLatestTech","LocationBlock":"PageBeforeBodyLocationBlock","NewslettersTable":"PageBeforeBodyNewslettersTable","organizer":"PageBeforeBodyOrganizer","paymentBlock":"PageBeforeBodyPaymentBlock","PresenterBlock":"PageBeforeBodyPresenterBlock","RecurringEvent":"PageBeforeBodyRecurringEvent","SectionHeader":"PageBeforeBodySectionHeader","ServiceCards":"PageBeforeBodyServiceCards","TableLayout":"PageBeforeBodyTableLayout","TestimonialsList":"PageBeforeBodyTestimonialsList","TrainingInformation":"PageBeforeBodyTrainingInformation","TrainingLearningOutcome":"PageBeforeBodyTrainingLearningOutcome","TweetEmbed":"PageBeforeBodyTweetEmbed","UpcomingEvents":"PageBeforeBodyUpcomingEvents","UtilityButton":"PageBeforeBodyUtilityButton","VerticalImageLayout":"PageBeforeBodyVerticalImageLayout","VerticalListItem":"PageBeforeBodyVerticalListItem","VideoEmbed":"PageBeforeBodyVideoEmbed","InlineJotForm":"PageBeforeBodyInlineJotForm"}},"PageAfterBodyClientListCategoriesCategory":{"type":"PageAfterBodyClientListCategoriesCategory","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"ArticlesIndex_bodyClientListClientsCategoriesCategory":{"type":"ArticlesIndex_bodyClientListClientsCategoriesCategory","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"PageAfterBodyEventBookingEventListLocation":{"type":"PageAfterBodyEventBookingEventListLocation","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"PageSideBarLatestTechBadges":{"type":"PageSideBarLatestTechBadges","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"PageAfterBodyLocationBlockLocationListLocation":{"type":"PageAfterBodyLocationBlockLocationListLocation","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"PageSideBarPaymentBlockPayments":{"type":"PageSideBarPaymentBlockPayments","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"PageAfterBodyPresenterBlockPresenterListPresenter":{"type":"PageAfterBodyPresenterBlockPresenterListPresenter","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"PageAfterBodyTestimonialsListExcludedCategoriesCategoryName":{"type":"PageAfterBodyTestimonialsListExcludedCategoriesCategoryName","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"PageSideBar":{"type":"PageSideBar","resolveType":"unionData","typeMap":{"AboutUs":"PageSideBarAboutUs","Agenda":"PageSideBarAgenda","AgreementForm":"PageSideBarAgreementForm","InterestForm":"PageSideBarInterestForm","BookingButton":"PageSideBarBookingButton","BuiltOnAzure":"PageSideBarBuiltOnAzure","Carousel":"PageSideBarCarousel","Citation":"PageSideBarCitation","ClientList":"PageSideBarClientList","ClientLogos":"PageSideBarClientLogos","ColorBlock":"PageSideBarColorBlock","ColorPalette":"PageSideBarColorPalette","Content":"PageSideBarContent","ContentCard":"PageSideBarContentCard","CustomDownloadButton":"PageSideBarCustomDownloadButton","CustomImage":"PageSideBarCustomImage","DomainFromQuery":"PageSideBarDomainFromQuery","DownloadBlock":"PageSideBarDownloadBlock","DynamicColumns":"PageSideBarDynamicColumns","EventBooking":"PageSideBarEventBooking","EventLink":"PageSideBarEventLink","Flag":"PageSideBarFlag","FixedColumns":"PageSideBarFixedColumns","FixedTabsLayout":"PageSideBarFixedTabsLayout","GoogleMaps":"PageSideBarGoogleMaps","GridLayout":"PageSideBarGridLayout","Hero":"PageSideBarHero","HorizontalCard":"PageSideBarHorizontalCard","InternalCarousel":"PageSideBarInternalCarousel","joinAsPresenter":"PageSideBarJoinAsPresenter","joinGithub":"PageSideBarJoinGithub","JotFormEmbed":"PageSideBarJotFormEmbed","LatestTech":"PageSideBarLatestTech","LocationBlock":"PageSideBarLocationBlock","NewslettersTable":"PageSideBarNewslettersTable","organizer":"PageSideBarOrganizer","paymentBlock":"PageSideBarPaymentBlock","PresenterBlock":"PageSideBarPresenterBlock","RecurringEvent":"PageSideBarRecurringEvent","SectionHeader":"PageSideBarSectionHeader","ServiceCards":"PageSideBarServiceCards","TableLayout":"PageSideBarTableLayout","TestimonialsList":"PageSideBarTestimonialsList","TrainingInformation":"PageSideBarTrainingInformation","TrainingLearningOutcome":"PageSideBarTrainingLearningOutcome","TweetEmbed":"PageSideBarTweetEmbed","UpcomingEvents":"PageSideBarUpcomingEvents","UtilityButton":"PageSideBarUtilityButton","VerticalImageLayout":"PageSideBarVerticalImageLayout","VerticalListItem":"PageSideBarVerticalListItem","VideoEmbed":"PageSideBarVideoEmbed","InlineJotForm":"PageSideBarInlineJotForm"}},"ArticlesIndex_bodyClientListCategoriesCategory":{"type":"ArticlesIndex_bodyClientListCategoriesCategory","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"CompanyIndex_bodyClientListClientsCategoriesCategory":{"type":"CompanyIndex_bodyClientListClientsCategoriesCategory","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"ArticlesIndex_bodyEventBookingEventListLocation":{"type":"ArticlesIndex_bodyEventBookingEventListLocation","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"PageAfterBodyLatestTechBadges":{"type":"PageAfterBodyLatestTechBadges","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"ArticlesIndex_bodyLocationBlockLocationListLocation":{"type":"ArticlesIndex_bodyLocationBlockLocationListLocation","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"PageAfterBodyPaymentBlockPayments":{"type":"PageAfterBodyPaymentBlockPayments","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"ArticlesIndex_bodyPresenterBlockPresenterListPresenter":{"type":"ArticlesIndex_bodyPresenterBlockPresenterListPresenter","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"ArticlesIndex_bodyTestimonialsListExcludedCategoriesCategoryName":{"type":"ArticlesIndex_bodyTestimonialsListExcludedCategoriesCategoryName","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"PageAfterBody":{"type":"PageAfterBody","resolveType":"unionData","typeMap":{"AboutUs":"PageAfterBodyAboutUs","Agenda":"PageAfterBodyAgenda","AgreementForm":"PageAfterBodyAgreementForm","InterestForm":"PageAfterBodyInterestForm","BookingButton":"PageAfterBodyBookingButton","BuiltOnAzure":"PageAfterBodyBuiltOnAzure","Carousel":"PageAfterBodyCarousel","Citation":"PageAfterBodyCitation","ClientList":"PageAfterBodyClientList","ClientLogos":"PageAfterBodyClientLogos","ColorBlock":"PageAfterBodyColorBlock","ColorPalette":"PageAfterBodyColorPalette","Content":"PageAfterBodyContent","ContentCard":"PageAfterBodyContentCard","CustomDownloadButton":"PageAfterBodyCustomDownloadButton","CustomImage":"PageAfterBodyCustomImage","DomainFromQuery":"PageAfterBodyDomainFromQuery","DownloadBlock":"PageAfterBodyDownloadBlock","DynamicColumns":"PageAfterBodyDynamicColumns","EventBooking":"PageAfterBodyEventBooking","EventLink":"PageAfterBodyEventLink","Flag":"PageAfterBodyFlag","FixedColumns":"PageAfterBodyFixedColumns","FixedTabsLayout":"PageAfterBodyFixedTabsLayout","GoogleMaps":"PageAfterBodyGoogleMaps","GridLayout":"PageAfterBodyGridLayout","Hero":"PageAfterBodyHero","HorizontalCard":"PageAfterBodyHorizontalCard","InternalCarousel":"PageAfterBodyInternalCarousel","joinAsPresenter":"PageAfterBodyJoinAsPresenter","joinGithub":"PageAfterBodyJoinGithub","JotFormEmbed":"PageAfterBodyJotFormEmbed","LatestTech":"PageAfterBodyLatestTech","LocationBlock":"PageAfterBodyLocationBlock","NewslettersTable":"PageAfterBodyNewslettersTable","organizer":"PageAfterBodyOrganizer","paymentBlock":"PageAfterBodyPaymentBlock","PresenterBlock":"PageAfterBodyPresenterBlock","RecurringEvent":"PageAfterBodyRecurringEvent","SectionHeader":"PageAfterBodySectionHeader","ServiceCards":"PageAfterBodyServiceCards","TableLayout":"PageAfterBodyTableLayout","TestimonialsList":"PageAfterBodyTestimonialsList","TrainingInformation":"PageAfterBodyTrainingInformation","TrainingLearningOutcome":"PageAfterBodyTrainingLearningOutcome","TweetEmbed":"PageAfterBodyTweetEmbed","UpcomingEvents":"PageAfterBodyUpcomingEvents","UtilityButton":"PageAfterBodyUtilityButton","VerticalImageLayout":"PageAfterBodyVerticalImageLayout","VerticalListItem":"PageAfterBodyVerticalListItem","VideoEmbed":"PageAfterBodyVideoEmbed","InlineJotForm":"PageAfterBodyInlineJotForm"}},"Page":{"type":"Page","resolveType":"collectionDocument","collection":"page","createPage":"create","updatePage":"update"},"PageConnection":{"type":"PageConnection","resolveType":"collectionDocumentList","collection":"page"},"Global":{"type":"Global","resolveType":"collectionDocument","collection":"global","createGlobal":"create","updateGlobal":"update"},"GlobalConnection":{"type":"GlobalConnection","resolveType":"collectionDocumentList","collection":"global"},"Megamenu":{"type":"Megamenu","resolveType":"collectionDocument","collection":"megamenu","createMegamenu":"create","updateMegamenu":"update"},"MegamenuConnection":{"type":"MegamenuConnection","resolveType":"collectionDocumentList","collection":"megamenu"},"ArticlesIndex":{"type":"ArticlesIndex","resolveType":"collectionDocument","collection":"articlesIndex","createArticlesIndex":"create","updateArticlesIndex":"update"},"ArticlesIndexConnection":{"type":"ArticlesIndexConnection","resolveType":"collectionDocumentList","collection":"articlesIndex"},"ArticlesAuthor":{"type":"ArticlesAuthor","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"Articles":{"type":"Articles","resolveType":"collectionDocument","collection":"articles","createArticles":"create","updateArticles":"update"},"ArticlesConnection":{"type":"ArticlesConnection","resolveType":"collectionDocumentList","collection":"articles"},"CompanyIndex":{"type":"CompanyIndex","resolveType":"collectionDocument","collection":"companyIndex","createCompanyIndex":"create","updateCompanyIndex":"update"},"CompanyIndexConnection":{"type":"CompanyIndexConnection","resolveType":"collectionDocumentList","collection":"companyIndex"},"CompanyBeforeBody":{"type":"CompanyBeforeBody","resolveType":"unionData","typeMap":{"Carousel":"CompanyBeforeBodyCarousel"}},"CaseStudy_bodyClientListCategoriesCategory":{"type":"CaseStudy_bodyClientListCategoriesCategory","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"CaseStudyContentClientListClientsCategoriesCategory":{"type":"CaseStudyContentClientListClientsCategoriesCategory","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"CaseStudy_bodyEventBookingEventListLocation":{"type":"CaseStudy_bodyEventBookingEventListLocation","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"Company_bodyLatestTechBadges":{"type":"Company_bodyLatestTechBadges","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"CaseStudy_bodyLocationBlockLocationListLocation":{"type":"CaseStudy_bodyLocationBlockLocationListLocation","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"Company_bodyPaymentBlockPayments":{"type":"Company_bodyPaymentBlockPayments","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"CaseStudy_bodyPresenterBlockPresenterListPresenter":{"type":"CaseStudy_bodyPresenterBlockPresenterListPresenter","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"CaseStudy_bodyTestimonialsListExcludedCategoriesCategoryName":{"type":"CaseStudy_bodyTestimonialsListExcludedCategoriesCategoryName","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"Company_body":{"type":"Company_body","resolveType":"unionData","typeMap":{"AboutUs":"Company_bodyAboutUs","Agenda":"Company_bodyAgenda","AgreementForm":"Company_bodyAgreementForm","InterestForm":"Company_bodyInterestForm","BookingButton":"Company_bodyBookingButton","BuiltOnAzure":"Company_bodyBuiltOnAzure","Carousel":"Company_bodyCarousel","Citation":"Company_bodyCitation","ClientList":"Company_bodyClientList","ClientLogos":"Company_bodyClientLogos","ColorBlock":"Company_bodyColorBlock","ColorPalette":"Company_bodyColorPalette","Content":"Company_bodyContent","ContentCard":"Company_bodyContentCard","CustomDownloadButton":"Company_bodyCustomDownloadButton","CustomImage":"Company_bodyCustomImage","DomainFromQuery":"Company_bodyDomainFromQuery","DownloadBlock":"Company_bodyDownloadBlock","DynamicColumns":"Company_bodyDynamicColumns","EventBooking":"Company_bodyEventBooking","EventLink":"Company_bodyEventLink","Flag":"Company_bodyFlag","FixedColumns":"Company_bodyFixedColumns","FixedTabsLayout":"Company_bodyFixedTabsLayout","GoogleMaps":"Company_bodyGoogleMaps","GridLayout":"Company_bodyGridLayout","Hero":"Company_bodyHero","HorizontalCard":"Company_bodyHorizontalCard","InternalCarousel":"Company_bodyInternalCarousel","joinAsPresenter":"Company_bodyJoinAsPresenter","joinGithub":"Company_bodyJoinGithub","JotFormEmbed":"Company_bodyJotFormEmbed","LatestTech":"Company_bodyLatestTech","LocationBlock":"Company_bodyLocationBlock","NewslettersTable":"Company_bodyNewslettersTable","organizer":"Company_bodyOrganizer","paymentBlock":"Company_bodyPaymentBlock","PresenterBlock":"Company_bodyPresenterBlock","RecurringEvent":"Company_bodyRecurringEvent","SectionHeader":"Company_bodySectionHeader","ServiceCards":"Company_bodyServiceCards","TableLayout":"Company_bodyTableLayout","TestimonialsList":"Company_bodyTestimonialsList","TrainingInformation":"Company_bodyTrainingInformation","TrainingLearningOutcome":"Company_bodyTrainingLearningOutcome","TweetEmbed":"Company_bodyTweetEmbed","UpcomingEvents":"Company_bodyUpcomingEvents","UtilityButton":"Company_bodyUtilityButton","VerticalImageLayout":"Company_bodyVerticalImageLayout","VerticalListItem":"Company_bodyVerticalListItem","VideoEmbed":"Company_bodyVideoEmbed","InlineJotForm":"Company_bodyInlineJotForm"}},"Company":{"type":"Company","resolveType":"collectionDocument","collection":"company","createCompany":"create","updateCompany":"update"},"CompanyConnection":{"type":"CompanyConnection","resolveType":"collectionDocumentList","collection":"company"},"ClientCategories":{"type":"ClientCategories","resolveType":"collectionDocument","collection":"clientCategories","createClientCategories":"create","updateClientCategories":"update"},"ClientCategoriesConnection":{"type":"ClientCategoriesConnection","resolveType":"collectionDocumentList","collection":"clientCategories"},"PaymentDetails":{"type":"PaymentDetails","resolveType":"collectionDocument","collection":"paymentDetails","createPaymentDetails":"create","updatePaymentDetails":"update"},"PaymentDetailsConnection":{"type":"PaymentDetailsConnection","resolveType":"collectionDocumentList","collection":"paymentDetails"},"CaseStudyContentClientListCategoriesCategory":{"type":"CaseStudyContentClientListCategoriesCategory","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"Consulting_bodyClientListClientsCategoriesCategory":{"type":"Consulting_bodyClientListClientsCategoriesCategory","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"CaseStudyContentEventBookingEventListLocation":{"type":"CaseStudyContentEventBookingEventListLocation","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"CaseStudy_bodyLatestTechBadges":{"type":"CaseStudy_bodyLatestTechBadges","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"CaseStudyContentLocationBlockLocationListLocation":{"type":"CaseStudyContentLocationBlockLocationListLocation","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"CaseStudy_bodyPaymentBlockPayments":{"type":"CaseStudy_bodyPaymentBlockPayments","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"CaseStudyContentPresenterBlockPresenterListPresenter":{"type":"CaseStudyContentPresenterBlockPresenterListPresenter","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"CaseStudyContentTestimonialsListExcludedCategoriesCategoryName":{"type":"CaseStudyContentTestimonialsListExcludedCategoriesCategoryName","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"CaseStudy_body":{"type":"CaseStudy_body","resolveType":"unionData","typeMap":{"AboutUs":"CaseStudy_bodyAboutUs","Agenda":"CaseStudy_bodyAgenda","AgreementForm":"CaseStudy_bodyAgreementForm","InterestForm":"CaseStudy_bodyInterestForm","BookingButton":"CaseStudy_bodyBookingButton","BuiltOnAzure":"CaseStudy_bodyBuiltOnAzure","Carousel":"CaseStudy_bodyCarousel","Citation":"CaseStudy_bodyCitation","ClientList":"CaseStudy_bodyClientList","ClientLogos":"CaseStudy_bodyClientLogos","ColorBlock":"CaseStudy_bodyColorBlock","ColorPalette":"CaseStudy_bodyColorPalette","Content":"CaseStudy_bodyContent","ContentCard":"CaseStudy_bodyContentCard","CustomDownloadButton":"CaseStudy_bodyCustomDownloadButton","CustomImage":"CaseStudy_bodyCustomImage","DomainFromQuery":"CaseStudy_bodyDomainFromQuery","DownloadBlock":"CaseStudy_bodyDownloadBlock","DynamicColumns":"CaseStudy_bodyDynamicColumns","EventBooking":"CaseStudy_bodyEventBooking","EventLink":"CaseStudy_bodyEventLink","Flag":"CaseStudy_bodyFlag","FixedColumns":"CaseStudy_bodyFixedColumns","FixedTabsLayout":"CaseStudy_bodyFixedTabsLayout","GoogleMaps":"CaseStudy_bodyGoogleMaps","GridLayout":"CaseStudy_bodyGridLayout","Hero":"CaseStudy_bodyHero","HorizontalCard":"CaseStudy_bodyHorizontalCard","InternalCarousel":"CaseStudy_bodyInternalCarousel","joinAsPresenter":"CaseStudy_bodyJoinAsPresenter","joinGithub":"CaseStudy_bodyJoinGithub","JotFormEmbed":"CaseStudy_bodyJotFormEmbed","LatestTech":"CaseStudy_bodyLatestTech","LocationBlock":"CaseStudy_bodyLocationBlock","NewslettersTable":"CaseStudy_bodyNewslettersTable","organizer":"CaseStudy_bodyOrganizer","paymentBlock":"CaseStudy_bodyPaymentBlock","PresenterBlock":"CaseStudy_bodyPresenterBlock","RecurringEvent":"CaseStudy_bodyRecurringEvent","SectionHeader":"CaseStudy_bodySectionHeader","ServiceCards":"CaseStudy_bodyServiceCards","TableLayout":"CaseStudy_bodyTableLayout","TestimonialsList":"CaseStudy_bodyTestimonialsList","TrainingInformation":"CaseStudy_bodyTrainingInformation","TrainingLearningOutcome":"CaseStudy_bodyTrainingLearningOutcome","TweetEmbed":"CaseStudy_bodyTweetEmbed","UpcomingEvents":"CaseStudy_bodyUpcomingEvents","UtilityButton":"CaseStudy_bodyUtilityButton","VerticalImageLayout":"CaseStudy_bodyVerticalImageLayout","VerticalListItem":"CaseStudy_bodyVerticalListItem","VideoEmbed":"CaseStudy_bodyVideoEmbed","InlineJotForm":"CaseStudy_bodyInlineJotForm"}},"CaseStudy":{"type":"CaseStudy","resolveType":"collectionDocument","collection":"caseStudy","createCaseStudy":"create","updateCaseStudy":"update"},"CaseStudyConnection":{"type":"CaseStudyConnection","resolveType":"collectionDocumentList","collection":"caseStudy"},"ConsultingIndexSidebarTag":{"type":"ConsultingIndexSidebarTag","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"ConsultingIndexCategoriesCategory":{"type":"ConsultingIndexCategoriesCategory","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"ConsultingIndexCategoriesPagesPage":{"type":"ConsultingIndexCategoriesPagesPage","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"ConsultingIndexCategoriesPagesTagsTag":{"type":"ConsultingIndexCategoriesPagesTagsTag","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"ConsultingIndex":{"type":"ConsultingIndex","resolveType":"collectionDocument","collection":"consultingIndex","createConsultingIndex":"create","updateConsultingIndex":"update"},"ConsultingIndexConnection":{"type":"ConsultingIndexConnection","resolveType":"collectionDocumentList","collection":"consultingIndex"},"ConsultingTestimonialCategoriesTestimonialCategory":{"type":"ConsultingTestimonialCategoriesTestimonialCategory","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"VideoProduction_bodyClientListCategoriesCategory":{"type":"VideoProduction_bodyClientListCategoriesCategory","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"VideoProductionAfterBodyClientListClientsCategoriesCategory":{"type":"VideoProductionAfterBodyClientListClientsCategoriesCategory","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"VideoProduction_bodyEventBookingEventListLocation":{"type":"VideoProduction_bodyEventBookingEventListLocation","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"ConsultingAfterBodyLatestTechBadges":{"type":"ConsultingAfterBodyLatestTechBadges","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"VideoProduction_bodyLocationBlockLocationListLocation":{"type":"VideoProduction_bodyLocationBlockLocationListLocation","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"ConsultingAfterBodyPaymentBlockPayments":{"type":"ConsultingAfterBodyPaymentBlockPayments","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"VideoProduction_bodyPresenterBlockPresenterListPresenter":{"type":"VideoProduction_bodyPresenterBlockPresenterListPresenter","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"VideoProduction_bodyTestimonialsListExcludedCategoriesCategoryName":{"type":"VideoProduction_bodyTestimonialsListExcludedCategoriesCategoryName","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"ConsultingAfterBody":{"type":"ConsultingAfterBody","resolveType":"unionData","typeMap":{"AboutUs":"ConsultingAfterBodyAboutUs","Agenda":"ConsultingAfterBodyAgenda","AgreementForm":"ConsultingAfterBodyAgreementForm","InterestForm":"ConsultingAfterBodyInterestForm","BookingButton":"ConsultingAfterBodyBookingButton","BuiltOnAzure":"ConsultingAfterBodyBuiltOnAzure","Carousel":"ConsultingAfterBodyCarousel","Citation":"ConsultingAfterBodyCitation","ClientList":"ConsultingAfterBodyClientList","ClientLogos":"ConsultingAfterBodyClientLogos","ColorBlock":"ConsultingAfterBodyColorBlock","ColorPalette":"ConsultingAfterBodyColorPalette","Content":"ConsultingAfterBodyContent","ContentCard":"ConsultingAfterBodyContentCard","CustomDownloadButton":"ConsultingAfterBodyCustomDownloadButton","CustomImage":"ConsultingAfterBodyCustomImage","DomainFromQuery":"ConsultingAfterBodyDomainFromQuery","DownloadBlock":"ConsultingAfterBodyDownloadBlock","DynamicColumns":"ConsultingAfterBodyDynamicColumns","EventBooking":"ConsultingAfterBodyEventBooking","EventLink":"ConsultingAfterBodyEventLink","Flag":"ConsultingAfterBodyFlag","FixedColumns":"ConsultingAfterBodyFixedColumns","FixedTabsLayout":"ConsultingAfterBodyFixedTabsLayout","GoogleMaps":"ConsultingAfterBodyGoogleMaps","GridLayout":"ConsultingAfterBodyGridLayout","Hero":"ConsultingAfterBodyHero","HorizontalCard":"ConsultingAfterBodyHorizontalCard","InternalCarousel":"ConsultingAfterBodyInternalCarousel","joinAsPresenter":"ConsultingAfterBodyJoinAsPresenter","joinGithub":"ConsultingAfterBodyJoinGithub","JotFormEmbed":"ConsultingAfterBodyJotFormEmbed","LatestTech":"ConsultingAfterBodyLatestTech","LocationBlock":"ConsultingAfterBodyLocationBlock","NewslettersTable":"ConsultingAfterBodyNewslettersTable","organizer":"ConsultingAfterBodyOrganizer","paymentBlock":"ConsultingAfterBodyPaymentBlock","PresenterBlock":"ConsultingAfterBodyPresenterBlock","RecurringEvent":"ConsultingAfterBodyRecurringEvent","SectionHeader":"ConsultingAfterBodySectionHeader","ServiceCards":"ConsultingAfterBodyServiceCards","TableLayout":"ConsultingAfterBodyTableLayout","TestimonialsList":"ConsultingAfterBodyTestimonialsList","TrainingInformation":"ConsultingAfterBodyTrainingInformation","TrainingLearningOutcome":"ConsultingAfterBodyTrainingLearningOutcome","TweetEmbed":"ConsultingAfterBodyTweetEmbed","UpcomingEvents":"ConsultingAfterBodyUpcomingEvents","UtilityButton":"ConsultingAfterBodyUtilityButton","VerticalImageLayout":"ConsultingAfterBodyVerticalImageLayout","VerticalListItem":"ConsultingAfterBodyVerticalListItem","VideoEmbed":"ConsultingAfterBodyVideoEmbed","InlineJotForm":"ConsultingAfterBodyInlineJotForm"}},"ConsultingTechnologiesTechnologyCardsTechnologyCard":{"type":"ConsultingTechnologiesTechnologyCardsTechnologyCard","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"Consulting":{"type":"Consulting","resolveType":"collectionDocument","collection":"consulting","createConsulting":"create","updateConsulting":"update"},"ConsultingConnection":{"type":"ConsultingConnection","resolveType":"collectionDocumentList","collection":"consulting"},"EmploymentBookingBookingBodyClientListCategoriesCategory":{"type":"EmploymentBookingBookingBodyClientListCategoriesCategory","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"Employment_bodyClientListClientsCategoriesCategory":{"type":"Employment_bodyClientListClientsCategoriesCategory","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"EmploymentBookingBookingBodyEventBookingEventListLocation":{"type":"EmploymentBookingBookingBodyEventBookingEventListLocation","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"VideoProductionAfterBodyLatestTechBadges":{"type":"VideoProductionAfterBodyLatestTechBadges","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"EmploymentBookingBookingBodyLocationBlockLocationListLocation":{"type":"EmploymentBookingBookingBodyLocationBlockLocationListLocation","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"VideoProductionAfterBodyPaymentBlockPayments":{"type":"VideoProductionAfterBodyPaymentBlockPayments","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"EmploymentBookingBookingBodyPresenterBlockPresenterListPresenter":{"type":"EmploymentBookingBookingBodyPresenterBlockPresenterListPresenter","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"EmploymentBookingBookingBodyTestimonialsListExcludedCategoriesCategoryName":{"type":"EmploymentBookingBookingBodyTestimonialsListExcludedCategoriesCategoryName","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"VideoProductionAfterBody":{"type":"VideoProductionAfterBody","resolveType":"unionData","typeMap":{"AboutUs":"VideoProductionAfterBodyAboutUs","Agenda":"VideoProductionAfterBodyAgenda","AgreementForm":"VideoProductionAfterBodyAgreementForm","InterestForm":"VideoProductionAfterBodyInterestForm","BookingButton":"VideoProductionAfterBodyBookingButton","BuiltOnAzure":"VideoProductionAfterBodyBuiltOnAzure","Carousel":"VideoProductionAfterBodyCarousel","Citation":"VideoProductionAfterBodyCitation","ClientList":"VideoProductionAfterBodyClientList","ClientLogos":"VideoProductionAfterBodyClientLogos","ColorBlock":"VideoProductionAfterBodyColorBlock","ColorPalette":"VideoProductionAfterBodyColorPalette","Content":"VideoProductionAfterBodyContent","ContentCard":"VideoProductionAfterBodyContentCard","CustomDownloadButton":"VideoProductionAfterBodyCustomDownloadButton","CustomImage":"VideoProductionAfterBodyCustomImage","DomainFromQuery":"VideoProductionAfterBodyDomainFromQuery","DownloadBlock":"VideoProductionAfterBodyDownloadBlock","DynamicColumns":"VideoProductionAfterBodyDynamicColumns","EventBooking":"VideoProductionAfterBodyEventBooking","EventLink":"VideoProductionAfterBodyEventLink","Flag":"VideoProductionAfterBodyFlag","FixedColumns":"VideoProductionAfterBodyFixedColumns","FixedTabsLayout":"VideoProductionAfterBodyFixedTabsLayout","GoogleMaps":"VideoProductionAfterBodyGoogleMaps","GridLayout":"VideoProductionAfterBodyGridLayout","Hero":"VideoProductionAfterBodyHero","HorizontalCard":"VideoProductionAfterBodyHorizontalCard","InternalCarousel":"VideoProductionAfterBodyInternalCarousel","joinAsPresenter":"VideoProductionAfterBodyJoinAsPresenter","joinGithub":"VideoProductionAfterBodyJoinGithub","JotFormEmbed":"VideoProductionAfterBodyJotFormEmbed","LatestTech":"VideoProductionAfterBodyLatestTech","LocationBlock":"VideoProductionAfterBodyLocationBlock","NewslettersTable":"VideoProductionAfterBodyNewslettersTable","organizer":"VideoProductionAfterBodyOrganizer","paymentBlock":"VideoProductionAfterBodyPaymentBlock","PresenterBlock":"VideoProductionAfterBodyPresenterBlock","RecurringEvent":"VideoProductionAfterBodyRecurringEvent","SectionHeader":"VideoProductionAfterBodySectionHeader","ServiceCards":"VideoProductionAfterBodyServiceCards","TableLayout":"VideoProductionAfterBodyTableLayout","TestimonialsList":"VideoProductionAfterBodyTestimonialsList","TrainingInformation":"VideoProductionAfterBodyTrainingInformation","TrainingLearningOutcome":"VideoProductionAfterBodyTrainingLearningOutcome","TweetEmbed":"VideoProductionAfterBodyTweetEmbed","UpcomingEvents":"VideoProductionAfterBodyUpcomingEvents","UtilityButton":"VideoProductionAfterBodyUtilityButton","VerticalImageLayout":"VideoProductionAfterBodyVerticalImageLayout","VerticalListItem":"VideoProductionAfterBodyVerticalListItem","VideoEmbed":"VideoProductionAfterBodyVideoEmbed","InlineJotForm":"VideoProductionAfterBodyInlineJotForm"}},"VideoProduction":{"type":"VideoProduction","resolveType":"collectionDocument","collection":"videoProduction","createVideoProduction":"create","updateVideoProduction":"update"},"VideoProductionConnection":{"type":"VideoProductionConnection","resolveType":"collectionDocumentList","collection":"videoProduction"},"ConsultingCategory":{"type":"ConsultingCategory","resolveType":"collectionDocument","collection":"consultingCategory","createConsultingCategory":"create","updateConsultingCategory":"update"},"ConsultingCategoryConnection":{"type":"ConsultingCategoryConnection","resolveType":"collectionDocumentList","collection":"consultingCategory"},"ConsultingTag":{"type":"ConsultingTag","resolveType":"collectionDocument","collection":"consultingTag","createConsultingTag":"create","updateConsultingTag":"update"},"ConsultingTagConnection":{"type":"ConsultingTagConnection","resolveType":"collectionDocumentList","collection":"consultingTag"},"Technologies":{"type":"Technologies","resolveType":"collectionDocument","collection":"technologies","createTechnologies":"create","updateTechnologies":"update"},"TechnologiesConnection":{"type":"TechnologiesConnection","resolveType":"collectionDocumentList","collection":"technologies"},"EmploymentOpportunitiesOpportunityRef":{"type":"EmploymentOpportunitiesOpportunityRef","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"Employment":{"type":"Employment","resolveType":"collectionDocument","collection":"employment","createEmployment":"create","updateEmployment":"update"},"EmploymentConnection":{"type":"EmploymentConnection","resolveType":"collectionDocumentList","collection":"employment"},"Opportunities":{"type":"Opportunities","resolveType":"collectionDocument","collection":"opportunities","createOpportunities":"create","updateOpportunities":"update"},"OpportunitiesConnection":{"type":"OpportunitiesConnection","resolveType":"collectionDocumentList","collection":"opportunities"},"Events_bodyClientListCategoriesCategory":{"type":"Events_bodyClientListCategoriesCategory","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"EventsFooterClientListClientsCategoriesCategory":{"type":"EventsFooterClientListClientsCategoriesCategory","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"Events_bodyEventBookingEventListLocation":{"type":"Events_bodyEventBookingEventListLocation","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"EventsIndexAfterEventsLatestTechBadges":{"type":"EventsIndexAfterEventsLatestTechBadges","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"Events_bodyLocationBlockLocationListLocation":{"type":"Events_bodyLocationBlockLocationListLocation","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"EventsIndexAfterEventsPaymentBlockPayments":{"type":"EventsIndexAfterEventsPaymentBlockPayments","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"Events_bodyPresenterBlockPresenterListPresenter":{"type":"Events_bodyPresenterBlockPresenterListPresenter","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"Events_bodyTestimonialsListExcludedCategoriesCategoryName":{"type":"Events_bodyTestimonialsListExcludedCategoriesCategoryName","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"EventsIndexAfterEvents":{"type":"EventsIndexAfterEvents","resolveType":"unionData","typeMap":{"AboutUs":"EventsIndexAfterEventsAboutUs","Agenda":"EventsIndexAfterEventsAgenda","AgreementForm":"EventsIndexAfterEventsAgreementForm","InterestForm":"EventsIndexAfterEventsInterestForm","BookingButton":"EventsIndexAfterEventsBookingButton","BuiltOnAzure":"EventsIndexAfterEventsBuiltOnAzure","Carousel":"EventsIndexAfterEventsCarousel","Citation":"EventsIndexAfterEventsCitation","ClientList":"EventsIndexAfterEventsClientList","ClientLogos":"EventsIndexAfterEventsClientLogos","ColorBlock":"EventsIndexAfterEventsColorBlock","ColorPalette":"EventsIndexAfterEventsColorPalette","Content":"EventsIndexAfterEventsContent","ContentCard":"EventsIndexAfterEventsContentCard","CustomDownloadButton":"EventsIndexAfterEventsCustomDownloadButton","CustomImage":"EventsIndexAfterEventsCustomImage","DomainFromQuery":"EventsIndexAfterEventsDomainFromQuery","DownloadBlock":"EventsIndexAfterEventsDownloadBlock","DynamicColumns":"EventsIndexAfterEventsDynamicColumns","EventBooking":"EventsIndexAfterEventsEventBooking","EventLink":"EventsIndexAfterEventsEventLink","Flag":"EventsIndexAfterEventsFlag","FixedColumns":"EventsIndexAfterEventsFixedColumns","FixedTabsLayout":"EventsIndexAfterEventsFixedTabsLayout","GoogleMaps":"EventsIndexAfterEventsGoogleMaps","GridLayout":"EventsIndexAfterEventsGridLayout","Hero":"EventsIndexAfterEventsHero","HorizontalCard":"EventsIndexAfterEventsHorizontalCard","InternalCarousel":"EventsIndexAfterEventsInternalCarousel","joinAsPresenter":"EventsIndexAfterEventsJoinAsPresenter","joinGithub":"EventsIndexAfterEventsJoinGithub","JotFormEmbed":"EventsIndexAfterEventsJotFormEmbed","LatestTech":"EventsIndexAfterEventsLatestTech","LocationBlock":"EventsIndexAfterEventsLocationBlock","NewslettersTable":"EventsIndexAfterEventsNewslettersTable","organizer":"EventsIndexAfterEventsOrganizer","paymentBlock":"EventsIndexAfterEventsPaymentBlock","PresenterBlock":"EventsIndexAfterEventsPresenterBlock","RecurringEvent":"EventsIndexAfterEventsRecurringEvent","SectionHeader":"EventsIndexAfterEventsSectionHeader","ServiceCards":"EventsIndexAfterEventsServiceCards","TableLayout":"EventsIndexAfterEventsTableLayout","TestimonialsList":"EventsIndexAfterEventsTestimonialsList","TrainingInformation":"EventsIndexAfterEventsTrainingInformation","TrainingLearningOutcome":"EventsIndexAfterEventsTrainingLearningOutcome","TweetEmbed":"EventsIndexAfterEventsTweetEmbed","UpcomingEvents":"EventsIndexAfterEventsUpcomingEvents","UtilityButton":"EventsIndexAfterEventsUtilityButton","VerticalImageLayout":"EventsIndexAfterEventsVerticalImageLayout","VerticalListItem":"EventsIndexAfterEventsVerticalListItem","VideoEmbed":"EventsIndexAfterEventsVideoEmbed","InlineJotForm":"EventsIndexAfterEventsInlineJotForm"}},"EventsIndex":{"type":"EventsIndex","resolveType":"collectionDocument","collection":"eventsIndex","createEventsIndex":"create","updateEventsIndex":"update"},"EventsIndexConnection":{"type":"EventsIndexConnection","resolveType":"collectionDocumentList","collection":"eventsIndex"},"EventsTestimonialCategoriesTestimonialCategory":{"type":"EventsTestimonialCategoriesTestimonialCategory","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"EventsFooterClientListCategoriesCategory":{"type":"EventsFooterClientListCategoriesCategory","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"Logos_bodyClientListClientsCategoriesCategory":{"type":"Logos_bodyClientListClientsCategoriesCategory","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"EventsFooterEventBookingEventListLocation":{"type":"EventsFooterEventBookingEventListLocation","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"Events_bodyLatestTechBadges":{"type":"Events_bodyLatestTechBadges","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"EventsFooterLocationBlockLocationListLocation":{"type":"EventsFooterLocationBlockLocationListLocation","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"Events_bodyPaymentBlockPayments":{"type":"Events_bodyPaymentBlockPayments","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"EventsFooterPresenterBlockPresenterListPresenter":{"type":"EventsFooterPresenterBlockPresenterListPresenter","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"EventsFooterTestimonialsListExcludedCategoriesCategoryName":{"type":"EventsFooterTestimonialsListExcludedCategoriesCategoryName","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"Events_body":{"type":"Events_body","resolveType":"unionData","typeMap":{"AboutUs":"Events_bodyAboutUs","Agenda":"Events_bodyAgenda","AgreementForm":"Events_bodyAgreementForm","InterestForm":"Events_bodyInterestForm","BookingButton":"Events_bodyBookingButton","BuiltOnAzure":"Events_bodyBuiltOnAzure","Carousel":"Events_bodyCarousel","Citation":"Events_bodyCitation","ClientList":"Events_bodyClientList","ClientLogos":"Events_bodyClientLogos","ColorBlock":"Events_bodyColorBlock","ColorPalette":"Events_bodyColorPalette","Content":"Events_bodyContent","ContentCard":"Events_bodyContentCard","CustomDownloadButton":"Events_bodyCustomDownloadButton","CustomImage":"Events_bodyCustomImage","DomainFromQuery":"Events_bodyDomainFromQuery","DownloadBlock":"Events_bodyDownloadBlock","DynamicColumns":"Events_bodyDynamicColumns","EventBooking":"Events_bodyEventBooking","EventLink":"Events_bodyEventLink","Flag":"Events_bodyFlag","FixedColumns":"Events_bodyFixedColumns","FixedTabsLayout":"Events_bodyFixedTabsLayout","GoogleMaps":"Events_bodyGoogleMaps","GridLayout":"Events_bodyGridLayout","Hero":"Events_bodyHero","HorizontalCard":"Events_bodyHorizontalCard","InternalCarousel":"Events_bodyInternalCarousel","joinAsPresenter":"Events_bodyJoinAsPresenter","joinGithub":"Events_bodyJoinGithub","JotFormEmbed":"Events_bodyJotFormEmbed","LatestTech":"Events_bodyLatestTech","LocationBlock":"Events_bodyLocationBlock","NewslettersTable":"Events_bodyNewslettersTable","organizer":"Events_bodyOrganizer","paymentBlock":"Events_bodyPaymentBlock","PresenterBlock":"Events_bodyPresenterBlock","RecurringEvent":"Events_bodyRecurringEvent","SectionHeader":"Events_bodySectionHeader","ServiceCards":"Events_bodyServiceCards","TableLayout":"Events_bodyTableLayout","TestimonialsList":"Events_bodyTestimonialsList","TrainingInformation":"Events_bodyTrainingInformation","TrainingLearningOutcome":"Events_bodyTrainingLearningOutcome","TweetEmbed":"Events_bodyTweetEmbed","UpcomingEvents":"Events_bodyUpcomingEvents","UtilityButton":"Events_bodyUtilityButton","VerticalImageLayout":"Events_bodyVerticalImageLayout","VerticalListItem":"Events_bodyVerticalListItem","VideoEmbed":"Events_bodyVideoEmbed","InlineJotForm":"Events_bodyInlineJotForm"}},"Events":{"type":"Events","resolveType":"collectionDocument","collection":"events","createEvents":"create","updateEvents":"update"},"EventsConnection":{"type":"EventsConnection","resolveType":"collectionDocumentList","collection":"events"},"EventsCalendarPresenterListPresenter":{"type":"EventsCalendarPresenterListPresenter","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"EventsCalendar":{"type":"EventsCalendar","resolveType":"collectionDocument","collection":"eventsCalendar","createEventsCalendar":"create","updateEventsCalendar":"update"},"EventsCalendarConnection":{"type":"EventsCalendarConnection","resolveType":"collectionDocumentList","collection":"eventsCalendar"},"Locations":{"type":"Locations","resolveType":"collectionDocument","collection":"locations","createLocations":"create","updateLocations":"update"},"LocationsConnection":{"type":"LocationsConnection","resolveType":"collectionDocumentList","collection":"locations"},"Presenter":{"type":"Presenter","resolveType":"collectionDocument","collection":"presenter","createPresenter":"create","updatePresenter":"update"},"PresenterConnection":{"type":"PresenterConnection","resolveType":"collectionDocumentList","collection":"presenter"},"Industry_bodyClientListCategoriesCategory":{"type":"Industry_bodyClientListCategoriesCategory","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"LiveSubtitleClientListClientsCategoriesCategory":{"type":"LiveSubtitleClientListClientsCategoriesCategory","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"Industry_bodyEventBookingEventListLocation":{"type":"Industry_bodyEventBookingEventListLocation","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"Logos_bodyLatestTechBadges":{"type":"Logos_bodyLatestTechBadges","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"Industry_bodyLocationBlockLocationListLocation":{"type":"Industry_bodyLocationBlockLocationListLocation","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"Logos_bodyPaymentBlockPayments":{"type":"Logos_bodyPaymentBlockPayments","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"Industry_bodyPresenterBlockPresenterListPresenter":{"type":"Industry_bodyPresenterBlockPresenterListPresenter","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"Industry_bodyTestimonialsListExcludedCategoriesCategoryName":{"type":"Industry_bodyTestimonialsListExcludedCategoriesCategoryName","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"Logos_body":{"type":"Logos_body","resolveType":"unionData","typeMap":{"AboutUs":"Logos_bodyAboutUs","Agenda":"Logos_bodyAgenda","AgreementForm":"Logos_bodyAgreementForm","InterestForm":"Logos_bodyInterestForm","BookingButton":"Logos_bodyBookingButton","BuiltOnAzure":"Logos_bodyBuiltOnAzure","Carousel":"Logos_bodyCarousel","Citation":"Logos_bodyCitation","ClientList":"Logos_bodyClientList","ClientLogos":"Logos_bodyClientLogos","ColorBlock":"Logos_bodyColorBlock","ColorPalette":"Logos_bodyColorPalette","Content":"Logos_bodyContent","ContentCard":"Logos_bodyContentCard","CustomDownloadButton":"Logos_bodyCustomDownloadButton","CustomImage":"Logos_bodyCustomImage","DomainFromQuery":"Logos_bodyDomainFromQuery","DownloadBlock":"Logos_bodyDownloadBlock","DynamicColumns":"Logos_bodyDynamicColumns","EventBooking":"Logos_bodyEventBooking","EventLink":"Logos_bodyEventLink","Flag":"Logos_bodyFlag","FixedColumns":"Logos_bodyFixedColumns","FixedTabsLayout":"Logos_bodyFixedTabsLayout","GoogleMaps":"Logos_bodyGoogleMaps","GridLayout":"Logos_bodyGridLayout","Hero":"Logos_bodyHero","HorizontalCard":"Logos_bodyHorizontalCard","InternalCarousel":"Logos_bodyInternalCarousel","joinAsPresenter":"Logos_bodyJoinAsPresenter","joinGithub":"Logos_bodyJoinGithub","JotFormEmbed":"Logos_bodyJotFormEmbed","LatestTech":"Logos_bodyLatestTech","LocationBlock":"Logos_bodyLocationBlock","NewslettersTable":"Logos_bodyNewslettersTable","organizer":"Logos_bodyOrganizer","paymentBlock":"Logos_bodyPaymentBlock","PresenterBlock":"Logos_bodyPresenterBlock","RecurringEvent":"Logos_bodyRecurringEvent","SectionHeader":"Logos_bodySectionHeader","ServiceCards":"Logos_bodyServiceCards","TableLayout":"Logos_bodyTableLayout","TestimonialsList":"Logos_bodyTestimonialsList","TrainingInformation":"Logos_bodyTrainingInformation","TrainingLearningOutcome":"Logos_bodyTrainingLearningOutcome","TweetEmbed":"Logos_bodyTweetEmbed","UpcomingEvents":"Logos_bodyUpcomingEvents","UtilityButton":"Logos_bodyUtilityButton","VerticalImageLayout":"Logos_bodyVerticalImageLayout","VerticalListItem":"Logos_bodyVerticalListItem","VideoEmbed":"Logos_bodyVideoEmbed","InlineJotForm":"Logos_bodyInlineJotForm"}},"Logos":{"type":"Logos","resolveType":"collectionDocument","collection":"logos","createLogos":"create","updateLogos":"update"},"LogosConnection":{"type":"LogosConnection","resolveType":"collectionDocumentList","collection":"logos"},"Industry":{"type":"Industry","resolveType":"collectionDocument","collection":"industry","createIndustry":"create","updateIndustry":"update"},"IndustryConnection":{"type":"IndustryConnection","resolveType":"collectionDocumentList","collection":"industry"},"Live":{"type":"Live","resolveType":"collectionDocument","collection":"live","createLive":"create","updateLive":"update"},"LiveConnection":{"type":"LiveConnection","resolveType":"collectionDocumentList","collection":"live"},"Marketing":{"type":"Marketing","resolveType":"collectionDocument","collection":"marketing","createMarketing":"create","updateMarketing":"update"},"MarketingConnection":{"type":"MarketingConnection","resolveType":"collectionDocumentList","collection":"marketing"},"Newsletters":{"type":"Newsletters","resolveType":"collectionDocument","collection":"newsletters","createNewsletters":"create","updateNewsletters":"update"},"NewslettersConnection":{"type":"NewslettersConnection","resolveType":"collectionDocumentList","collection":"newsletters"},"OfficeIndexOfficesIndexOffice":{"type":"OfficeIndexOfficesIndexOffice","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"OfficeIndex":{"type":"OfficeIndex","resolveType":"collectionDocument","collection":"officeIndex","createOfficeIndex":"create","updateOfficeIndex":"update"},"OfficeIndexConnection":{"type":"OfficeIndexConnection","resolveType":"collectionDocumentList","collection":"officeIndex"},"Offices":{"type":"Offices","resolveType":"collectionDocument","collection":"offices","createOffices":"create","updateOffices":"update"},"OfficesConnection":{"type":"OfficesConnection","resolveType":"collectionDocumentList","collection":"offices"},"PartnerIndex":{"type":"PartnerIndex","resolveType":"collectionDocument","collection":"partnerIndex","createPartnerIndex":"create","updatePartnerIndex":"update"},"PartnerIndexConnection":{"type":"PartnerIndexConnection","resolveType":"collectionDocumentList","collection":"partnerIndex"},"ProductsIndex":{"type":"ProductsIndex","resolveType":"collectionDocument","collection":"productsIndex","createProductsIndex":"create","updateProductsIndex":"update"},"ProductsIndexConnection":{"type":"ProductsIndexConnection","resolveType":"collectionDocumentList","collection":"productsIndex"},"IndustryIndex":{"type":"IndustryIndex","resolveType":"collectionDocument","collection":"industryIndex","createIndustryIndex":"create","updateIndustryIndex":"update"},"IndustryIndexConnection":{"type":"IndustryIndexConnection","resolveType":"collectionDocumentList","collection":"industryIndex"},"Products":{"type":"Products","resolveType":"collectionDocument","collection":"products","createProducts":"create","updateProducts":"update"},"ProductsConnection":{"type":"ProductsConnection","resolveType":"collectionDocumentList","collection":"products"},"TestimonialsTestimonialsCategoriesCategory":{"type":"TestimonialsTestimonialsCategoriesCategory","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"Testimonials":{"type":"Testimonials","resolveType":"collectionDocument","collection":"testimonials","createTestimonials":"create","updateTestimonials":"update"},"TestimonialsConnection":{"type":"TestimonialsConnection","resolveType":"collectionDocumentList","collection":"testimonials"},"TestimonialCategories":{"type":"TestimonialCategories","resolveType":"collectionDocument","collection":"testimonialCategories","createTestimonialCategories":"create","updateTestimonialCategories":"update"},"TestimonialCategoriesConnection":{"type":"TestimonialCategoriesConnection","resolveType":"collectionDocumentList","collection":"testimonialCategories"},"TrainingFooterClientListCategoriesCategory":{"type":"TrainingFooterClientListCategoriesCategory","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"UserGroupPageContentPage_bodyClientListClientsCategoriesCategory":{"type":"UserGroupPageContentPage_bodyClientListClientsCategoriesCategory","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"TrainingFooterEventBookingEventListLocation":{"type":"TrainingFooterEventBookingEventListLocation","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"Training_bodyLatestTechBadges":{"type":"Training_bodyLatestTechBadges","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"TrainingFooterLocationBlockLocationListLocation":{"type":"TrainingFooterLocationBlockLocationListLocation","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"Training_bodyPaymentBlockPayments":{"type":"Training_bodyPaymentBlockPayments","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"TrainingFooterPresenterBlockPresenterListPresenter":{"type":"TrainingFooterPresenterBlockPresenterListPresenter","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"TrainingFooterTestimonialsListExcludedCategoriesCategoryName":{"type":"TrainingFooterTestimonialsListExcludedCategoriesCategoryName","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"Training_body":{"type":"Training_body","resolveType":"unionData","typeMap":{"AboutUs":"Training_bodyAboutUs","Agenda":"Training_bodyAgenda","AgreementForm":"Training_bodyAgreementForm","InterestForm":"Training_bodyInterestForm","BookingButton":"Training_bodyBookingButton","BuiltOnAzure":"Training_bodyBuiltOnAzure","Carousel":"Training_bodyCarousel","Citation":"Training_bodyCitation","ClientList":"Training_bodyClientList","ClientLogos":"Training_bodyClientLogos","ColorBlock":"Training_bodyColorBlock","ColorPalette":"Training_bodyColorPalette","Content":"Training_bodyContent","ContentCard":"Training_bodyContentCard","CustomDownloadButton":"Training_bodyCustomDownloadButton","CustomImage":"Training_bodyCustomImage","DomainFromQuery":"Training_bodyDomainFromQuery","DownloadBlock":"Training_bodyDownloadBlock","DynamicColumns":"Training_bodyDynamicColumns","EventBooking":"Training_bodyEventBooking","EventLink":"Training_bodyEventLink","Flag":"Training_bodyFlag","FixedColumns":"Training_bodyFixedColumns","FixedTabsLayout":"Training_bodyFixedTabsLayout","GoogleMaps":"Training_bodyGoogleMaps","GridLayout":"Training_bodyGridLayout","Hero":"Training_bodyHero","HorizontalCard":"Training_bodyHorizontalCard","InternalCarousel":"Training_bodyInternalCarousel","joinAsPresenter":"Training_bodyJoinAsPresenter","joinGithub":"Training_bodyJoinGithub","JotFormEmbed":"Training_bodyJotFormEmbed","LatestTech":"Training_bodyLatestTech","LocationBlock":"Training_bodyLocationBlock","NewslettersTable":"Training_bodyNewslettersTable","organizer":"Training_bodyOrganizer","paymentBlock":"Training_bodyPaymentBlock","PresenterBlock":"Training_bodyPresenterBlock","RecurringEvent":"Training_bodyRecurringEvent","SectionHeader":"Training_bodySectionHeader","ServiceCards":"Training_bodyServiceCards","TableLayout":"Training_bodyTableLayout","TestimonialsList":"Training_bodyTestimonialsList","TrainingInformation":"Training_bodyTrainingInformation","TrainingLearningOutcome":"Training_bodyTrainingLearningOutcome","TweetEmbed":"Training_bodyTweetEmbed","UpcomingEvents":"Training_bodyUpcomingEvents","UtilityButton":"Training_bodyUtilityButton","VerticalImageLayout":"Training_bodyVerticalImageLayout","VerticalListItem":"Training_bodyVerticalListItem","VideoEmbed":"Training_bodyVideoEmbed","InlineJotForm":"Training_bodyInlineJotForm"}},"Training":{"type":"Training","resolveType":"collectionDocument","collection":"training","createTraining":"create","updateTraining":"update"},"TrainingConnection":{"type":"TrainingConnection","resolveType":"collectionDocumentList","collection":"training"},"UserGroupPageLocationPageLatestTechBadges":{"type":"UserGroupPageLocationPageLatestTechBadges","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"UserGroupPageLocationPageSectionsVideosSectionGlobalUserGroupInfo":{"type":"UserGroupPageLocationPageSectionsVideosSectionGlobalUserGroupInfo","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"UserGroupPageLocationPageSections":{"type":"UserGroupPageLocationPageSections","resolveType":"unionData","typeMap":{"ActionSection":"UserGroupPageLocationPageSectionsActionSection","CommunitySection":"UserGroupPageLocationPageSectionsCommunitySection","VideosSection":"UserGroupPageLocationPageSectionsVideosSection"}},"UserGroupPageLocationPageTestimonialCategories":{"type":"UserGroupPageLocationPageTestimonialCategories","resolveType":"multiCollectionDocument","createDocument":"create","updateDocument":"update"},"UserGroupPage":{"type":"UserGroupPage","resolveType":"unionData","collection":"userGroupPage","typeMap":{"locationPage":"UserGroupPageLocationPage","contentPage":"UserGroupPageContentPage"}},"UserGroupPageConnection":{"type":"UserGroupPageConnection","resolveType":"collectionDocumentList","collection":"userGroupPage"},"UserGroupGlobal":{"type":"UserGroupGlobal","resolveType":"collectionDocument","collection":"userGroupGlobal","createUserGroupGlobal":"create","updateUserGroupGlobal":"update"},"UserGroupGlobalConnection":{"type":"UserGroupGlobalConnection","resolveType":"collectionDocumentList","collection":"userGroupGlobal"}},"graphql":{"kind":"Document","definitions":[{"kind":"ScalarTypeDefinition","name":{"kind":"Name","value":"Reference"},"description":{"kind":"StringValue","value":"References another document, used as a foreign key"},"directives":[]},{"kind":"ScalarTypeDefinition","name":{"kind":"Name","value":"JSON"},"description":{"kind":"StringValue","value":""},"directives":[]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"SystemInfo"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"filename"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"basename"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"breadcrumbs"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"excludeExtension"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}],"type":{"kind":"NonNullType","type":{"kind":"ListType","type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"path"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"relativePath"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"extension"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"template"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"collection"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Collection"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Folder"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"name"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"path"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageInfo"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"hasPreviousPage"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"hasNextPage"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"startCursor"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"endCursor"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}]},{"kind":"InterfaceTypeDefinition","description":{"kind":"StringValue","value":""},"name":{"kind":"Name","value":"Node"},"interfaces":[],"directives":[],"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"id"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ID"}}}}]},{"kind":"InterfaceTypeDefinition","description":{"kind":"StringValue","value":""},"name":{"kind":"Name","value":"Document"},"interfaces":[],"directives":[],"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"id"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ID"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_sys"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"SystemInfo"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_values"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}}]},{"kind":"InterfaceTypeDefinition","description":{"kind":"StringValue","value":"A relay-compliant pagination connection"},"name":{"kind":"Name","value":"Connection"},"interfaces":[],"directives":[],"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"totalCount"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"pageInfo"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageInfo"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Query"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"getOptimizedQuery"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"queryString"},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"collection"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"collection"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Collection"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"collections"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"ListType","type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Collection"}}}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"node"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"id"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Node"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"document"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"collection"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"DocumentNode"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"page"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Page"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"pageConnection"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"before"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"after"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"first"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"last"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sort"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"filter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageFilter"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageConnection"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"global"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Global"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"globalConnection"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"before"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"after"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"first"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"last"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sort"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"filter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"GlobalFilter"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"GlobalConnection"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"megamenu"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Megamenu"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"megamenuConnection"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"before"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"after"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"first"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"last"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sort"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"filter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"MegamenuFilter"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"MegamenuConnection"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"articlesIndex"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"articlesIndexConnection"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"before"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"after"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"first"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"last"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sort"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"filter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndexFilter"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndexConnection"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"articles"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Articles"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"articlesConnection"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"before"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"after"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"first"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"last"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sort"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"filter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesFilter"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesConnection"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"companyIndex"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"companyIndexConnection"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"before"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"after"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"first"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"last"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sort"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"filter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndexFilter"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndexConnection"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"company"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Company"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"companyConnection"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"before"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"after"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"first"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"last"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sort"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"filter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyFilter"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyConnection"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"clientCategories"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ClientCategories"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"clientCategoriesConnection"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"before"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"after"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"first"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"last"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sort"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"filter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ClientCategoriesFilter"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ClientCategoriesConnection"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"paymentDetails"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PaymentDetails"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"paymentDetailsConnection"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"before"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"after"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"first"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"last"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sort"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"filter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PaymentDetailsFilter"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PaymentDetailsConnection"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"caseStudy"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"caseStudyConnection"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"before"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"after"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"first"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"last"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sort"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"filter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyFilter"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyConnection"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"consultingIndex"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingIndex"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"consultingIndexConnection"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"before"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"after"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"first"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"last"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sort"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"filter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingIndexFilter"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingIndexConnection"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"consulting"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"consultingConnection"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"before"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"after"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"first"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"last"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sort"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"filter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingFilter"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingConnection"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"videoProduction"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"videoProductionConnection"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"before"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"after"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"first"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"last"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sort"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"filter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionFilter"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionConnection"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"consultingCategory"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingCategory"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"consultingCategoryConnection"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"before"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"after"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"first"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"last"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sort"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"filter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingCategoryFilter"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingCategoryConnection"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"consultingTag"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingTag"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"consultingTagConnection"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"before"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"after"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"first"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"last"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sort"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"filter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingTagFilter"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingTagConnection"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"technologies"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Technologies"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"technologiesConnection"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"before"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"after"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"first"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"last"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sort"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"filter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"TechnologiesFilter"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"TechnologiesConnection"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"employment"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"employmentConnection"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"before"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"after"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"first"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"last"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sort"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"filter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentFilter"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentConnection"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"opportunities"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"opportunitiesConnection"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"before"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"after"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"first"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"last"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sort"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"filter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"OpportunitiesFilter"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"OpportunitiesConnection"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"eventsIndex"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndex"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"eventsIndexConnection"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"before"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"after"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"first"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"last"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sort"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"filter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexFilter"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexConnection"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"events"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Events"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"eventsConnection"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"before"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"after"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"first"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"last"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sort"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"filter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsFilter"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsConnection"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"eventsCalendar"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsCalendar"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"eventsCalendarConnection"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"before"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"after"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"first"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"last"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sort"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"filter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsCalendarFilter"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsCalendarConnection"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"locations"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Locations"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"locationsConnection"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"before"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"after"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"first"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"last"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sort"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"filter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"LocationsFilter"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"LocationsConnection"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"presenter"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Presenter"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"presenterConnection"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"before"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"after"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"first"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"last"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sort"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"filter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PresenterFilter"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PresenterConnection"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"logos"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Logos"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"logosConnection"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"before"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"after"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"first"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"last"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sort"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"filter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"LogosFilter"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"LogosConnection"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"industry"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Industry"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"industryConnection"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"before"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"after"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"first"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"last"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sort"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"filter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"IndustryFilter"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"IndustryConnection"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"live"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Live"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"liveConnection"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"before"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"after"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"first"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"last"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sort"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"filter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"LiveFilter"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"LiveConnection"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"marketing"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Marketing"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"marketingConnection"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"before"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"after"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"first"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"last"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sort"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"filter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"MarketingFilter"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"MarketingConnection"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"newsletters"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Newsletters"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"newslettersConnection"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"before"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"after"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"first"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"last"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sort"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"filter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NewslettersFilter"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"NewslettersConnection"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"officeIndex"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"OfficeIndex"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"officeIndexConnection"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"before"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"after"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"first"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"last"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sort"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"filter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"OfficeIndexFilter"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"OfficeIndexConnection"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"offices"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Offices"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"officesConnection"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"before"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"after"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"first"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"last"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sort"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"filter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"OfficesFilter"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"OfficesConnection"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"partnerIndex"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PartnerIndex"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"partnerIndexConnection"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"before"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"after"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"first"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"last"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sort"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"filter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PartnerIndexFilter"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PartnerIndexConnection"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"productsIndex"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ProductsIndex"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"productsIndexConnection"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"before"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"after"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"first"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"last"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sort"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"filter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ProductsIndexFilter"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ProductsIndexConnection"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"industryIndex"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"IndustryIndex"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"industryIndexConnection"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"before"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"after"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"first"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"last"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sort"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"filter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"IndustryIndexFilter"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"IndustryIndexConnection"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"products"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Products"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"productsConnection"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"before"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"after"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"first"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"last"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sort"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"filter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ProductsFilter"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ProductsConnection"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"testimonials"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Testimonials"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"testimonialsConnection"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"before"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"after"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"first"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"last"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sort"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"filter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"TestimonialsFilter"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"TestimonialsConnection"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"testimonialCategories"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"TestimonialCategories"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"testimonialCategoriesConnection"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"before"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"after"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"first"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"last"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sort"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"filter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"TestimonialCategoriesFilter"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"TestimonialCategoriesConnection"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"training"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Training"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"trainingConnection"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"before"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"after"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"first"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"last"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sort"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"filter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"TrainingFilter"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"TrainingConnection"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"userGroupPage"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"UserGroupPage"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"userGroupPageConnection"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"before"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"after"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"first"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"last"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sort"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"filter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"UserGroupPageFilter"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"UserGroupPageConnection"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"userGroupGlobal"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relativePath"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"UserGroupGlobal"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"userGroupGlobalConnection"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"before"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"after"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"first"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"last"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sort"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"filter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"UserGroupGlobalFilter"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"UserGroupGlobalConnection"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DocumentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"page"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"global"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"GlobalFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"megamenu"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"MegamenuFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"articlesIndex"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndexFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"articles"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"companyIndex"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndexFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"company"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"clientCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ClientCategoriesFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paymentDetails"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PaymentDetailsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caseStudy"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"consultingIndex"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingIndexFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"consulting"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoProduction"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"consultingCategory"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingCategoryFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"consultingTag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingTagFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"technologies"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"TechnologiesFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"employment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"opportunities"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"OpportunitiesFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventsIndex"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"events"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventsCalendar"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsCalendarFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"locations"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"LocationsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"presenter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PresenterFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"logos"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"LogosFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"industry"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"IndustryFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"live"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"LiveFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"marketing"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"MarketingFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"newsletters"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NewslettersFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"officeIndex"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"OfficeIndexFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"offices"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"OfficesFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"partnerIndex"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PartnerIndexFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"productsIndex"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ProductsIndexFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"industryIndex"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"IndustryIndexFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"products"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ProductsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"testimonials"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"TestimonialsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"testimonialCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"TestimonialCategoriesFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"training"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"TrainingFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"userGroupPage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"UserGroupPageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"userGroupGlobal"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"UserGroupGlobalFilter"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"DocumentConnectionEdges"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"cursor"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"node"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocumentNode"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[{"kind":"NamedType","name":{"kind":"Name","value":"Connection"}}],"directives":[],"name":{"kind":"Name","value":"DocumentConnection"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"pageInfo"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageInfo"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"totalCount"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"edges"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"DocumentConnectionEdges"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Collection"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"name"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"slug"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"path"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"format"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"matches"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"templates"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"fields"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"documents"},"arguments":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"before"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"after"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"first"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"last"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sort"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"filter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DocumentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"folder"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"DocumentConnection"}}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"DocumentNode"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"Page"}},{"kind":"NamedType","name":{"kind":"Name","value":"Global"}},{"kind":"NamedType","name":{"kind":"Name","value":"Megamenu"}},{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex"}},{"kind":"NamedType","name":{"kind":"Name","value":"Articles"}},{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex"}},{"kind":"NamedType","name":{"kind":"Name","value":"Company"}},{"kind":"NamedType","name":{"kind":"Name","value":"ClientCategories"}},{"kind":"NamedType","name":{"kind":"Name","value":"PaymentDetails"}},{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy"}},{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingIndex"}},{"kind":"NamedType","name":{"kind":"Name","value":"Consulting"}},{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction"}},{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingCategory"}},{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingTag"}},{"kind":"NamedType","name":{"kind":"Name","value":"Technologies"}},{"kind":"NamedType","name":{"kind":"Name","value":"Employment"}},{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities"}},{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndex"}},{"kind":"NamedType","name":{"kind":"Name","value":"Events"}},{"kind":"NamedType","name":{"kind":"Name","value":"EventsCalendar"}},{"kind":"NamedType","name":{"kind":"Name","value":"Locations"}},{"kind":"NamedType","name":{"kind":"Name","value":"Presenter"}},{"kind":"NamedType","name":{"kind":"Name","value":"Logos"}},{"kind":"NamedType","name":{"kind":"Name","value":"Industry"}},{"kind":"NamedType","name":{"kind":"Name","value":"Live"}},{"kind":"NamedType","name":{"kind":"Name","value":"Marketing"}},{"kind":"NamedType","name":{"kind":"Name","value":"Newsletters"}},{"kind":"NamedType","name":{"kind":"Name","value":"OfficeIndex"}},{"kind":"NamedType","name":{"kind":"Name","value":"Offices"}},{"kind":"NamedType","name":{"kind":"Name","value":"PartnerIndex"}},{"kind":"NamedType","name":{"kind":"Name","value":"ProductsIndex"}},{"kind":"NamedType","name":{"kind":"Name","value":"IndustryIndex"}},{"kind":"NamedType","name":{"kind":"Name","value":"Products"}},{"kind":"NamedType","name":{"kind":"Name","value":"Testimonials"}},{"kind":"NamedType","name":{"kind":"Name","value":"TestimonialCategories"}},{"kind":"NamedType","name":{"kind":"Name","value":"Training"}},{"kind":"NamedType","name":{"kind":"Name","value":"UserGroupPageLocationPage"}},{"kind":"NamedType","name":{"kind":"Name","value":"UserGroupPageContentPage"}},{"kind":"NamedType","name":{"kind":"Name","value":"UserGroupGlobal"}},{"kind":"NamedType","name":{"kind":"Name","value":"Folder"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageSeoImages"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"url"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"width"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"height"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"alt"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageSeo"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"description"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"canonical"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"showBreadcrumb"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"images"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSeoImages"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBeforeBodyAboutUs"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"backgroundColor"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"showMap"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBeforeBodyAgendaAgendaItemList"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"placeholder"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"body"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBeforeBodyAgenda"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"header"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"textColor"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"agendaItemList"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyAgendaAgendaItemList"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBeforeBodyAgreementFormFields"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"id"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"placeholder"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"resizeable"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBeforeBodyAgreementForm"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"backgroundColor"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"fields"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyAgreementFormFields"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBeforeBodyInterestForm"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"buttonText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBeforeBodyBookingButton"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"buttonText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"animated"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBeforeBodyBuiltOnAzure"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"backgroundColor"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBeforeBodyCarouselItems"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"openIn"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"imgSrc"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBeforeBodyCarousel"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"items"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyCarouselItems"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"backgroundColor"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"delay"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"showOnMobileDevices"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBeforeBodyCitation"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"author"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"article"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"Page_bodyClientListCategoriesCategory"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"ClientCategories"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBeforeBodyClientListCategories"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"category"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyClientListCategoriesCategory"}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"PageSideBarClientListClientsCategoriesCategory"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"ClientCategories"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Page_bodyClientListClientsCategories"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"category"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarClientListClientsCategoriesCategory"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBeforeBodyClientListClients"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"name"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"logo"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"logoUrl"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"content"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"caseStudyUrl"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"categories"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyClientListClientsCategories"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBeforeBodyClientList"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"categories"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyClientListCategories"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"clients"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyClientListClients"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBeforeBodyClientLogos"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"altText"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBeforeBodyColorBlockColorRow"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"firstColor"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"fText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"secondColor"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"sText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"caption"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBeforeBodyColorBlock"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"subTitle"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"colorRow"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyColorBlockColorRow"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBeforeBodyColorPalette"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"name"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBeforeBodyContent"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"content"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"paddingClass"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"size"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"align"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"backgroundColor"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBeforeBodyContentCard"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"prose"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"centerAlignedText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"content"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBeforeBodyCustomDownloadButton"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"btnText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"btnLink"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBeforeBodyCustomImage"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"src"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"altText"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"alignment"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"height"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"width"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"customClass"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"caption"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"captionColor"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"sizes"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBeforeBodyDomainFromQuery"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"showDomain"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBeforeBodyDownloadBlockDownloads"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"header"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"img"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"imgBackground"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"firstLinkText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"firstLink"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"secondLinkText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"secondLink"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBeforeBodyDownloadBlock"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"downloads"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyDownloadBlockDownloads"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"bottomBorder"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBeforeBodyDynamicColumns"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"colBody"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"colCount"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"Page_bodyEventBookingEventListLocation"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"Locations"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBeforeBodyEventBookingEventList"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"city"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"date"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"bookingURL"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"location"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyEventBookingEventListLocation"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBeforeBodyEventBooking"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"eventDurationInDays"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"price"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"discountPrice"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"gstText"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"discountNote"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"eventList"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyEventBookingEventList"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBeforeBodyEventLink"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"content"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"eventThumbnail"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"thumbnailAlt"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBeforeBodyFlag"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"country"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBeforeBodyFixedColumns"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"headerSection"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"firstColBody"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"secondColBody"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBeforeBodyFixedTabsLayout"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"firstTab"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"firstHeading"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"firstBody"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"secondTab"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"secondHeading"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"secondBody"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBeforeBodyGoogleMaps"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"embedUrl"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"embedWidth"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"embedHeight"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Page_bodyGridLayoutGridsBlocks"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"showTitle"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"image"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"relatedImage"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"linkContent"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBeforeBodyGridLayoutGrids"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"gridTitle"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"showGridTitle"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"centeredGridTitle"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"showHeaderDivider"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"offsetGridStart"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"blocks"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyGridLayoutGridsBlocks"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBeforeBodyGridLayout"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"grids"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyGridLayoutGrids"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBeforeBodyHeroActions"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"type"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"icon"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBeforeBodyHeroImage"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"src"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"alt"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBeforeBodyHero"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"tagline"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"headline"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"text"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"actions"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyHeroActions"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"image"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyHeroImage"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"color"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBeforeBodyHorizontalCardCardList"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"content"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"thumbnail"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBeforeBodyHorizontalCardButton"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"text"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBeforeBodyHorizontalCard"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"cardList"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyHorizontalCardCardList"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"button"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyHorizontalCardButton"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBeforeBodyInternalCarouselItems"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"imgSrc"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBeforeBodyInternalCarouselTechnologies"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"name"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBeforeBodyInternalCarousel"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"items"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyInternalCarouselItems"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"header"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"paragraph"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"website"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"technologies"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyInternalCarouselTechnologies"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"caseStudyUrl"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"videoUrl"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBeforeBodyJoinAsPresenter"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"img"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBeforeBodyJoinGithub"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBeforeBodyJotFormEmbed"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"jotFormId"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"buttonText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"containerClass"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"buttonClass"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"animated"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyLatestTechBadges"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"UserGroupGlobal"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBeforeBodyLatestTech"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"badges"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyLatestTechBadges"}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"Page_bodyLocationBlockLocationListLocation"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"Locations"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBeforeBodyLocationBlockLocationList"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"location"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyLocationBlockLocationListLocation"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBeforeBodyLocationBlockChapelWebsite"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"URL"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBeforeBodyLocationBlock"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"locationList"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyLocationBlockLocationList"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"chapelWebsite"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyLocationBlockChapelWebsite"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBeforeBodyNewslettersTable"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"headerText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBeforeBodyOrganizer"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"profileImg"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"profileLink"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"name"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"position"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"content"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyPaymentBlockPayments"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"PaymentDetails"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBeforeBodyPaymentBlock"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"subTitle"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"payments"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyPaymentBlockPayments"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"footer"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"creditImgSrc"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"altTxt"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"Page_bodyPresenterBlockPresenterListPresenter"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"Presenter"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBeforeBodyPresenterBlockPresenterList"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"presenter"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyPresenterBlockPresenterListPresenter"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBeforeBodyPresenterBlockOtherEvent"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"eventURL"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBeforeBodyPresenterBlock"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"header"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"presenterList"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyPresenterBlockPresenterList"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"otherEvent"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyPresenterBlockOtherEvent"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBeforeBodyRecurringEvent"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"applyLinkRedirect"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"day"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBeforeBodySectionHeader"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"headerText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBeforeBodyServiceCardsBigCards"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"description"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"color"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"imgSrc"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBeforeBodyServiceCardsSmallCards"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"color"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"imgSrc"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"isExternal"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBeforeBodyServiceCardsLinks"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBeforeBodyServiceCards"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"bigCardsLabel"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"bigCards"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyServiceCardsBigCards"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"smallCardsLabel"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"smallCards"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyServiceCardsSmallCards"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"links"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyServiceCardsLinks"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"backgroundColor"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Page_bodyTableLayoutRowsCells"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"cellValue"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBeforeBodyTableLayoutRows"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"cells"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyTableLayoutRowsCells"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"isHeader"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBeforeBodyTableLayout"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"tableStyle"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"firstColBold"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"headers"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"rows"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyTableLayoutRows"}}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"Page_bodyTestimonialsListExcludedCategoriesCategoryName"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"TestimonialCategories"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBeforeBodyTestimonialsListExcludedCategories"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"categoryName"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyTestimonialsListExcludedCategoriesCategoryName"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBeforeBodyTestimonialsList"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"excludedCategories"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyTestimonialsListExcludedCategories"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBeforeBodyTrainingInformationTrainingInformationItems"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"header"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"body"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBeforeBodyTrainingInformation"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"trainingInformationItems"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyTrainingInformationTrainingInformationItems"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBeforeBodyTrainingLearningOutcomeListItems"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"content"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"icon"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBeforeBodyTrainingLearningOutcome"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"header"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"listItems"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyTrainingLearningOutcomeListItems"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBeforeBodyTweetEmbed"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"url"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBeforeBodyUpcomingEvents"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"numberOfEvents"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBeforeBodyUtilityButton"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"buttonText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"size"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"btnIcon"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"animated"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"uncentered"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"removeTopMargin"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"openInNewTab"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBeforeBodyVerticalImageLayout"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"imageSrc"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"altText"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"imageLink"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"height"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"width"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"message"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"sizes"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBeforeBodyVerticalListItem"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"content"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"index"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"icon"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"iconScale"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"afterBody"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBeforeBodyVideoEmbed"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"url"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"videoWidth"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"removeMargin"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"uncentre"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"overflow"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"caption"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"duration"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageBeforeBodyInlineJotForm"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"jotFormId"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"additionalClasses"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"PageBeforeBody"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyAboutUs"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyAgenda"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyAgreementForm"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyInterestForm"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyBookingButton"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyBuiltOnAzure"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyCarousel"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyCitation"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyClientList"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyClientLogos"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyColorBlock"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyColorPalette"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyContent"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyContentCard"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyCustomDownloadButton"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyCustomImage"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyDomainFromQuery"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyDownloadBlock"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyDynamicColumns"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyEventBooking"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyEventLink"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyFlag"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyFixedColumns"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyFixedTabsLayout"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyGoogleMaps"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyGridLayout"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyHero"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyHorizontalCard"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyInternalCarousel"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyJoinAsPresenter"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyJoinGithub"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyJotFormEmbed"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyLatestTech"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyLocationBlock"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyNewslettersTable"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyOrganizer"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyPaymentBlock"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyPresenterBlock"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyRecurringEvent"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodySectionHeader"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyServiceCards"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyTableLayout"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyTestimonialsList"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyTrainingInformation"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyTrainingLearningOutcome"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyTweetEmbed"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyUpcomingEvents"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyUtilityButton"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyVerticalImageLayout"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyVerticalListItem"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyVideoEmbed"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyInlineJotForm"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageSideBarAboutUs"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"backgroundColor"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"showMap"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageSideBarAgendaAgendaItemList"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"placeholder"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"body"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageSideBarAgenda"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"header"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"textColor"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"agendaItemList"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarAgendaAgendaItemList"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageSideBarAgreementFormFields"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"id"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"placeholder"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"resizeable"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageSideBarAgreementForm"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"backgroundColor"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"fields"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarAgreementFormFields"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageSideBarInterestForm"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"buttonText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageSideBarBookingButton"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"buttonText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"animated"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageSideBarBuiltOnAzure"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"backgroundColor"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageSideBarCarouselItems"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"openIn"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"imgSrc"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageSideBarCarousel"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"items"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarCarouselItems"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"backgroundColor"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"delay"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"showOnMobileDevices"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageSideBarCitation"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"author"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"article"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyClientListCategoriesCategory"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"ClientCategories"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageSideBarClientListCategories"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"category"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyClientListCategoriesCategory"}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyClientListClientsCategoriesCategory"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"ClientCategories"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageAfterBodyClientListClientsCategories"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"category"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyClientListClientsCategoriesCategory"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageSideBarClientListClients"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"name"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"logo"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"logoUrl"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"content"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"caseStudyUrl"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"categories"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyClientListClientsCategories"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageSideBarClientList"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"categories"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarClientListCategories"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"clients"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarClientListClients"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageSideBarClientLogos"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"altText"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageSideBarColorBlockColorRow"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"firstColor"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"fText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"secondColor"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"sText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"caption"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageSideBarColorBlock"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"subTitle"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"colorRow"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarColorBlockColorRow"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageSideBarColorPalette"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"name"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageSideBarContent"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"content"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"paddingClass"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"size"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"align"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"backgroundColor"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageSideBarContentCard"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"prose"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"centerAlignedText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"content"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageSideBarCustomDownloadButton"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"btnText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"btnLink"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageSideBarCustomImage"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"src"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"altText"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"alignment"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"height"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"width"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"customClass"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"caption"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"captionColor"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"sizes"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageSideBarDomainFromQuery"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"showDomain"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageSideBarDownloadBlockDownloads"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"header"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"img"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"imgBackground"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"firstLinkText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"firstLink"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"secondLinkText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"secondLink"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageSideBarDownloadBlock"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"downloads"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarDownloadBlockDownloads"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"bottomBorder"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageSideBarDynamicColumns"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"colBody"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"colCount"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyEventBookingEventListLocation"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"Locations"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageSideBarEventBookingEventList"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"city"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"date"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"bookingURL"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"location"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyEventBookingEventListLocation"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageSideBarEventBooking"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"eventDurationInDays"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"price"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"discountPrice"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"gstText"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"discountNote"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"eventList"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarEventBookingEventList"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageSideBarEventLink"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"content"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"eventThumbnail"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"thumbnailAlt"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageSideBarFlag"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"country"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageSideBarFixedColumns"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"headerSection"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"firstColBody"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"secondColBody"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageSideBarFixedTabsLayout"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"firstTab"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"firstHeading"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"firstBody"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"secondTab"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"secondHeading"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"secondBody"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageSideBarGoogleMaps"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"embedUrl"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"embedWidth"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"embedHeight"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageAfterBodyGridLayoutGridsBlocks"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"showTitle"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"image"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"relatedImage"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"linkContent"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageSideBarGridLayoutGrids"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"gridTitle"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"showGridTitle"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"centeredGridTitle"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"showHeaderDivider"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"offsetGridStart"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"blocks"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyGridLayoutGridsBlocks"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageSideBarGridLayout"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"grids"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarGridLayoutGrids"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageSideBarHeroActions"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"type"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"icon"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageSideBarHeroImage"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"src"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"alt"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageSideBarHero"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"tagline"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"headline"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"text"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"actions"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarHeroActions"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"image"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarHeroImage"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"color"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageSideBarHorizontalCardCardList"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"content"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"thumbnail"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageSideBarHorizontalCardButton"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"text"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageSideBarHorizontalCard"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"cardList"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarHorizontalCardCardList"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"button"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarHorizontalCardButton"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageSideBarInternalCarouselItems"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"imgSrc"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageSideBarInternalCarouselTechnologies"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"name"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageSideBarInternalCarousel"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"items"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarInternalCarouselItems"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"header"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"paragraph"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"website"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"technologies"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarInternalCarouselTechnologies"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"caseStudyUrl"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"videoUrl"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageSideBarJoinAsPresenter"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"img"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageSideBarJoinGithub"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageSideBarJotFormEmbed"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"jotFormId"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"buttonText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"containerClass"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"buttonClass"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"animated"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"PageSideBarLatestTechBadges"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"UserGroupGlobal"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageSideBarLatestTech"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"badges"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarLatestTechBadges"}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyLocationBlockLocationListLocation"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"Locations"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageSideBarLocationBlockLocationList"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"location"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyLocationBlockLocationListLocation"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageSideBarLocationBlockChapelWebsite"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"URL"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageSideBarLocationBlock"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"locationList"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarLocationBlockLocationList"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"chapelWebsite"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarLocationBlockChapelWebsite"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageSideBarNewslettersTable"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"headerText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageSideBarOrganizer"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"profileImg"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"profileLink"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"name"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"position"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"content"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"PageSideBarPaymentBlockPayments"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"PaymentDetails"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageSideBarPaymentBlock"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"subTitle"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"payments"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarPaymentBlockPayments"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"footer"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"creditImgSrc"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"altTxt"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyPresenterBlockPresenterListPresenter"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"Presenter"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageSideBarPresenterBlockPresenterList"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"presenter"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyPresenterBlockPresenterListPresenter"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageSideBarPresenterBlockOtherEvent"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"eventURL"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageSideBarPresenterBlock"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"header"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"presenterList"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarPresenterBlockPresenterList"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"otherEvent"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarPresenterBlockOtherEvent"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageSideBarRecurringEvent"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"applyLinkRedirect"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"day"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageSideBarSectionHeader"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"headerText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageSideBarServiceCardsBigCards"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"description"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"color"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"imgSrc"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageSideBarServiceCardsSmallCards"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"color"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"imgSrc"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"isExternal"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageSideBarServiceCardsLinks"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageSideBarServiceCards"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"bigCardsLabel"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"bigCards"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarServiceCardsBigCards"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"smallCardsLabel"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"smallCards"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarServiceCardsSmallCards"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"links"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarServiceCardsLinks"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"backgroundColor"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageAfterBodyTableLayoutRowsCells"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"cellValue"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageSideBarTableLayoutRows"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"cells"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyTableLayoutRowsCells"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"isHeader"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageSideBarTableLayout"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"tableStyle"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"firstColBold"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"headers"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"rows"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarTableLayoutRows"}}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyTestimonialsListExcludedCategoriesCategoryName"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"TestimonialCategories"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageSideBarTestimonialsListExcludedCategories"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"categoryName"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyTestimonialsListExcludedCategoriesCategoryName"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageSideBarTestimonialsList"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"excludedCategories"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarTestimonialsListExcludedCategories"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageSideBarTrainingInformationTrainingInformationItems"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"header"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"body"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageSideBarTrainingInformation"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"trainingInformationItems"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarTrainingInformationTrainingInformationItems"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageSideBarTrainingLearningOutcomeListItems"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"content"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"icon"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageSideBarTrainingLearningOutcome"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"header"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"listItems"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarTrainingLearningOutcomeListItems"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageSideBarTweetEmbed"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"url"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageSideBarUpcomingEvents"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"numberOfEvents"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageSideBarUtilityButton"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"buttonText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"size"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"btnIcon"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"animated"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"uncentered"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"removeTopMargin"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"openInNewTab"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageSideBarVerticalImageLayout"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"imageSrc"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"altText"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"imageLink"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"height"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"width"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"message"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"sizes"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageSideBarVerticalListItem"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"content"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"index"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"icon"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"iconScale"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"afterBody"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageSideBarVideoEmbed"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"url"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"videoWidth"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"removeMargin"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"uncentre"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"overflow"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"caption"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"duration"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageSideBarInlineJotForm"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"jotFormId"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"additionalClasses"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"PageSideBar"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarAboutUs"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarAgenda"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarAgreementForm"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarInterestForm"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarBookingButton"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarBuiltOnAzure"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarCarousel"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarCitation"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarClientList"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarClientLogos"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarColorBlock"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarColorPalette"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarContent"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarContentCard"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarCustomDownloadButton"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarCustomImage"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarDomainFromQuery"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarDownloadBlock"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarDynamicColumns"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarEventBooking"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarEventLink"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarFlag"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarFixedColumns"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarFixedTabsLayout"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarGoogleMaps"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarGridLayout"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarHero"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarHorizontalCard"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarInternalCarousel"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarJoinAsPresenter"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarJoinGithub"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarJotFormEmbed"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarLatestTech"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarLocationBlock"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarNewslettersTable"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarOrganizer"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarPaymentBlock"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarPresenterBlock"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarRecurringEvent"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarSectionHeader"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarServiceCards"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarTableLayout"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarTestimonialsList"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarTrainingInformation"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarTrainingLearningOutcome"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarTweetEmbed"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarUpcomingEvents"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarUtilityButton"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarVerticalImageLayout"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarVerticalListItem"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarVideoEmbed"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarInlineJotForm"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageAfterBodyAboutUs"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"backgroundColor"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"showMap"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageAfterBodyAgendaAgendaItemList"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"placeholder"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"body"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageAfterBodyAgenda"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"header"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"textColor"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"agendaItemList"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyAgendaAgendaItemList"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageAfterBodyAgreementFormFields"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"id"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"placeholder"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"resizeable"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageAfterBodyAgreementForm"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"backgroundColor"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"fields"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyAgreementFormFields"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageAfterBodyInterestForm"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"buttonText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageAfterBodyBookingButton"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"buttonText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"animated"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageAfterBodyBuiltOnAzure"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"backgroundColor"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageAfterBodyCarouselItems"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"openIn"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"imgSrc"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageAfterBodyCarousel"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"items"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyCarouselItems"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"backgroundColor"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"delay"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"showOnMobileDevices"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageAfterBodyCitation"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"author"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"article"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyClientListCategoriesCategory"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"ClientCategories"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageAfterBodyClientListCategories"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"category"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyClientListCategoriesCategory"}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyClientListClientsCategoriesCategory"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"ClientCategories"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ArticlesIndex_bodyClientListClientsCategories"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"category"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyClientListClientsCategoriesCategory"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageAfterBodyClientListClients"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"name"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"logo"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"logoUrl"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"content"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"caseStudyUrl"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"categories"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyClientListClientsCategories"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageAfterBodyClientList"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"categories"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyClientListCategories"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"clients"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyClientListClients"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageAfterBodyClientLogos"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"altText"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageAfterBodyColorBlockColorRow"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"firstColor"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"fText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"secondColor"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"sText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"caption"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageAfterBodyColorBlock"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"subTitle"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"colorRow"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyColorBlockColorRow"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageAfterBodyColorPalette"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"name"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageAfterBodyContent"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"content"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"paddingClass"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"size"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"align"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"backgroundColor"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageAfterBodyContentCard"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"prose"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"centerAlignedText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"content"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageAfterBodyCustomDownloadButton"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"btnText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"btnLink"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageAfterBodyCustomImage"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"src"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"altText"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"alignment"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"height"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"width"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"customClass"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"caption"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"captionColor"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"sizes"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageAfterBodyDomainFromQuery"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"showDomain"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageAfterBodyDownloadBlockDownloads"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"header"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"img"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"imgBackground"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"firstLinkText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"firstLink"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"secondLinkText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"secondLink"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageAfterBodyDownloadBlock"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"downloads"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyDownloadBlockDownloads"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"bottomBorder"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageAfterBodyDynamicColumns"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"colBody"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"colCount"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyEventBookingEventListLocation"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"Locations"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageAfterBodyEventBookingEventList"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"city"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"date"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"bookingURL"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"location"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyEventBookingEventListLocation"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageAfterBodyEventBooking"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"eventDurationInDays"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"price"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"discountPrice"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"gstText"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"discountNote"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"eventList"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyEventBookingEventList"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageAfterBodyEventLink"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"content"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"eventThumbnail"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"thumbnailAlt"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageAfterBodyFlag"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"country"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageAfterBodyFixedColumns"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"headerSection"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"firstColBody"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"secondColBody"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayout"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"firstTab"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"firstHeading"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"firstBody"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"secondTab"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"secondHeading"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"secondBody"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageAfterBodyGoogleMaps"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"embedUrl"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"embedWidth"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"embedHeight"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ArticlesIndex_bodyGridLayoutGridsBlocks"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"showTitle"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"image"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"relatedImage"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"linkContent"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageAfterBodyGridLayoutGrids"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"gridTitle"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"showGridTitle"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"centeredGridTitle"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"showHeaderDivider"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"offsetGridStart"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"blocks"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyGridLayoutGridsBlocks"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageAfterBodyGridLayout"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"grids"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyGridLayoutGrids"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageAfterBodyHeroActions"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"type"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"icon"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageAfterBodyHeroImage"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"src"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"alt"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageAfterBodyHero"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"tagline"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"headline"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"text"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"actions"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyHeroActions"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"image"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyHeroImage"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"color"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageAfterBodyHorizontalCardCardList"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"content"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"thumbnail"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageAfterBodyHorizontalCardButton"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"text"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageAfterBodyHorizontalCard"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"cardList"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyHorizontalCardCardList"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"button"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyHorizontalCardButton"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageAfterBodyInternalCarouselItems"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"imgSrc"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageAfterBodyInternalCarouselTechnologies"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"name"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageAfterBodyInternalCarousel"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"items"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyInternalCarouselItems"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"header"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"paragraph"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"website"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"technologies"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyInternalCarouselTechnologies"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"caseStudyUrl"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"videoUrl"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageAfterBodyJoinAsPresenter"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"img"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageAfterBodyJoinGithub"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageAfterBodyJotFormEmbed"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"jotFormId"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"buttonText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"containerClass"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"buttonClass"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"animated"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyLatestTechBadges"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"UserGroupGlobal"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageAfterBodyLatestTech"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"badges"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyLatestTechBadges"}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyLocationBlockLocationListLocation"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"Locations"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageAfterBodyLocationBlockLocationList"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"location"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyLocationBlockLocationListLocation"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageAfterBodyLocationBlockChapelWebsite"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"URL"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageAfterBodyLocationBlock"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"locationList"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyLocationBlockLocationList"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"chapelWebsite"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyLocationBlockChapelWebsite"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageAfterBodyNewslettersTable"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"headerText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageAfterBodyOrganizer"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"profileImg"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"profileLink"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"name"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"position"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"content"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyPaymentBlockPayments"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"PaymentDetails"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageAfterBodyPaymentBlock"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"subTitle"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"payments"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyPaymentBlockPayments"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"footer"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"creditImgSrc"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"altTxt"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyPresenterBlockPresenterListPresenter"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"Presenter"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageAfterBodyPresenterBlockPresenterList"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"presenter"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyPresenterBlockPresenterListPresenter"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageAfterBodyPresenterBlockOtherEvent"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"eventURL"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageAfterBodyPresenterBlock"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"header"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"presenterList"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyPresenterBlockPresenterList"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"otherEvent"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyPresenterBlockOtherEvent"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageAfterBodyRecurringEvent"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"applyLinkRedirect"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"day"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageAfterBodySectionHeader"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"headerText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageAfterBodyServiceCardsBigCards"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"description"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"color"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"imgSrc"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageAfterBodyServiceCardsSmallCards"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"color"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"imgSrc"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"isExternal"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageAfterBodyServiceCardsLinks"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageAfterBodyServiceCards"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"bigCardsLabel"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"bigCards"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyServiceCardsBigCards"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"smallCardsLabel"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"smallCards"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyServiceCardsSmallCards"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"links"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyServiceCardsLinks"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"backgroundColor"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ArticlesIndex_bodyTableLayoutRowsCells"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"cellValue"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageAfterBodyTableLayoutRows"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"cells"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyTableLayoutRowsCells"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"isHeader"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageAfterBodyTableLayout"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"tableStyle"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"firstColBold"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"headers"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"rows"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyTableLayoutRows"}}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyTestimonialsListExcludedCategoriesCategoryName"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"TestimonialCategories"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageAfterBodyTestimonialsListExcludedCategories"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"categoryName"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyTestimonialsListExcludedCategoriesCategoryName"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageAfterBodyTestimonialsList"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"excludedCategories"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyTestimonialsListExcludedCategories"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageAfterBodyTrainingInformationTrainingInformationItems"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"header"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"body"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageAfterBodyTrainingInformation"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"trainingInformationItems"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyTrainingInformationTrainingInformationItems"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageAfterBodyTrainingLearningOutcomeListItems"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"content"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"icon"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageAfterBodyTrainingLearningOutcome"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"header"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"listItems"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyTrainingLearningOutcomeListItems"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageAfterBodyTweetEmbed"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"url"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageAfterBodyUpcomingEvents"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"numberOfEvents"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageAfterBodyUtilityButton"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"buttonText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"size"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"btnIcon"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"animated"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"uncentered"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"removeTopMargin"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"openInNewTab"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageAfterBodyVerticalImageLayout"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"imageSrc"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"altText"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"imageLink"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"height"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"width"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"message"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"sizes"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageAfterBodyVerticalListItem"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"content"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"index"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"icon"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"iconScale"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"afterBody"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageAfterBodyVideoEmbed"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"url"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"videoWidth"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"removeMargin"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"uncentre"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"overflow"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"caption"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"duration"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageAfterBodyInlineJotForm"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"jotFormId"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"additionalClasses"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"PageAfterBody"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyAboutUs"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyAgenda"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyAgreementForm"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyInterestForm"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyBookingButton"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyBuiltOnAzure"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyCarousel"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyCitation"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyClientList"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyClientLogos"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyColorBlock"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyColorPalette"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyContent"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyContentCard"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyCustomDownloadButton"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyCustomImage"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyDomainFromQuery"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyDownloadBlock"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyDynamicColumns"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyEventBooking"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyEventLink"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyFlag"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyFixedColumns"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayout"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyGoogleMaps"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyGridLayout"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyHero"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyHorizontalCard"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyInternalCarousel"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyJoinAsPresenter"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyJoinGithub"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyJotFormEmbed"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyLatestTech"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyLocationBlock"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyNewslettersTable"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyOrganizer"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyPaymentBlock"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyPresenterBlock"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyRecurringEvent"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodySectionHeader"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyServiceCards"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyTableLayout"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyTestimonialsList"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyTrainingInformation"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyTrainingLearningOutcome"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyTweetEmbed"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyUpcomingEvents"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyUtilityButton"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyVerticalImageLayout"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyVerticalListItem"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyVideoEmbed"}},{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyInlineJotForm"}}]},{"kind":"ObjectTypeDefinition","interfaces":[{"kind":"NamedType","name":{"kind":"Name","value":"Node"}},{"kind":"NamedType","name":{"kind":"Name","value":"Document"}}],"directives":[],"name":{"kind":"Name","value":"Page"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"tip"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"seo"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSeo"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"breadcrumbs"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"subTitle"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"beforeBody"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBody"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_body"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"removeBodyTopMargin"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"sideBar"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBar"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"centeredBodyText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"afterBody"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBody"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"showAzureFooter"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"id"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ID"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_sys"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"SystemInfo"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_values"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"StringFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"startsWith"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eq"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"exists"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"in"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"BooleanFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eq"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"exists"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"startsWith"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eq"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"exists"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"in"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"NumberFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"lt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"lte"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"gte"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"gt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eq"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"exists"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"in"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSeoImagesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSeoFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"description"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"canonical"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showBreadcrumb"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"images"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSeoImagesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"RichTextFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"startsWith"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eq"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"exists"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyAboutUsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showMap"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarAgendaAgendaItemListBodyVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyAgendaAgendaItemListBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarAgendaAgendaItemListBodyVerticalListItemFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyAgendaAgendaItemListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"placeholder"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"body"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyAgendaAgendaItemListBodyFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyAgendaFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"textColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"agendaItemList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyAgendaAgendaItemListFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyAgreementFormFieldsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"id"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"placeholder"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"resizeable"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyAgreementFormFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fields"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyAgreementFormFieldsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyInterestFormFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyBuiltOnAzureFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyCarouselItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openIn"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyCarouselFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyCarouselItemsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"delay"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showOnMobileDevices"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyCitationFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"author"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"article"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyClientListCategoriesCategoryFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"clientCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ClientCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyClientListCategoriesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"category"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyClientListCategoriesCategoryFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarClientListClientsContentUtilityButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnIcon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentered"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeTopMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openInNewTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarClientListClientsContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarClientListClientsContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyClientListClientsContentContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyClientListClientsContentContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyClientListClientsContentContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyClientListClientsContentContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyClientListClientsContentContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyClientListClientsContentContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyClientListClientsContentContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyClientListClientsContentContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyClientListClientsContentContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyClientListClientsContentContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyClientListClientsContentContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarClientListClientsContentContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyClientListClientsContentContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyClientListClientsContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"UtilityButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarClientListClientsContentUtilityButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarClientListClientsContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarClientListClientsContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarClientListClientsContentContentCardFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarClientListClientsCategoriesCategoryFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"clientCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ClientCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyClientListClientsCategoriesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"category"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarClientListClientsCategoriesCategoryFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyClientListClientsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"logo"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"logoUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyClientListClientsContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caseStudyUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"categories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyClientListClientsCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyClientListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"categories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyClientListCategoriesFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"clients"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyClientListClientsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyClientLogosFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyColorPaletteFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyContentContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyContentContentClientLogosFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyContentContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarContentContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyContentContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarContentContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyContentContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyContentContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ClientLogos"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyContentContentClientLogosFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyContentContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyContentContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyContentContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paddingClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"align"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyFixedColumnsFirstColBodyContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyFixedColumnsFirstColBodyContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyFixedColumnsFirstColBodyContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyFixedColumnsSecondColBodyContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyFixedColumnsFirstColBodyContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyFixedColumnsSecondColBodyContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyFixedColumnsFirstColBodyContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyFixedColumnsFirstColBodyContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyFixedColumnsFirstColBodyContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyFixedColumnsFirstColBodyContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyCustomDownloadButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyDomainFromQueryFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showDomain"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyDownloadBlockDownloadsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"img"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgBackground"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstLinkText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondLinkText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyDownloadBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"downloads"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyDownloadBlockDownloadsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bottomBorder"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyDynamicColumnsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"DatetimeFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"after"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"before"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eq"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"exists"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"in"},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyEventBookingEventListLocationFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"locations"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"LocationsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyEventBookingEventListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"city"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"date"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DatetimeFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bookingURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"location"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyEventBookingEventListLocationFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyEventBookingFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventDurationInDays"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"price"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"discountPrice"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"gstText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"discountNote"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyEventBookingEventListFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyFixedColumnsFirstColBodyEventLinkContentFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyEventLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyFixedColumnsFirstColBodyEventLinkContentFlagFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyEventLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyEventLinkContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventThumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnailAlt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyFixedColumnsFirstColBodyContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyFixedColumnsFirstColBodyContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyFixedColumnsFirstColBodyContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedColumnsFirstColBodyContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyFixedColumnsFirstColBodyContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedColumnsFirstColBodyContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarFixedColumnsFirstColBodyContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyFixedColumnsFirstColBodyContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyFixedColumnsFirstColBodyContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyFixedColumnsFirstColBodyContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyFixedColumnsFirstColBodyContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyFixedColumnsFirstColBodyContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarFixedColumnsFirstColBodyContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyFixedColumnsFirstColBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyFixedColumnsFirstColBodyEventLinkContentFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarFixedColumnsFirstColBodyEventLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyFixedColumnsFirstColBodyEventLinkContentFlagFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyFixedColumnsFirstColBodyEventLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarFixedColumnsFirstColBodyEventLinkContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventThumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnailAlt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyFixedColumnsFirstColBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyFixedColumnsFirstColBodyContentCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyFixedColumnsFirstColBodyCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyFixedColumnsFirstColBodyEventLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyFixedColumnsSecondColBodyContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyFixedColumnsSecondColBodyContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyFixedColumnsSecondColBodyContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedColumnsSecondColBodyContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyFixedColumnsSecondColBodyContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedColumnsSecondColBodyContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarFixedColumnsSecondColBodyContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyFixedColumnsSecondColBodyContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyFixedColumnsSecondColBodyContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyFixedColumnsSecondColBodyContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyFixedColumnsSecondColBodyContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyFixedColumnsSecondColBodyContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarFixedColumnsSecondColBodyContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyFixedColumnsSecondColBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyFixedColumnsSecondColBodyEventLinkContentFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarFixedColumnsSecondColBodyEventLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyFixedColumnsSecondColBodyEventLinkContentFlagFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyFixedColumnsSecondColBodyEventLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarFixedColumnsSecondColBodyEventLinkContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventThumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnailAlt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyFixedColumnsSecondColBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyFixedColumnsSecondColBodyContentCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyFixedColumnsSecondColBodyCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyFixedColumnsSecondColBodyEventLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyFixedColumnsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headerSection"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyFixedColumnsFirstColBodyFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyFixedColumnsSecondColBodyFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyFixedTabsLayoutFirstHeadingVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyFixedTabsLayoutFirstHeadingBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarFixedTabsLayoutFirstHeadingExpertBlockExpertListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"person"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"peopleURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"skills"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarFixedTabsLayoutFirstHeadingExpertBlockLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyFixedTabsLayoutFirstHeadingExpertBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"expertList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarFixedTabsLayoutFirstHeadingExpertBlockExpertListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarFixedTabsLayoutFirstHeadingExpertBlockLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarFixedTabsLayoutFirstHeadingYoutubePlaylistBlockYoutubePlaylistFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videosCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubePlaylist"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarFixedTabsLayoutFirstHeadingYoutubePlaylistBlockYoutubePlaylistFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyFixedTabsLayoutFirstHeadingCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyFixedTabsLayoutFirstHeadingFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyFixedTabsLayoutFirstHeadingVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyFixedTabsLayoutFirstHeadingBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ExpertBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyFixedTabsLayoutFirstHeadingExpertBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"YoutubePlaylistBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyFixedTabsLayoutFirstHeadingCustomImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyFixedTabsLayoutFirstBodyVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyFixedTabsLayoutFirstBodyBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarFixedTabsLayoutFirstBodyExpertBlockExpertListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"person"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"peopleURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"skills"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarFixedTabsLayoutFirstBodyExpertBlockLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyFixedTabsLayoutFirstBodyExpertBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"expertList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarFixedTabsLayoutFirstBodyExpertBlockExpertListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarFixedTabsLayoutFirstBodyExpertBlockLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarFixedTabsLayoutFirstBodyYoutubePlaylistBlockYoutubePlaylistFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videosCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubePlaylist"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarFixedTabsLayoutFirstBodyYoutubePlaylistBlockYoutubePlaylistFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyFixedTabsLayoutFirstBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyFixedTabsLayoutFirstBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyFixedTabsLayoutFirstBodyVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyFixedTabsLayoutFirstBodyBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ExpertBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyFixedTabsLayoutFirstBodyExpertBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"YoutubePlaylistBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyFixedTabsLayoutFirstBodyCustomImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyFixedTabsLayoutSecondHeadingVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyFixedTabsLayoutSecondHeadingBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarFixedTabsLayoutSecondHeadingExpertBlockExpertListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"person"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"peopleURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"skills"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarFixedTabsLayoutSecondHeadingExpertBlockLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyFixedTabsLayoutSecondHeadingExpertBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"expertList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarFixedTabsLayoutSecondHeadingExpertBlockExpertListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarFixedTabsLayoutSecondHeadingExpertBlockLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarFixedTabsLayoutSecondHeadingYoutubePlaylistBlockYoutubePlaylistFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videosCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubePlaylist"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarFixedTabsLayoutSecondHeadingYoutubePlaylistBlockYoutubePlaylistFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyFixedTabsLayoutSecondHeadingCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyFixedTabsLayoutSecondHeadingFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyFixedTabsLayoutSecondHeadingVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyFixedTabsLayoutSecondHeadingBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ExpertBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyFixedTabsLayoutSecondHeadingExpertBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"YoutubePlaylistBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyFixedTabsLayoutSecondHeadingCustomImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyFixedTabsLayoutSecondBodyVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyFixedTabsLayoutSecondBodyBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarFixedTabsLayoutSecondBodyExpertBlockExpertListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"person"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"peopleURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"skills"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarFixedTabsLayoutSecondBodyExpertBlockLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyFixedTabsLayoutSecondBodyExpertBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"expertList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarFixedTabsLayoutSecondBodyExpertBlockExpertListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarFixedTabsLayoutSecondBodyExpertBlockLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarFixedTabsLayoutSecondBodyYoutubePlaylistBlockYoutubePlaylistFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videosCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubePlaylist"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarFixedTabsLayoutSecondBodyYoutubePlaylistBlockYoutubePlaylistFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyFixedTabsLayoutSecondBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyFixedTabsLayoutSecondBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyFixedTabsLayoutSecondBodyVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyFixedTabsLayoutSecondBodyBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ExpertBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyFixedTabsLayoutSecondBodyExpertBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"YoutubePlaylistBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyFixedTabsLayoutSecondBodyCustomImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyFixedTabsLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstHeading"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyFixedTabsLayoutFirstHeadingFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyFixedTabsLayoutFirstBodyFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondHeading"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyFixedTabsLayoutSecondHeadingFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyFixedTabsLayoutSecondBodyFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyGoogleMapsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"embedUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"embedWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"embedHeight"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyGridLayoutGridsBlocksLinkContentUtilityButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnIcon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentered"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeTopMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openInNewTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarGridLayoutGridsBlocksLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"UtilityButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyGridLayoutGridsBlocksLinkContentUtilityButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyGridLayoutGridsBlocksFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"image"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relatedImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"linkContent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarGridLayoutGridsBlocksLinkContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyGridLayoutGridsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"gridTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showGridTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centeredGridTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showHeaderDivider"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"offsetGridStart"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"blocks"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyGridLayoutGridsBlocksFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyGridLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"grids"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyGridLayoutGridsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyHeroActionsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"type"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyHeroImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyHeroFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"tagline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"actions"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyHeroActionsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"image"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyHeroImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyHorizontalCardCardListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyHorizontalCardButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyHorizontalCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cardList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyHorizontalCardCardListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"button"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyHorizontalCardButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyInternalCarouselItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyInternalCarouselTechnologiesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyInternalCarouselFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyInternalCarouselItemsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paragraph"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"website"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"technologies"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyInternalCarouselTechnologiesFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caseStudyUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyJoinAsPresenterFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"img"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyJoinGithubFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyJotFormEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"jotFormId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"containerClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyLatestTechBadgesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"userGroupGlobal"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"UserGroupGlobalFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyLatestTechFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"badges"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyLatestTechBadgesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyLocationBlockLocationListLocationFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"locations"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"LocationsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyLocationBlockLocationListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"location"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyLocationBlockLocationListLocationFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyLocationBlockChapelWebsiteFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"URL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyLocationBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"locationList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyLocationBlockLocationListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"chapelWebsite"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyLocationBlockChapelWebsiteFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyNewslettersTableFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headerText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyOrganizerFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImg"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"position"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyPaymentBlockPaymentsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paymentDetails"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PaymentDetailsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyPaymentBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"payments"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyPaymentBlockPaymentsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"footer"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"creditImgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altTxt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyPresenterBlockPresenterListPresenterFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"presenter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PresenterFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyPresenterBlockPresenterListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"presenter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyPresenterBlockPresenterListPresenterFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyPresenterBlockOtherEventFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyPresenterBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"presenterList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyPresenterBlockPresenterListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"otherEvent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyPresenterBlockOtherEventFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyRecurringEventFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"applyLinkRedirect"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"day"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodySectionHeaderFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headerText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyServiceCardsBigCardsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"description"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyServiceCardsSmallCardsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"isExternal"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyServiceCardsLinksFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyServiceCardsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bigCardsLabel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bigCards"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyServiceCardsBigCardsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"smallCardsLabel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"smallCards"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyServiceCardsSmallCardsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"links"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyServiceCardsLinksFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyTableLayoutRowsCellsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cellValue"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyTableLayoutRowsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cells"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyTableLayoutRowsCellsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"isHeader"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyTableLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"tableStyle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColBold"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headers"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"rows"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyTableLayoutRowsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyTestimonialsListExcludedCategoriesCategoryNameFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"testimonialCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"TestimonialCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyTestimonialsListExcludedCategoriesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"categoryName"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyTestimonialsListExcludedCategoriesCategoryNameFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyTestimonialsListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"excludedCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyTestimonialsListExcludedCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarTrainingInformationTrainingInformationItemsBodyVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarTrainingInformationTrainingInformationItemsBodyRecurringEventFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"applyLinkRedirect"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"day"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyTrainingInformationTrainingInformationItemsBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarTrainingInformationTrainingInformationItemsBodyVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"RecurringEvent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarTrainingInformationTrainingInformationItemsBodyRecurringEventFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyTrainingInformationTrainingInformationItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"body"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyTrainingInformationTrainingInformationItemsBodyFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyTrainingInformationFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"trainingInformationItems"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyTrainingInformationTrainingInformationItemsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyTrainingLearningOutcomeListItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyTrainingLearningOutcomeFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"listItems"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyTrainingLearningOutcomeListItemsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyTweetEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyUpcomingEventsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"numberOfEvents"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyUtilityButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnIcon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentered"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeTopMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openInNewTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyVerticalImageLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imageSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imageLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"message"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyInlineJotFormFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"jotFormId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"additionalClasses"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageBeforeBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"AboutUs"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyAboutUsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Agenda"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyAgendaFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"AgreementForm"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyAgreementFormFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"InterestForm"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyInterestFormFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BuiltOnAzure"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyBuiltOnAzureFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Carousel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyCarouselFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Citation"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyCitationFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ClientList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyClientListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ClientLogos"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyClientLogosFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyColorBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorPalette"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyColorPaletteFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyContentCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomDownloadButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyCustomDownloadButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"DomainFromQuery"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyDomainFromQueryFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"DownloadBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyDownloadBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"DynamicColumns"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyDynamicColumnsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventBooking"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyEventBookingFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyEventLinkFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyFlagFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"FixedColumns"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyFixedColumnsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"FixedTabsLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyFixedTabsLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"GoogleMaps"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyGoogleMapsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"GridLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyGridLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Hero"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyHeroFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"HorizontalCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyHorizontalCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"InternalCarousel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyInternalCarouselFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"joinAsPresenter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyJoinAsPresenterFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"joinGithub"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyJoinGithubFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"JotFormEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyJotFormEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"LatestTech"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyLatestTechFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"LocationBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyLocationBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"NewslettersTable"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyNewslettersTableFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"organizer"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyOrganizerFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paymentBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyPaymentBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"PresenterBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyPresenterBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"RecurringEvent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyRecurringEventFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"SectionHeader"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodySectionHeaderFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ServiceCards"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyServiceCardsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TableLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyTableLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TestimonialsList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyTestimonialsListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TrainingInformation"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyTrainingInformationFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TrainingLearningOutcome"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyTrainingLearningOutcomeFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TweetEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyTweetEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"UpcomingEvents"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyUpcomingEventsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"UtilityButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyUtilityButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalImageLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyVerticalImageLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"InlineJotForm"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyInlineJotFormFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyAboutUsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showMap"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyAgendaAgendaItemListBodyVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarAgendaAgendaItemListBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyAgendaAgendaItemListBodyVerticalListItemFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyAgendaAgendaItemListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"placeholder"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"body"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarAgendaAgendaItemListBodyFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyAgendaFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"textColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"agendaItemList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyAgendaAgendaItemListFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyAgreementFormFieldsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"id"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"placeholder"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"resizeable"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyAgreementFormFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fields"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyAgreementFormFieldsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyInterestFormFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyBuiltOnAzureFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyCarouselItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openIn"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyCarouselFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyCarouselItemsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"delay"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showOnMobileDevices"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyCitationFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"author"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"article"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarClientListCategoriesCategoryFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"clientCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ClientCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyClientListCategoriesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"category"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarClientListCategoriesCategoryFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyClientListClientsContentUtilityButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnIcon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentered"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeTopMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openInNewTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyClientListClientsContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyClientListClientsContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyClientListClientsContentContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyClientListClientsContentContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyClientListClientsContentContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyClientListClientsContentContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyClientListClientsContentContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyClientListClientsContentContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyClientListClientsContentContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyClientListClientsContentContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyClientListClientsContentContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyClientListClientsContentContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyClientListClientsContentContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyClientListClientsContentContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyClientListClientsContentContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarClientListClientsContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"UtilityButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyClientListClientsContentUtilityButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyClientListClientsContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyClientListClientsContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyClientListClientsContentContentCardFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyClientListClientsCategoriesCategoryFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"clientCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ClientCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarClientListClientsCategoriesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"category"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyClientListClientsCategoriesCategoryFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyClientListClientsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"logo"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"logoUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarClientListClientsContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caseStudyUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"categories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarClientListClientsCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyClientListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"categories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyClientListCategoriesFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"clients"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyClientListClientsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyClientLogosFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyColorPaletteFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarContentContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarContentContentClientLogosFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarContentContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyContentContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarContentContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyContentContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyContentContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarContentContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ClientLogos"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarContentContentClientLogosFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarContentContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarContentContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyContentContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paddingClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"align"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyCustomDownloadButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyDomainFromQueryFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showDomain"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyDownloadBlockDownloadsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"img"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgBackground"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstLinkText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondLinkText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyDownloadBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"downloads"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyDownloadBlockDownloadsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bottomBorder"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyDynamicColumnsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarEventBookingEventListLocationFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"locations"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"LocationsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyEventBookingEventListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"city"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"date"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DatetimeFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bookingURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"location"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarEventBookingEventListLocationFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyEventBookingFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventDurationInDays"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"price"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"discountPrice"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"gstText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"discountNote"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyEventBookingEventListFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarEventLinkContentFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyEventLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarEventLinkContentFlagFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyEventLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyEventLinkContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventThumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnailAlt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedColumnsFirstColBodyContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedColumnsFirstColBodyContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedColumnsFirstColBodyContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesSubTitleFixedColumnsFirstColBodyContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedColumnsFirstColBodyContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesSubTitleFixedColumnsFirstColBodyContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyFixedColumnsFirstColBodyContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedColumnsFirstColBodyContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedColumnsFirstColBodyContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedColumnsFirstColBodyContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedColumnsFirstColBodyContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarFixedColumnsFirstColBodyContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyFixedColumnsFirstColBodyContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarFixedColumnsFirstColBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedColumnsFirstColBodyEventLinkContentFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyFixedColumnsFirstColBodyEventLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedColumnsFirstColBodyEventLinkContentFlagFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarFixedColumnsFirstColBodyEventLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyFixedColumnsFirstColBodyEventLinkContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventThumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnailAlt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyFixedColumnsFirstColBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarFixedColumnsFirstColBodyContentCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarFixedColumnsFirstColBodyCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarFixedColumnsFirstColBodyEventLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedColumnsSecondColBodyContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedColumnsSecondColBodyContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedColumnsSecondColBodyContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesSubTitleFixedColumnsSecondColBodyContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedColumnsSecondColBodyContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesSubTitleFixedColumnsSecondColBodyContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyFixedColumnsSecondColBodyContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedColumnsSecondColBodyContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedColumnsSecondColBodyContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedColumnsSecondColBodyContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedColumnsSecondColBodyContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarFixedColumnsSecondColBodyContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyFixedColumnsSecondColBodyContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarFixedColumnsSecondColBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedColumnsSecondColBodyEventLinkContentFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyFixedColumnsSecondColBodyEventLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedColumnsSecondColBodyEventLinkContentFlagFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarFixedColumnsSecondColBodyEventLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyFixedColumnsSecondColBodyEventLinkContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventThumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnailAlt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyFixedColumnsSecondColBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarFixedColumnsSecondColBodyContentCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarFixedColumnsSecondColBodyCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarFixedColumnsSecondColBodyEventLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyFixedColumnsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headerSection"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyFixedColumnsFirstColBodyFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyFixedColumnsSecondColBodyFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarFixedTabsLayoutFirstHeadingVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarFixedTabsLayoutFirstHeadingBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayoutFirstHeadingExpertBlockExpertListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"person"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"peopleURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"skills"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayoutFirstHeadingExpertBlockLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarFixedTabsLayoutFirstHeadingExpertBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"expertList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayoutFirstHeadingExpertBlockExpertListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayoutFirstHeadingExpertBlockLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockYoutubePlaylistFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videosCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarFixedTabsLayoutFirstHeadingYoutubePlaylistBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubePlaylist"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockYoutubePlaylistFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarFixedTabsLayoutFirstHeadingCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyFixedTabsLayoutFirstHeadingFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarFixedTabsLayoutFirstHeadingVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarFixedTabsLayoutFirstHeadingBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ExpertBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarFixedTabsLayoutFirstHeadingExpertBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"YoutubePlaylistBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarFixedTabsLayoutFirstHeadingYoutubePlaylistBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarFixedTabsLayoutFirstHeadingCustomImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarFixedTabsLayoutFirstBodyVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarFixedTabsLayoutFirstBodyBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayoutFirstBodyExpertBlockExpertListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"person"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"peopleURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"skills"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayoutFirstBodyExpertBlockLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarFixedTabsLayoutFirstBodyExpertBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"expertList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayoutFirstBodyExpertBlockExpertListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayoutFirstBodyExpertBlockLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockYoutubePlaylistFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videosCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarFixedTabsLayoutFirstBodyYoutubePlaylistBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubePlaylist"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockYoutubePlaylistFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarFixedTabsLayoutFirstBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyFixedTabsLayoutFirstBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarFixedTabsLayoutFirstBodyVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarFixedTabsLayoutFirstBodyBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ExpertBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarFixedTabsLayoutFirstBodyExpertBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"YoutubePlaylistBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarFixedTabsLayoutFirstBodyYoutubePlaylistBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarFixedTabsLayoutFirstBodyCustomImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarFixedTabsLayoutSecondHeadingVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarFixedTabsLayoutSecondHeadingBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayoutSecondHeadingExpertBlockExpertListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"person"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"peopleURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"skills"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayoutSecondHeadingExpertBlockLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarFixedTabsLayoutSecondHeadingExpertBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"expertList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayoutSecondHeadingExpertBlockExpertListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayoutSecondHeadingExpertBlockLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockYoutubePlaylistFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videosCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarFixedTabsLayoutSecondHeadingYoutubePlaylistBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubePlaylist"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockYoutubePlaylistFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarFixedTabsLayoutSecondHeadingCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyFixedTabsLayoutSecondHeadingFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarFixedTabsLayoutSecondHeadingVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarFixedTabsLayoutSecondHeadingBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ExpertBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarFixedTabsLayoutSecondHeadingExpertBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"YoutubePlaylistBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarFixedTabsLayoutSecondHeadingYoutubePlaylistBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarFixedTabsLayoutSecondHeadingCustomImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarFixedTabsLayoutSecondBodyVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarFixedTabsLayoutSecondBodyBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayoutSecondBodyExpertBlockExpertListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"person"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"peopleURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"skills"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayoutSecondBodyExpertBlockLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarFixedTabsLayoutSecondBodyExpertBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"expertList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayoutSecondBodyExpertBlockExpertListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayoutSecondBodyExpertBlockLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockYoutubePlaylistFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videosCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarFixedTabsLayoutSecondBodyYoutubePlaylistBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubePlaylist"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockYoutubePlaylistFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarFixedTabsLayoutSecondBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyFixedTabsLayoutSecondBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarFixedTabsLayoutSecondBodyVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarFixedTabsLayoutSecondBodyBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ExpertBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarFixedTabsLayoutSecondBodyExpertBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"YoutubePlaylistBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarFixedTabsLayoutSecondBodyYoutubePlaylistBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarFixedTabsLayoutSecondBodyCustomImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyFixedTabsLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstHeading"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyFixedTabsLayoutFirstHeadingFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyFixedTabsLayoutFirstBodyFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondHeading"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyFixedTabsLayoutSecondHeadingFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyFixedTabsLayoutSecondBodyFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyGoogleMapsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"embedUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"embedWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"embedHeight"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyGridLayoutGridsBlocksLinkContentUtilityButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnIcon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentered"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeTopMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openInNewTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyGridLayoutGridsBlocksLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"UtilityButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyGridLayoutGridsBlocksLinkContentUtilityButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarGridLayoutGridsBlocksFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"image"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relatedImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"linkContent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyGridLayoutGridsBlocksLinkContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyGridLayoutGridsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"gridTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showGridTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centeredGridTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showHeaderDivider"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"offsetGridStart"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"blocks"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarGridLayoutGridsBlocksFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyGridLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"grids"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyGridLayoutGridsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyHeroActionsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"type"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyHeroImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyHeroFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"tagline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"actions"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyHeroActionsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"image"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyHeroImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyHorizontalCardCardListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyHorizontalCardButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyHorizontalCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cardList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyHorizontalCardCardListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"button"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyHorizontalCardButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyInternalCarouselItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyInternalCarouselTechnologiesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyInternalCarouselFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyInternalCarouselItemsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paragraph"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"website"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"technologies"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyInternalCarouselTechnologiesFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caseStudyUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyJoinAsPresenterFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"img"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyJoinGithubFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyJotFormEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"jotFormId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"containerClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyLatestTechBadgesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"userGroupGlobal"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"UserGroupGlobalFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyLatestTechFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"badges"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyLatestTechBadgesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarLocationBlockLocationListLocationFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"locations"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"LocationsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyLocationBlockLocationListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"location"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarLocationBlockLocationListLocationFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyLocationBlockChapelWebsiteFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"URL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyLocationBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"locationList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyLocationBlockLocationListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"chapelWebsite"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyLocationBlockChapelWebsiteFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyNewslettersTableFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headerText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyOrganizerFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImg"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"position"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyPaymentBlockPaymentsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paymentDetails"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PaymentDetailsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyPaymentBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"payments"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyPaymentBlockPaymentsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"footer"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"creditImgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altTxt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarPresenterBlockPresenterListPresenterFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"presenter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PresenterFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyPresenterBlockPresenterListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"presenter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarPresenterBlockPresenterListPresenterFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyPresenterBlockOtherEventFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyPresenterBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"presenterList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyPresenterBlockPresenterListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"otherEvent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyPresenterBlockOtherEventFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyRecurringEventFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"applyLinkRedirect"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"day"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodySectionHeaderFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headerText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyServiceCardsBigCardsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"description"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyServiceCardsSmallCardsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"isExternal"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyServiceCardsLinksFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyServiceCardsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bigCardsLabel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bigCards"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyServiceCardsBigCardsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"smallCardsLabel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"smallCards"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyServiceCardsSmallCardsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"links"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyServiceCardsLinksFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarTableLayoutRowsCellsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cellValue"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyTableLayoutRowsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cells"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarTableLayoutRowsCellsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"isHeader"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyTableLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"tableStyle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColBold"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headers"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"rows"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyTableLayoutRowsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarTestimonialsListExcludedCategoriesCategoryNameFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"testimonialCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"TestimonialCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyTestimonialsListExcludedCategoriesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"categoryName"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarTestimonialsListExcludedCategoriesCategoryNameFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyTestimonialsListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"excludedCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyTestimonialsListExcludedCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyTrainingInformationTrainingInformationItemsBodyVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyTrainingInformationTrainingInformationItemsBodyRecurringEventFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"applyLinkRedirect"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"day"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarTrainingInformationTrainingInformationItemsBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyTrainingInformationTrainingInformationItemsBodyVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"RecurringEvent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyTrainingInformationTrainingInformationItemsBodyRecurringEventFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyTrainingInformationTrainingInformationItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"body"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarTrainingInformationTrainingInformationItemsBodyFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyTrainingInformationFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"trainingInformationItems"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyTrainingInformationTrainingInformationItemsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyTrainingLearningOutcomeListItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyTrainingLearningOutcomeFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"listItems"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyTrainingLearningOutcomeListItemsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyTweetEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyUpcomingEventsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"numberOfEvents"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyUtilityButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnIcon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentered"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeTopMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openInNewTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyVerticalImageLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imageSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imageLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"message"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyInlineJotFormFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"jotFormId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"additionalClasses"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Page_bodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"AboutUs"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyAboutUsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Agenda"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyAgendaFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"AgreementForm"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyAgreementFormFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"InterestForm"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyInterestFormFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BuiltOnAzure"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyBuiltOnAzureFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Carousel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyCarouselFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Citation"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyCitationFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ClientList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyClientListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ClientLogos"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyClientLogosFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyColorBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorPalette"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyColorPaletteFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyContentCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomDownloadButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyCustomDownloadButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"DomainFromQuery"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyDomainFromQueryFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"DownloadBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyDownloadBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"DynamicColumns"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyDynamicColumnsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventBooking"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyEventBookingFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyEventLinkFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyFlagFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"FixedColumns"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyFixedColumnsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"FixedTabsLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyFixedTabsLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"GoogleMaps"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyGoogleMapsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"GridLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyGridLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Hero"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyHeroFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"HorizontalCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyHorizontalCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"InternalCarousel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyInternalCarouselFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"joinAsPresenter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyJoinAsPresenterFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"joinGithub"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyJoinGithubFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"JotFormEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyJotFormEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"LatestTech"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyLatestTechFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"LocationBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyLocationBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"NewslettersTable"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyNewslettersTableFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"organizer"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyOrganizerFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paymentBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyPaymentBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"PresenterBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyPresenterBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"RecurringEvent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyRecurringEventFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"SectionHeader"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodySectionHeaderFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ServiceCards"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyServiceCardsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TableLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyTableLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TestimonialsList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyTestimonialsListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TrainingInformation"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyTrainingInformationFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TrainingLearningOutcome"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyTrainingLearningOutcomeFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TweetEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyTweetEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"UpcomingEvents"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyUpcomingEventsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"UtilityButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyUtilityButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalImageLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyVerticalImageLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"InlineJotForm"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyInlineJotFormFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarAboutUsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showMap"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyAgendaAgendaItemListBodyVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyAgendaAgendaItemListBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyAgendaAgendaItemListBodyVerticalListItemFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarAgendaAgendaItemListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"placeholder"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"body"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyAgendaAgendaItemListBodyFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarAgendaFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"textColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"agendaItemList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarAgendaAgendaItemListFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarAgreementFormFieldsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"id"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"placeholder"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"resizeable"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarAgreementFormFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fields"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarAgreementFormFieldsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarInterestFormFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarBuiltOnAzureFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarCarouselItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openIn"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarCarouselFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarCarouselItemsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"delay"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showOnMobileDevices"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarCitationFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"author"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"article"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyClientListCategoriesCategoryFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"clientCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ClientCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarClientListCategoriesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"category"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyClientListCategoriesCategoryFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyClientListClientsContentUtilityButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnIcon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentered"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeTopMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openInNewTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyClientListClientsContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyClientListClientsContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyClientListClientsContentContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyClientListClientsContentContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyClientListClientsContentContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyClientListClientsContentContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyClientListClientsContentContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyClientListClientsContentContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyClientListClientsContentContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyClientListClientsContentContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyClientListClientsContentContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyClientListClientsContentContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyClientListClientsContentContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyClientListClientsContentContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyClientListClientsContentContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyClientListClientsContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"UtilityButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyClientListClientsContentUtilityButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyClientListClientsContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyClientListClientsContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyClientListClientsContentContentCardFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyClientListClientsCategoriesCategoryFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"clientCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ClientCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyClientListClientsCategoriesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"category"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyClientListClientsCategoriesCategoryFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarClientListClientsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"logo"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"logoUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyClientListClientsContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caseStudyUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"categories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyClientListClientsCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarClientListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"categories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarClientListCategoriesFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"clients"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarClientListClientsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarClientLogosFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarColorPaletteFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyContentContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyContentContentClientLogosFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyContentContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyContentContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyContentContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyContentContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarContentContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyContentContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ClientLogos"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyContentContentClientLogosFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyContentContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyContentContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarContentContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paddingClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"align"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarCustomDownloadButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarDomainFromQueryFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showDomain"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarDownloadBlockDownloadsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"img"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgBackground"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstLinkText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondLinkText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarDownloadBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"downloads"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarDownloadBlockDownloadsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bottomBorder"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarDynamicColumnsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyEventBookingEventListLocationFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"locations"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"LocationsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarEventBookingEventListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"city"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"date"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DatetimeFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bookingURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"location"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyEventBookingEventListLocationFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarEventBookingFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventDurationInDays"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"price"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"discountPrice"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"gstText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"discountNote"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarEventBookingEventListFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyEventLinkContentFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarEventLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyEventLinkContentFlagFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarEventLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarEventLinkContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventThumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnailAlt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesSubTitleFixedColumnsFirstColBodyContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesSubTitleFixedColumnsFirstColBodyContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesSubTitleFixedColumnsFirstColBodyContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyFixedColumnsFirstColBodyContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesSubTitleFixedColumnsFirstColBodyContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyFixedColumnsFirstColBodyContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedColumnsFirstColBodyContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesSubTitleFixedColumnsFirstColBodyContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesSubTitleFixedColumnsFirstColBodyContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesSubTitleFixedColumnsFirstColBodyContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesSubTitleFixedColumnsFirstColBodyContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyFixedColumnsFirstColBodyContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedColumnsFirstColBodyContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyFixedColumnsFirstColBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesSubTitleFixedColumnsFirstColBodyEventLinkContentFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedColumnsFirstColBodyEventLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesSubTitleFixedColumnsFirstColBodyEventLinkContentFlagFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyFixedColumnsFirstColBodyEventLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedColumnsFirstColBodyEventLinkContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventThumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnailAlt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarFixedColumnsFirstColBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyFixedColumnsFirstColBodyContentCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyFixedColumnsFirstColBodyCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyFixedColumnsFirstColBodyEventLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesSubTitleFixedColumnsSecondColBodyContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesSubTitleFixedColumnsSecondColBodyContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesSubTitleFixedColumnsSecondColBodyContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyFixedColumnsSecondColBodyContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesSubTitleFixedColumnsSecondColBodyContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyFixedColumnsSecondColBodyContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedColumnsSecondColBodyContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesSubTitleFixedColumnsSecondColBodyContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesSubTitleFixedColumnsSecondColBodyContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesSubTitleFixedColumnsSecondColBodyContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesSubTitleFixedColumnsSecondColBodyContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyFixedColumnsSecondColBodyContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedColumnsSecondColBodyContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyFixedColumnsSecondColBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesSubTitleFixedColumnsSecondColBodyEventLinkContentFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedColumnsSecondColBodyEventLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesSubTitleFixedColumnsSecondColBodyEventLinkContentFlagFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyFixedColumnsSecondColBodyEventLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedColumnsSecondColBodyEventLinkContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventThumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnailAlt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarFixedColumnsSecondColBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyFixedColumnsSecondColBodyContentCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyFixedColumnsSecondColBodyCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyFixedColumnsSecondColBodyEventLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarFixedColumnsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headerSection"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarFixedColumnsFirstColBodyFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarFixedColumnsSecondColBodyFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayoutFirstHeadingVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayoutFirstHeadingBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedTabsLayoutFirstHeadingExpertBlockExpertListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"person"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"peopleURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"skills"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedTabsLayoutFirstHeadingExpertBlockLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayoutFirstHeadingExpertBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"expertList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedTabsLayoutFirstHeadingExpertBlockExpertListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedTabsLayoutFirstHeadingExpertBlockLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockYoutubePlaylistFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videosCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubePlaylist"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockYoutubePlaylistFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayoutFirstHeadingCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarFixedTabsLayoutFirstHeadingFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayoutFirstHeadingVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayoutFirstHeadingBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ExpertBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayoutFirstHeadingExpertBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"YoutubePlaylistBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayoutFirstHeadingCustomImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayoutFirstBodyVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayoutFirstBodyBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedTabsLayoutFirstBodyExpertBlockExpertListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"person"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"peopleURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"skills"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedTabsLayoutFirstBodyExpertBlockLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayoutFirstBodyExpertBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"expertList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedTabsLayoutFirstBodyExpertBlockExpertListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedTabsLayoutFirstBodyExpertBlockLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockYoutubePlaylistFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videosCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubePlaylist"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockYoutubePlaylistFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayoutFirstBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarFixedTabsLayoutFirstBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayoutFirstBodyVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayoutFirstBodyBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ExpertBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayoutFirstBodyExpertBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"YoutubePlaylistBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayoutFirstBodyCustomImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayoutSecondHeadingVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayoutSecondHeadingBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedTabsLayoutSecondHeadingExpertBlockExpertListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"person"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"peopleURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"skills"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedTabsLayoutSecondHeadingExpertBlockLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayoutSecondHeadingExpertBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"expertList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedTabsLayoutSecondHeadingExpertBlockExpertListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedTabsLayoutSecondHeadingExpertBlockLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockYoutubePlaylistFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videosCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubePlaylist"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockYoutubePlaylistFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayoutSecondHeadingCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarFixedTabsLayoutSecondHeadingFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayoutSecondHeadingVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayoutSecondHeadingBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ExpertBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayoutSecondHeadingExpertBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"YoutubePlaylistBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayoutSecondHeadingCustomImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayoutSecondBodyVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayoutSecondBodyBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedTabsLayoutSecondBodyExpertBlockExpertListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"person"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"peopleURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"skills"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedTabsLayoutSecondBodyExpertBlockLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayoutSecondBodyExpertBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"expertList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedTabsLayoutSecondBodyExpertBlockExpertListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedTabsLayoutSecondBodyExpertBlockLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockYoutubePlaylistFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videosCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubePlaylist"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockYoutubePlaylistFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayoutSecondBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarFixedTabsLayoutSecondBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayoutSecondBodyVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayoutSecondBodyBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ExpertBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayoutSecondBodyExpertBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"YoutubePlaylistBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayoutSecondBodyCustomImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarFixedTabsLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstHeading"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarFixedTabsLayoutFirstHeadingFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarFixedTabsLayoutFirstBodyFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondHeading"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarFixedTabsLayoutSecondHeadingFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarFixedTabsLayoutSecondBodyFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarGoogleMapsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"embedUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"embedWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"embedHeight"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyGridLayoutGridsBlocksLinkContentUtilityButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnIcon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentered"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeTopMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openInNewTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyGridLayoutGridsBlocksLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"UtilityButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyGridLayoutGridsBlocksLinkContentUtilityButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyGridLayoutGridsBlocksFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"image"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relatedImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"linkContent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyGridLayoutGridsBlocksLinkContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarGridLayoutGridsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"gridTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showGridTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centeredGridTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showHeaderDivider"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"offsetGridStart"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"blocks"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyGridLayoutGridsBlocksFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarGridLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"grids"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarGridLayoutGridsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarHeroActionsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"type"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarHeroImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarHeroFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"tagline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"actions"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarHeroActionsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"image"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarHeroImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarHorizontalCardCardListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarHorizontalCardButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarHorizontalCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cardList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarHorizontalCardCardListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"button"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarHorizontalCardButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarInternalCarouselItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarInternalCarouselTechnologiesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarInternalCarouselFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarInternalCarouselItemsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paragraph"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"website"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"technologies"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarInternalCarouselTechnologiesFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caseStudyUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarJoinAsPresenterFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"img"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarJoinGithubFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarJotFormEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"jotFormId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"containerClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarLatestTechBadgesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"userGroupGlobal"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"UserGroupGlobalFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarLatestTechFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"badges"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarLatestTechBadgesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyLocationBlockLocationListLocationFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"locations"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"LocationsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarLocationBlockLocationListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"location"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyLocationBlockLocationListLocationFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarLocationBlockChapelWebsiteFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"URL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarLocationBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"locationList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarLocationBlockLocationListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"chapelWebsite"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarLocationBlockChapelWebsiteFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarNewslettersTableFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headerText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarOrganizerFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImg"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"position"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarPaymentBlockPaymentsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paymentDetails"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PaymentDetailsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarPaymentBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"payments"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarPaymentBlockPaymentsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"footer"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"creditImgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altTxt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyPresenterBlockPresenterListPresenterFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"presenter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PresenterFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarPresenterBlockPresenterListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"presenter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyPresenterBlockPresenterListPresenterFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarPresenterBlockOtherEventFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarPresenterBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"presenterList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarPresenterBlockPresenterListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"otherEvent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarPresenterBlockOtherEventFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarRecurringEventFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"applyLinkRedirect"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"day"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarSectionHeaderFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headerText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarServiceCardsBigCardsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"description"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarServiceCardsSmallCardsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"isExternal"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarServiceCardsLinksFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarServiceCardsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bigCardsLabel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bigCards"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarServiceCardsBigCardsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"smallCardsLabel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"smallCards"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarServiceCardsSmallCardsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"links"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarServiceCardsLinksFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyTableLayoutRowsCellsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cellValue"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarTableLayoutRowsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cells"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyTableLayoutRowsCellsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"isHeader"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarTableLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"tableStyle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColBold"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headers"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"rows"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarTableLayoutRowsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyTestimonialsListExcludedCategoriesCategoryNameFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"testimonialCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"TestimonialCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarTestimonialsListExcludedCategoriesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"categoryName"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyTestimonialsListExcludedCategoriesCategoryNameFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarTestimonialsListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"excludedCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarTestimonialsListExcludedCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyTrainingInformationTrainingInformationItemsBodyVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyTrainingInformationTrainingInformationItemsBodyRecurringEventFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"applyLinkRedirect"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"day"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyTrainingInformationTrainingInformationItemsBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyTrainingInformationTrainingInformationItemsBodyVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"RecurringEvent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyTrainingInformationTrainingInformationItemsBodyRecurringEventFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarTrainingInformationTrainingInformationItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"body"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyTrainingInformationTrainingInformationItemsBodyFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarTrainingInformationFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"trainingInformationItems"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarTrainingInformationTrainingInformationItemsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarTrainingLearningOutcomeListItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarTrainingLearningOutcomeFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"listItems"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarTrainingLearningOutcomeListItemsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarTweetEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarUpcomingEventsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"numberOfEvents"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarUtilityButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnIcon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentered"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeTopMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openInNewTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarVerticalImageLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imageSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imageLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"message"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarInlineJotFormFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"jotFormId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"additionalClasses"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageSideBarFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"AboutUs"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarAboutUsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Agenda"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarAgendaFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"AgreementForm"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarAgreementFormFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"InterestForm"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarInterestFormFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BuiltOnAzure"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarBuiltOnAzureFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Carousel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarCarouselFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Citation"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarCitationFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ClientList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarClientListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ClientLogos"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarClientLogosFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarColorBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorPalette"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarColorPaletteFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarContentCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomDownloadButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarCustomDownloadButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"DomainFromQuery"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarDomainFromQueryFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"DownloadBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarDownloadBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"DynamicColumns"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarDynamicColumnsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventBooking"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarEventBookingFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarEventLinkFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarFlagFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"FixedColumns"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarFixedColumnsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"FixedTabsLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarFixedTabsLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"GoogleMaps"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarGoogleMapsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"GridLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarGridLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Hero"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarHeroFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"HorizontalCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarHorizontalCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"InternalCarousel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarInternalCarouselFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"joinAsPresenter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarJoinAsPresenterFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"joinGithub"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarJoinGithubFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"JotFormEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarJotFormEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"LatestTech"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarLatestTechFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"LocationBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarLocationBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"NewslettersTable"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarNewslettersTableFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"organizer"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarOrganizerFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paymentBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarPaymentBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"PresenterBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarPresenterBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"RecurringEvent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarRecurringEventFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"SectionHeader"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarSectionHeaderFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ServiceCards"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarServiceCardsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TableLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarTableLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TestimonialsList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarTestimonialsListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TrainingInformation"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarTrainingInformationFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TrainingLearningOutcome"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarTrainingLearningOutcomeFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TweetEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarTweetEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"UpcomingEvents"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarUpcomingEventsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"UtilityButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarUtilityButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalImageLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarVerticalImageLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"InlineJotForm"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarInlineJotFormFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyAboutUsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showMap"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyAgendaAgendaItemListBodyVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyAgendaAgendaItemListBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyAgendaAgendaItemListBodyVerticalListItemFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyAgendaAgendaItemListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"placeholder"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"body"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyAgendaAgendaItemListBodyFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyAgendaFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"textColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"agendaItemList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyAgendaAgendaItemListFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyAgreementFormFieldsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"id"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"placeholder"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"resizeable"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyAgreementFormFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fields"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyAgreementFormFieldsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyInterestFormFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyBuiltOnAzureFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyCarouselItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openIn"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyCarouselFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyCarouselItemsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"delay"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showOnMobileDevices"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyCitationFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"author"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"article"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyClientListCategoriesCategoryFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"clientCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ClientCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyClientListCategoriesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"category"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyClientListCategoriesCategoryFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyClientListClientsContentUtilityButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnIcon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentered"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeTopMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openInNewTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyClientListClientsContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyClientListClientsContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyClientListClientsContentContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyClientListClientsContentContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyClientListClientsContentContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentClientListClientsContentContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyClientListClientsContentContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentClientListClientsContentContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyClientListClientsContentContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyClientListClientsContentContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyClientListClientsContentContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyClientListClientsContentContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyClientListClientsContentContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyClientListClientsContentContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyClientListClientsContentContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyClientListClientsContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"UtilityButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyClientListClientsContentUtilityButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyClientListClientsContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyClientListClientsContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyClientListClientsContentContentCardFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyClientListClientsCategoriesCategoryFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"clientCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ClientCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyClientListClientsCategoriesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"category"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyClientListClientsCategoriesCategoryFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyClientListClientsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"logo"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"logoUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyClientListClientsContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caseStudyUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"categories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyClientListClientsCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyClientListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"categories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyClientListCategoriesFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"clients"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyClientListClientsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyClientLogosFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyColorPaletteFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyContentContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyContentContentClientLogosFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyContentContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyContentContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyContentContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyContentContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyContentContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyContentContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ClientLogos"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyContentContentClientLogosFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyContentContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyContentContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyContentContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paddingClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"align"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyCustomDownloadButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyDomainFromQueryFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showDomain"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyDownloadBlockDownloadsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"img"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgBackground"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstLinkText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondLinkText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyDownloadBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"downloads"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyDownloadBlockDownloadsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bottomBorder"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyDynamicColumnsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyEventBookingEventListLocationFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"locations"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"LocationsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyEventBookingEventListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"city"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"date"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DatetimeFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bookingURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"location"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyEventBookingEventListLocationFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyEventBookingFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventDurationInDays"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"price"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"discountPrice"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"gstText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"discountNote"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyEventBookingEventListFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyEventLinkContentFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyEventLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyEventLinkContentFlagFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyEventLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyEventLinkContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventThumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnailAlt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyFixedColumnsFirstColBodyContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyFixedColumnsFirstColBodyContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyFixedColumnsFirstColBodyContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanySubTitleFixedColumnsFirstColBodyContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyFixedColumnsFirstColBodyContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanySubTitleFixedColumnsFirstColBodyContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesSubTitleFixedColumnsFirstColBodyContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyFixedColumnsFirstColBodyContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyFixedColumnsFirstColBodyContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyFixedColumnsFirstColBodyContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyFixedColumnsFirstColBodyContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedColumnsFirstColBodyContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesSubTitleFixedColumnsFirstColBodyContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedColumnsFirstColBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyFixedColumnsFirstColBodyEventLinkContentFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesSubTitleFixedColumnsFirstColBodyEventLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyFixedColumnsFirstColBodyEventLinkContentFlagFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedColumnsFirstColBodyEventLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesSubTitleFixedColumnsFirstColBodyEventLinkContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventThumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnailAlt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyFixedColumnsFirstColBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedColumnsFirstColBodyContentCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedColumnsFirstColBodyCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedColumnsFirstColBodyEventLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyFixedColumnsSecondColBodyContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyFixedColumnsSecondColBodyContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyFixedColumnsSecondColBodyContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanySubTitleFixedColumnsSecondColBodyContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyFixedColumnsSecondColBodyContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanySubTitleFixedColumnsSecondColBodyContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesSubTitleFixedColumnsSecondColBodyContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyFixedColumnsSecondColBodyContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyFixedColumnsSecondColBodyContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyFixedColumnsSecondColBodyContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyFixedColumnsSecondColBodyContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedColumnsSecondColBodyContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesSubTitleFixedColumnsSecondColBodyContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedColumnsSecondColBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyFixedColumnsSecondColBodyEventLinkContentFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesSubTitleFixedColumnsSecondColBodyEventLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyFixedColumnsSecondColBodyEventLinkContentFlagFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedColumnsSecondColBodyEventLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesSubTitleFixedColumnsSecondColBodyEventLinkContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventThumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnailAlt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyFixedColumnsSecondColBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedColumnsSecondColBodyContentCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedColumnsSecondColBodyCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedColumnsSecondColBodyEventLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyFixedColumnsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headerSection"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyFixedColumnsFirstColBodyFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyFixedColumnsSecondColBodyFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedTabsLayoutFirstHeadingVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedTabsLayoutFirstHeadingBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyFixedTabsLayoutFirstHeadingExpertBlockExpertListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"person"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"peopleURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"skills"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyFixedTabsLayoutFirstHeadingExpertBlockLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedTabsLayoutFirstHeadingExpertBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"expertList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyFixedTabsLayoutFirstHeadingExpertBlockExpertListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyFixedTabsLayoutFirstHeadingExpertBlockLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockYoutubePlaylistFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videosCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubePlaylist"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockYoutubePlaylistFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedTabsLayoutFirstHeadingCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayoutFirstHeadingFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedTabsLayoutFirstHeadingVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedTabsLayoutFirstHeadingBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ExpertBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedTabsLayoutFirstHeadingExpertBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"YoutubePlaylistBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedTabsLayoutFirstHeadingCustomImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedTabsLayoutFirstBodyVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedTabsLayoutFirstBodyBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyFixedTabsLayoutFirstBodyExpertBlockExpertListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"person"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"peopleURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"skills"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyFixedTabsLayoutFirstBodyExpertBlockLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedTabsLayoutFirstBodyExpertBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"expertList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyFixedTabsLayoutFirstBodyExpertBlockExpertListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyFixedTabsLayoutFirstBodyExpertBlockLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockYoutubePlaylistFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videosCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubePlaylist"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockYoutubePlaylistFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedTabsLayoutFirstBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayoutFirstBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedTabsLayoutFirstBodyVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedTabsLayoutFirstBodyBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ExpertBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedTabsLayoutFirstBodyExpertBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"YoutubePlaylistBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedTabsLayoutFirstBodyCustomImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedTabsLayoutSecondHeadingVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedTabsLayoutSecondHeadingBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyFixedTabsLayoutSecondHeadingExpertBlockExpertListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"person"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"peopleURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"skills"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyFixedTabsLayoutSecondHeadingExpertBlockLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedTabsLayoutSecondHeadingExpertBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"expertList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyFixedTabsLayoutSecondHeadingExpertBlockExpertListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyFixedTabsLayoutSecondHeadingExpertBlockLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockYoutubePlaylistFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videosCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubePlaylist"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockYoutubePlaylistFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedTabsLayoutSecondHeadingCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayoutSecondHeadingFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedTabsLayoutSecondHeadingVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedTabsLayoutSecondHeadingBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ExpertBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedTabsLayoutSecondHeadingExpertBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"YoutubePlaylistBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedTabsLayoutSecondHeadingCustomImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedTabsLayoutSecondBodyVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedTabsLayoutSecondBodyBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyFixedTabsLayoutSecondBodyExpertBlockExpertListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"person"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"peopleURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"skills"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyFixedTabsLayoutSecondBodyExpertBlockLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedTabsLayoutSecondBodyExpertBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"expertList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyFixedTabsLayoutSecondBodyExpertBlockExpertListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyFixedTabsLayoutSecondBodyExpertBlockLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockYoutubePlaylistFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videosCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubePlaylist"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockYoutubePlaylistFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedTabsLayoutSecondBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayoutSecondBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedTabsLayoutSecondBodyVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedTabsLayoutSecondBodyBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ExpertBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedTabsLayoutSecondBodyExpertBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"YoutubePlaylistBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedTabsLayoutSecondBodyCustomImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstHeading"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayoutFirstHeadingFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayoutFirstBodyFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondHeading"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayoutSecondHeadingFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayoutSecondBodyFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyGoogleMapsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"embedUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"embedWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"embedHeight"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyGridLayoutGridsBlocksLinkContentUtilityButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnIcon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentered"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeTopMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openInNewTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyGridLayoutGridsBlocksLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"UtilityButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyGridLayoutGridsBlocksLinkContentUtilityButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyGridLayoutGridsBlocksFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"image"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relatedImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"linkContent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyGridLayoutGridsBlocksLinkContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyGridLayoutGridsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"gridTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showGridTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centeredGridTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showHeaderDivider"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"offsetGridStart"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"blocks"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyGridLayoutGridsBlocksFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyGridLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"grids"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyGridLayoutGridsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyHeroActionsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"type"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyHeroImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyHeroFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"tagline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"actions"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyHeroActionsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"image"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyHeroImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyHorizontalCardCardListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyHorizontalCardButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyHorizontalCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cardList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyHorizontalCardCardListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"button"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyHorizontalCardButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyInternalCarouselItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyInternalCarouselTechnologiesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyInternalCarouselFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyInternalCarouselItemsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paragraph"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"website"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"technologies"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyInternalCarouselTechnologiesFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caseStudyUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyJoinAsPresenterFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"img"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyJoinGithubFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyJotFormEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"jotFormId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"containerClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyLatestTechBadgesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"userGroupGlobal"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"UserGroupGlobalFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyLatestTechFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"badges"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyLatestTechBadgesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyLocationBlockLocationListLocationFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"locations"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"LocationsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyLocationBlockLocationListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"location"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyLocationBlockLocationListLocationFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyLocationBlockChapelWebsiteFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"URL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyLocationBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"locationList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyLocationBlockLocationListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"chapelWebsite"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyLocationBlockChapelWebsiteFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyNewslettersTableFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headerText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyOrganizerFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImg"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"position"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyPaymentBlockPaymentsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paymentDetails"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PaymentDetailsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyPaymentBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"payments"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyPaymentBlockPaymentsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"footer"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"creditImgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altTxt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyPresenterBlockPresenterListPresenterFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"presenter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PresenterFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyPresenterBlockPresenterListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"presenter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyPresenterBlockPresenterListPresenterFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyPresenterBlockOtherEventFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyPresenterBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"presenterList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyPresenterBlockPresenterListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"otherEvent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyPresenterBlockOtherEventFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyRecurringEventFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"applyLinkRedirect"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"day"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodySectionHeaderFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headerText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyServiceCardsBigCardsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"description"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyServiceCardsSmallCardsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"isExternal"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyServiceCardsLinksFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyServiceCardsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bigCardsLabel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bigCards"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyServiceCardsBigCardsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"smallCardsLabel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"smallCards"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyServiceCardsSmallCardsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"links"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyServiceCardsLinksFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyTableLayoutRowsCellsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cellValue"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyTableLayoutRowsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cells"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyTableLayoutRowsCellsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"isHeader"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyTableLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"tableStyle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColBold"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headers"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"rows"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyTableLayoutRowsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyTestimonialsListExcludedCategoriesCategoryNameFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"testimonialCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"TestimonialCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyTestimonialsListExcludedCategoriesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"categoryName"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyTestimonialsListExcludedCategoriesCategoryNameFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyTestimonialsListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"excludedCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyTestimonialsListExcludedCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyTrainingInformationTrainingInformationItemsBodyVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyTrainingInformationTrainingInformationItemsBodyRecurringEventFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"applyLinkRedirect"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"day"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyTrainingInformationTrainingInformationItemsBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyTrainingInformationTrainingInformationItemsBodyVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"RecurringEvent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyTrainingInformationTrainingInformationItemsBodyRecurringEventFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyTrainingInformationTrainingInformationItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"body"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyTrainingInformationTrainingInformationItemsBodyFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyTrainingInformationFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"trainingInformationItems"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyTrainingInformationTrainingInformationItemsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyTrainingLearningOutcomeListItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyTrainingLearningOutcomeFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"listItems"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyTrainingLearningOutcomeListItemsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyTweetEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyUpcomingEventsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"numberOfEvents"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyUtilityButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnIcon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentered"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeTopMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openInNewTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyVerticalImageLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imageSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imageLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"message"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyInlineJotFormFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"jotFormId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"additionalClasses"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageAfterBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"AboutUs"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyAboutUsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Agenda"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyAgendaFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"AgreementForm"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyAgreementFormFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"InterestForm"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyInterestFormFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BuiltOnAzure"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyBuiltOnAzureFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Carousel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyCarouselFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Citation"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyCitationFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ClientList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyClientListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ClientLogos"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyClientLogosFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyColorBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorPalette"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyColorPaletteFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyContentCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomDownloadButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyCustomDownloadButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"DomainFromQuery"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyDomainFromQueryFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"DownloadBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyDownloadBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"DynamicColumns"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyDynamicColumnsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventBooking"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyEventBookingFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyEventLinkFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyFlagFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"FixedColumns"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyFixedColumnsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"FixedTabsLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyFixedTabsLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"GoogleMaps"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyGoogleMapsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"GridLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyGridLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Hero"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyHeroFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"HorizontalCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyHorizontalCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"InternalCarousel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyInternalCarouselFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"joinAsPresenter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyJoinAsPresenterFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"joinGithub"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyJoinGithubFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"JotFormEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyJotFormEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"LatestTech"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyLatestTechFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"LocationBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyLocationBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"NewslettersTable"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyNewslettersTableFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"organizer"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyOrganizerFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paymentBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyPaymentBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"PresenterBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyPresenterBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"RecurringEvent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyRecurringEventFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"SectionHeader"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodySectionHeaderFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ServiceCards"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyServiceCardsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TableLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyTableLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TestimonialsList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyTestimonialsListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TrainingInformation"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyTrainingInformationFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TrainingLearningOutcome"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyTrainingLearningOutcomeFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TweetEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyTweetEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"UpcomingEvents"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyUpcomingEventsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"UtilityButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyUtilityButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalImageLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyVerticalImageLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"InlineJotForm"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyInlineJotFormFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"tip"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"seo"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSeoFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"breadcrumbs"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"beforeBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageBeforeBodyFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"_body"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page_bodyFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeBodyTopMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sideBar"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageSideBarFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centeredBodyText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PageAfterBodyFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showAzureFooter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PageConnectionEdges"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"cursor"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"node"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Page"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[{"kind":"NamedType","name":{"kind":"Name","value":"Connection"}}],"directives":[],"name":{"kind":"Name","value":"PageConnection"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"pageInfo"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageInfo"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"totalCount"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"edges"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageConnectionEdges"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"GlobalHeader"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"name"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"description"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"url"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"site_name"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"alternate_site_name"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"GlobalHomePageOfficeList"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"url"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"name"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"streetAddress"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"suburb"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"addressLocality"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"addressRegion"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"addressCountry"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"postalCode"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"phone"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"hours"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"days"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"GlobalSocials"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"type"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"url"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"username"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"GlobalContactIcon"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"url"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"linkText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"desktopSpecificLinkText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"desktopSpecificURL"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"openInSameWindow"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"GlobalClientsClientsList"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"clientName"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"imageUrl"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"GlobalClients"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"clientsList"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"GlobalClientsClientsList"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[{"kind":"NamedType","name":{"kind":"Name","value":"Node"}},{"kind":"NamedType","name":{"kind":"Name","value":"Document"}}],"directives":[],"name":{"kind":"Name","value":"Global"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"header"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"GlobalHeader"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"youtubeChannelLink"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"breadcrumbSuffix"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"bookingButtonText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"bookingPhone"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"defaultOGImage"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"homePageOfficeList"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"GlobalHomePageOfficeList"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"socials"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"GlobalSocials"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"contactIcon"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"GlobalContactIcon"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"clients"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"GlobalClients"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"bookingJotFormId"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"newsletterJotFormId"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"registrationOfInterestJotFormId"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"id"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ID"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_sys"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"SystemInfo"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_values"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"GlobalHeaderFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"description"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"site_name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alternate_site_name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"GlobalHomePageOfficeListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"streetAddress"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"suburb"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"addressLocality"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"addressRegion"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"addressCountry"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"postalCode"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"phone"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"hours"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"days"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"GlobalSocialsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"type"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"username"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"GlobalContactIconFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"linkText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"desktopSpecificLinkText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"desktopSpecificURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openInSameWindow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"GlobalClientsClientsListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"clientName"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imageUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"GlobalClientsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"clientsList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"GlobalClientsClientsListFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"GlobalFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"GlobalHeaderFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubeChannelLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"breadcrumbSuffix"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bookingButtonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bookingPhone"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"defaultOGImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"homePageOfficeList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"GlobalHomePageOfficeListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"socials"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"GlobalSocialsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"contactIcon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"GlobalContactIconFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"clients"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"GlobalClientsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bookingJotFormId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"newsletterJotFormId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"registrationOfInterestJotFormId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"GlobalConnectionEdges"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"cursor"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"node"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Global"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[{"kind":"NamedType","name":{"kind":"Name","value":"Connection"}}],"directives":[],"name":{"kind":"Name","value":"GlobalConnection"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"pageInfo"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageInfo"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"totalCount"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"edges"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"GlobalConnectionEdges"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"MegamenuMenuGroupsMenuColumnsMenuColumnGroupsMenuItems"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"name"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"url"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"description"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"iconImg"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"icon"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"MegamenuMenuGroupsMenuColumnsMenuColumnGroups"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"name"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"menuItems"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"MegamenuMenuGroupsMenuColumnsMenuColumnGroupsMenuItems"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"MegamenuMenuGroupsMenuColumns"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"menuColumnGroups"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"MegamenuMenuGroupsMenuColumnsMenuColumnGroups"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"MegamenuMenuGroupsSidebarItemsItems"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"name"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"url"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"description"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"widgetType"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"icon"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"MegamenuMenuGroupsSidebarItems"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"name"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"items"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"MegamenuMenuGroupsSidebarItemsItems"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"MegamenuMenuGroupsViewAll"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"name"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"url"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"MegamenuMenuGroups"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"name"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"menuColumns"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"MegamenuMenuGroupsMenuColumns"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"sidebarItems"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"MegamenuMenuGroupsSidebarItems"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"viewAll"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"MegamenuMenuGroupsViewAll"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"url"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[{"kind":"NamedType","name":{"kind":"Name","value":"Node"}},{"kind":"NamedType","name":{"kind":"Name","value":"Document"}}],"directives":[],"name":{"kind":"Name","value":"Megamenu"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"menuGroups"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"ListType","type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"MegamenuMenuGroups"}}}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"id"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ID"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_sys"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"SystemInfo"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_values"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"MegamenuMenuGroupsMenuColumnsMenuColumnGroupsMenuItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"description"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconImg"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"MegamenuMenuGroupsMenuColumnsMenuColumnGroupsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"menuItems"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"MegamenuMenuGroupsMenuColumnsMenuColumnGroupsMenuItemsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"MegamenuMenuGroupsMenuColumnsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"menuColumnGroups"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"MegamenuMenuGroupsMenuColumnsMenuColumnGroupsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"MegamenuMenuGroupsSidebarItemsItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"description"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"widgetType"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"MegamenuMenuGroupsSidebarItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"MegamenuMenuGroupsSidebarItemsItemsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"MegamenuMenuGroupsViewAllFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"MegamenuMenuGroupsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"menuColumns"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"MegamenuMenuGroupsMenuColumnsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sidebarItems"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"MegamenuMenuGroupsSidebarItemsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"viewAll"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"MegamenuMenuGroupsViewAllFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"MegamenuFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"menuGroups"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"MegamenuMenuGroupsFilter"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"MegamenuConnectionEdges"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"cursor"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"node"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Megamenu"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[{"kind":"NamedType","name":{"kind":"Name","value":"Connection"}}],"directives":[],"name":{"kind":"Name","value":"MegamenuConnection"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"pageInfo"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageInfo"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"totalCount"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"edges"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"MegamenuConnectionEdges"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ArticlesIndexHeaderImage"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"heroBackground"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"altText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"txtOverlay"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ArticlesIndexSeoImages"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"url"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"width"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"height"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"alt"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ArticlesIndexSeo"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"description"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"canonical"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"showBreadcrumb"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"images"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndexSeoImages"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ArticlesIndexSidebarPanel"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"description"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"showSidebarPanel"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"actionUrl"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"actionText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[{"kind":"NamedType","name":{"kind":"Name","value":"Node"}},{"kind":"NamedType","name":{"kind":"Name","value":"Document"}}],"directives":[],"name":{"kind":"Name","value":"ArticlesIndex"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"headerImage"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndexHeaderImage"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"seo"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndexSeo"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_body"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"showSidebarPanel"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"sidebarPanel"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndexSidebarPanel"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"id"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ID"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_sys"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"SystemInfo"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_values"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndexHeaderImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"heroBackground"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"txtOverlay"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndexSeoImagesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndexSeoFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"description"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"canonical"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showBreadcrumb"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"images"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndexSeoImagesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyAboutUsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showMap"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyAgendaAgendaItemListBodyVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyAgendaAgendaItemListBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyAgendaAgendaItemListBodyVerticalListItemFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyAgendaAgendaItemListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"placeholder"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"body"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyAgendaAgendaItemListBodyFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyAgendaFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"textColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"agendaItemList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyAgendaAgendaItemListFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyAgreementFormFieldsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"id"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"placeholder"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"resizeable"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyAgreementFormFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fields"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyAgreementFormFieldsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyInterestFormFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyBuiltOnAzureFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyCarouselItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openIn"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyCarouselFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyCarouselItemsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"delay"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showOnMobileDevices"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyCitationFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"author"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"article"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyClientListCategoriesCategoryFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"clientCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ClientCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyClientListCategoriesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"category"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyClientListCategoriesCategoryFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyClientListClientsContentUtilityButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnIcon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentered"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeTopMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openInNewTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyClientListClientsContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyClientListClientsContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentClientListClientsContentContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentClientListClientsContentContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentClientListClientsContentContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyClientListClientsContentContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentClientListClientsContentContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyClientListClientsContentContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyClientListClientsContentContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentClientListClientsContentContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentClientListClientsContentContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentClientListClientsContentContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentClientListClientsContentContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyClientListClientsContentContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyClientListClientsContentContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyClientListClientsContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"UtilityButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyClientListClientsContentUtilityButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyClientListClientsContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyClientListClientsContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyClientListClientsContentContentCardFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyClientListClientsCategoriesCategoryFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"clientCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ClientCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyClientListClientsCategoriesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"category"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyClientListClientsCategoriesCategoryFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyClientListClientsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"logo"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"logoUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyClientListClientsContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caseStudyUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"categories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyClientListClientsCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyClientListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"categories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyClientListCategoriesFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"clients"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyClientListClientsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyClientLogosFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyColorPaletteFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyContentContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyContentContentClientLogosFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyContentContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyContentContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyContentContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyContentContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyContentContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyContentContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ClientLogos"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyContentContentClientLogosFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyContentContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyContentContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyContentContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paddingClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"align"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyCustomDownloadButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyDomainFromQueryFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showDomain"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyDownloadBlockDownloadsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"img"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgBackground"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstLinkText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondLinkText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyDownloadBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"downloads"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyDownloadBlockDownloadsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bottomBorder"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyDynamicColumnsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyEventBookingEventListLocationFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"locations"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"LocationsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyEventBookingEventListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"city"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"date"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DatetimeFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bookingURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"location"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyEventBookingEventListLocationFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyEventBookingFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventDurationInDays"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"price"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"discountPrice"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"gstText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"discountNote"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyEventBookingEventListFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyEventLinkContentFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyEventLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyEventLinkContentFlagFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyEventLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyEventLinkContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventThumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnailAlt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanySubTitleFixedColumnsFirstColBodyContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanySubTitleFixedColumnsFirstColBodyContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanySubTitleFixedColumnsFirstColBodyContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyFixedColumnsFirstColBodyContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanySubTitleFixedColumnsFirstColBodyContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyFixedColumnsFirstColBodyContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyFixedColumnsFirstColBodyContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanySubTitleFixedColumnsFirstColBodyContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanySubTitleFixedColumnsFirstColBodyContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanySubTitleFixedColumnsFirstColBodyContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanySubTitleFixedColumnsFirstColBodyContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesSubTitleFixedColumnsFirstColBodyContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyFixedColumnsFirstColBodyContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesSubTitleFixedColumnsFirstColBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanySubTitleFixedColumnsFirstColBodyEventLinkContentFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyFixedColumnsFirstColBodyEventLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanySubTitleFixedColumnsFirstColBodyEventLinkContentFlagFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesSubTitleFixedColumnsFirstColBodyEventLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyFixedColumnsFirstColBodyEventLinkContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventThumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnailAlt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedColumnsFirstColBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesSubTitleFixedColumnsFirstColBodyContentCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesSubTitleFixedColumnsFirstColBodyCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesSubTitleFixedColumnsFirstColBodyEventLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanySubTitleFixedColumnsSecondColBodyContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanySubTitleFixedColumnsSecondColBodyContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanySubTitleFixedColumnsSecondColBodyContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyFixedColumnsSecondColBodyContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanySubTitleFixedColumnsSecondColBodyContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyFixedColumnsSecondColBodyContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyFixedColumnsSecondColBodyContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanySubTitleFixedColumnsSecondColBodyContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanySubTitleFixedColumnsSecondColBodyContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanySubTitleFixedColumnsSecondColBodyContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanySubTitleFixedColumnsSecondColBodyContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesSubTitleFixedColumnsSecondColBodyContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyFixedColumnsSecondColBodyContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesSubTitleFixedColumnsSecondColBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanySubTitleFixedColumnsSecondColBodyEventLinkContentFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyFixedColumnsSecondColBodyEventLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanySubTitleFixedColumnsSecondColBodyEventLinkContentFlagFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesSubTitleFixedColumnsSecondColBodyEventLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyFixedColumnsSecondColBodyEventLinkContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventThumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnailAlt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedColumnsSecondColBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesSubTitleFixedColumnsSecondColBodyContentCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesSubTitleFixedColumnsSecondColBodyCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesSubTitleFixedColumnsSecondColBodyEventLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedColumnsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headerSection"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedColumnsFirstColBodyFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedColumnsSecondColBodyFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyFixedTabsLayoutFirstHeadingVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyFixedTabsLayoutFirstHeadingBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyFixedTabsLayoutFirstHeadingExpertBlockExpertListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"person"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"peopleURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"skills"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyFixedTabsLayoutFirstHeadingExpertBlockLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyFixedTabsLayoutFirstHeadingExpertBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"expertList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyFixedTabsLayoutFirstHeadingExpertBlockExpertListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyFixedTabsLayoutFirstHeadingExpertBlockLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockYoutubePlaylistFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videosCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubePlaylist"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockYoutubePlaylistFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyFixedTabsLayoutFirstHeadingCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedTabsLayoutFirstHeadingFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyFixedTabsLayoutFirstHeadingVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyFixedTabsLayoutFirstHeadingBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ExpertBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyFixedTabsLayoutFirstHeadingExpertBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"YoutubePlaylistBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyFixedTabsLayoutFirstHeadingCustomImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyFixedTabsLayoutFirstBodyVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyFixedTabsLayoutFirstBodyBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyFixedTabsLayoutFirstBodyExpertBlockExpertListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"person"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"peopleURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"skills"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyFixedTabsLayoutFirstBodyExpertBlockLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyFixedTabsLayoutFirstBodyExpertBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"expertList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyFixedTabsLayoutFirstBodyExpertBlockExpertListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyFixedTabsLayoutFirstBodyExpertBlockLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockYoutubePlaylistFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videosCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubePlaylist"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockYoutubePlaylistFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyFixedTabsLayoutFirstBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedTabsLayoutFirstBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyFixedTabsLayoutFirstBodyVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyFixedTabsLayoutFirstBodyBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ExpertBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyFixedTabsLayoutFirstBodyExpertBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"YoutubePlaylistBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyFixedTabsLayoutFirstBodyCustomImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyFixedTabsLayoutSecondHeadingVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyFixedTabsLayoutSecondHeadingBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyFixedTabsLayoutSecondHeadingExpertBlockExpertListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"person"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"peopleURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"skills"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyFixedTabsLayoutSecondHeadingExpertBlockLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyFixedTabsLayoutSecondHeadingExpertBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"expertList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyFixedTabsLayoutSecondHeadingExpertBlockExpertListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyFixedTabsLayoutSecondHeadingExpertBlockLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockYoutubePlaylistFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videosCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubePlaylist"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockYoutubePlaylistFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyFixedTabsLayoutSecondHeadingCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedTabsLayoutSecondHeadingFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyFixedTabsLayoutSecondHeadingVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyFixedTabsLayoutSecondHeadingBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ExpertBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyFixedTabsLayoutSecondHeadingExpertBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"YoutubePlaylistBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyFixedTabsLayoutSecondHeadingCustomImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyFixedTabsLayoutSecondBodyVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyFixedTabsLayoutSecondBodyBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyFixedTabsLayoutSecondBodyExpertBlockExpertListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"person"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"peopleURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"skills"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyFixedTabsLayoutSecondBodyExpertBlockLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyFixedTabsLayoutSecondBodyExpertBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"expertList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyFixedTabsLayoutSecondBodyExpertBlockExpertListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyFixedTabsLayoutSecondBodyExpertBlockLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockYoutubePlaylistFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videosCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubePlaylist"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockYoutubePlaylistFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyFixedTabsLayoutSecondBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedTabsLayoutSecondBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyFixedTabsLayoutSecondBodyVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyFixedTabsLayoutSecondBodyBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ExpertBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyFixedTabsLayoutSecondBodyExpertBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"YoutubePlaylistBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyFixedTabsLayoutSecondBodyCustomImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedTabsLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstHeading"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedTabsLayoutFirstHeadingFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedTabsLayoutFirstBodyFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondHeading"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedTabsLayoutSecondHeadingFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedTabsLayoutSecondBodyFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyGoogleMapsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"embedUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"embedWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"embedHeight"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyGridLayoutGridsBlocksLinkContentUtilityButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnIcon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentered"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeTopMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openInNewTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyGridLayoutGridsBlocksLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"UtilityButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyGridLayoutGridsBlocksLinkContentUtilityButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyGridLayoutGridsBlocksFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"image"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relatedImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"linkContent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyGridLayoutGridsBlocksLinkContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyGridLayoutGridsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"gridTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showGridTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centeredGridTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showHeaderDivider"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"offsetGridStart"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"blocks"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyGridLayoutGridsBlocksFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyGridLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"grids"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyGridLayoutGridsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyHeroActionsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"type"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyHeroImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyHeroFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"tagline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"actions"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyHeroActionsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"image"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyHeroImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyHorizontalCardCardListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyHorizontalCardButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyHorizontalCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cardList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyHorizontalCardCardListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"button"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyHorizontalCardButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyInternalCarouselItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyInternalCarouselTechnologiesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyInternalCarouselFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyInternalCarouselItemsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paragraph"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"website"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"technologies"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyInternalCarouselTechnologiesFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caseStudyUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyJoinAsPresenterFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"img"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyJoinGithubFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyJotFormEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"jotFormId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"containerClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyLatestTechBadgesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"userGroupGlobal"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"UserGroupGlobalFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyLatestTechFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"badges"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyLatestTechBadgesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyLocationBlockLocationListLocationFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"locations"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"LocationsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyLocationBlockLocationListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"location"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyLocationBlockLocationListLocationFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyLocationBlockChapelWebsiteFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"URL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyLocationBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"locationList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyLocationBlockLocationListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"chapelWebsite"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyLocationBlockChapelWebsiteFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyNewslettersTableFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headerText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyOrganizerFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImg"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"position"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyPaymentBlockPaymentsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paymentDetails"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PaymentDetailsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyPaymentBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"payments"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyPaymentBlockPaymentsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"footer"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"creditImgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altTxt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyPresenterBlockPresenterListPresenterFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"presenter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PresenterFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyPresenterBlockPresenterListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"presenter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyPresenterBlockPresenterListPresenterFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyPresenterBlockOtherEventFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyPresenterBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"presenterList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyPresenterBlockPresenterListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"otherEvent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyPresenterBlockOtherEventFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyRecurringEventFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"applyLinkRedirect"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"day"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodySectionHeaderFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headerText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyServiceCardsBigCardsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"description"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyServiceCardsSmallCardsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"isExternal"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyServiceCardsLinksFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyServiceCardsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bigCardsLabel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bigCards"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyServiceCardsBigCardsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"smallCardsLabel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"smallCards"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyServiceCardsSmallCardsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"links"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyServiceCardsLinksFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesSubTitleTableLayoutRowsCellsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cellValue"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyTableLayoutRowsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cells"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesSubTitleTableLayoutRowsCellsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"isHeader"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyTableLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"tableStyle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColBold"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headers"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"rows"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyTableLayoutRowsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesSubTitleTestimonialsListExcludedCategoriesCategoryNameFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"testimonialCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"TestimonialCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyTestimonialsListExcludedCategoriesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"categoryName"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesSubTitleTestimonialsListExcludedCategoriesCategoryNameFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyTestimonialsListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"excludedCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyTestimonialsListExcludedCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyTrainingInformationTrainingInformationItemsBodyVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyTrainingInformationTrainingInformationItemsBodyRecurringEventFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"applyLinkRedirect"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"day"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyTrainingInformationTrainingInformationItemsBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyTrainingInformationTrainingInformationItemsBodyVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"RecurringEvent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyTrainingInformationTrainingInformationItemsBodyRecurringEventFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyTrainingInformationTrainingInformationItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"body"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyTrainingInformationTrainingInformationItemsBodyFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyTrainingInformationFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"trainingInformationItems"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyTrainingInformationTrainingInformationItemsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyTrainingLearningOutcomeListItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyTrainingLearningOutcomeFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"listItems"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyTrainingLearningOutcomeListItemsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyTweetEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyUpcomingEventsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"numberOfEvents"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyUtilityButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnIcon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentered"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeTopMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openInNewTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyVerticalImageLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imageSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imageLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"message"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyInlineJotFormFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"jotFormId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"additionalClasses"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndex_bodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"AboutUs"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyAboutUsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Agenda"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyAgendaFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"AgreementForm"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyAgreementFormFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"InterestForm"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyInterestFormFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BuiltOnAzure"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyBuiltOnAzureFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Carousel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyCarouselFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Citation"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyCitationFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ClientList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyClientListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ClientLogos"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyClientLogosFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyColorBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorPalette"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyColorPaletteFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyContentCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomDownloadButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyCustomDownloadButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"DomainFromQuery"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyDomainFromQueryFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"DownloadBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyDownloadBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"DynamicColumns"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyDynamicColumnsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventBooking"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyEventBookingFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyEventLinkFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyFlagFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"FixedColumns"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedColumnsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"FixedTabsLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyFixedTabsLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"GoogleMaps"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyGoogleMapsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"GridLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyGridLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Hero"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyHeroFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"HorizontalCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyHorizontalCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"InternalCarousel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyInternalCarouselFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"joinAsPresenter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyJoinAsPresenterFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"joinGithub"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyJoinGithubFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"JotFormEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyJotFormEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"LatestTech"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyLatestTechFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"LocationBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyLocationBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"NewslettersTable"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyNewslettersTableFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"organizer"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyOrganizerFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paymentBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyPaymentBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"PresenterBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyPresenterBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"RecurringEvent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyRecurringEventFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"SectionHeader"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodySectionHeaderFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ServiceCards"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyServiceCardsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TableLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyTableLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TestimonialsList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyTestimonialsListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TrainingInformation"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyTrainingInformationFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TrainingLearningOutcome"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyTrainingLearningOutcomeFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TweetEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyTweetEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"UpcomingEvents"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyUpcomingEventsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"UtilityButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyUtilityButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalImageLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyVerticalImageLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"InlineJotForm"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyInlineJotFormFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndexSidebarPanelFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"description"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showSidebarPanel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"actionUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"actionText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesIndexFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headerImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndexHeaderImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"seo"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndexSeoFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"_body"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex_bodyFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showSidebarPanel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sidebarPanel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndexSidebarPanelFilter"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ArticlesIndexConnectionEdges"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"cursor"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"node"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndex"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[{"kind":"NamedType","name":{"kind":"Name","value":"Connection"}}],"directives":[],"name":{"kind":"Name","value":"ArticlesIndexConnection"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"pageInfo"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageInfo"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"totalCount"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"edges"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesIndexConnectionEdges"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ArticlesSeoImages"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"url"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"width"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"height"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"alt"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ArticlesSeo"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"description"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"canonical"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"showBreadcrumb"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"images"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesSeoImages"}}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"ArticlesAuthor"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"Presenter"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ArticlesSidebarPanel"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"description"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"showSidebarPanel"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"actionUrl"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"actionText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ArticlesCallToAction"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"subTitle"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"showCallToAction"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"buttonText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"animated"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[{"kind":"NamedType","name":{"kind":"Name","value":"Node"}},{"kind":"NamedType","name":{"kind":"Name","value":"Document"}}],"directives":[],"name":{"kind":"Name","value":"Articles"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"tip"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"seo"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesSeo"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"bannerImg"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"subTitle"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"author"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesAuthor"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"sidebarPanel"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesSidebarPanel"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"callToAction"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesCallToAction"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"id"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ID"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_sys"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"SystemInfo"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_values"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesSeoImagesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesSeoFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"description"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"canonical"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showBreadcrumb"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"images"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesSeoImagesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesSubTitleCarouselItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openIn"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesSubTitleCarouselFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesSubTitleCarouselItemsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"delay"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showOnMobileDevices"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesSubTitleColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesSubTitleColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesSubTitleColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesSubTitleColorPaletteFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesSubTitleCustomDownloadButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesSubTitleCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanySubTitleDynamicCardGridBlockImageListLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesSubTitleDynamicCardGridBlockImageListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanySubTitleDynamicCardGridBlockImageListLinkFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imageSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesSubTitleDynamicCardGridBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"gridLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imageList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesSubTitleDynamicCardGridBlockImageListFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyFixedColumnsFirstColBodyContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyFixedColumnsFirstColBodyContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyFixedColumnsFirstColBodyContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyFixedColumnsFirstColBodyContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyFixedColumnsFirstColBodyContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyFixedColumnsFirstColBodyContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanySubTitleFixedColumnsFirstColBodyContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyFixedColumnsFirstColBodyContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyFixedColumnsFirstColBodyContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyFixedColumnsFirstColBodyContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyFixedColumnsFirstColBodyContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyFixedColumnsFirstColBodyContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanySubTitleFixedColumnsFirstColBodyContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyFixedColumnsFirstColBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyFixedColumnsFirstColBodyEventLinkContentFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanySubTitleFixedColumnsFirstColBodyEventLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyFixedColumnsFirstColBodyEventLinkContentFlagFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyFixedColumnsFirstColBodyEventLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanySubTitleFixedColumnsFirstColBodyEventLinkContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventThumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnailAlt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesSubTitleFixedColumnsFirstColBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyFixedColumnsFirstColBodyContentCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyFixedColumnsFirstColBodyCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyFixedColumnsFirstColBodyEventLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyFixedColumnsSecondColBodyContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyFixedColumnsSecondColBodyContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyFixedColumnsSecondColBodyContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyFixedColumnsSecondColBodyContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyFixedColumnsSecondColBodyContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyFixedColumnsSecondColBodyContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanySubTitleFixedColumnsSecondColBodyContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyFixedColumnsSecondColBodyContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyFixedColumnsSecondColBodyContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyFixedColumnsSecondColBodyContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyFixedColumnsSecondColBodyContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyFixedColumnsSecondColBodyContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanySubTitleFixedColumnsSecondColBodyContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyFixedColumnsSecondColBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyFixedColumnsSecondColBodyEventLinkContentFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanySubTitleFixedColumnsSecondColBodyEventLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyFixedColumnsSecondColBodyEventLinkContentFlagFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyFixedColumnsSecondColBodyEventLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanySubTitleFixedColumnsSecondColBodyEventLinkContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventThumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnailAlt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesSubTitleFixedColumnsSecondColBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyFixedColumnsSecondColBodyContentCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyFixedColumnsSecondColBodyCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyFixedColumnsSecondColBodyEventLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesSubTitleFixedColumnsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headerSection"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesSubTitleFixedColumnsFirstColBodyFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesSubTitleFixedColumnsSecondColBodyFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesSubTitleSectionHeaderFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headerText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyTableLayoutRowsCellsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cellValue"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesSubTitleTableLayoutRowsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cells"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyTableLayoutRowsCellsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"isHeader"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesSubTitleTableLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"tableStyle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColBold"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headers"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"rows"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesSubTitleTableLayoutRowsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyTestimonialsListExcludedCategoriesCategoryNameFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"testimonialCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"TestimonialCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesSubTitleTestimonialsListExcludedCategoriesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"categoryName"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyTestimonialsListExcludedCategoriesCategoryNameFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesSubTitleTestimonialsListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"excludedCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesSubTitleTestimonialsListExcludedCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesSubTitleUtilityButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnIcon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentered"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeTopMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openInNewTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesSubTitleVerticalImageLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imageSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imageLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"message"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesSubTitleVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesSubTitleFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Carousel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesSubTitleCarouselFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesSubTitleColorBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorPalette"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesSubTitleColorPaletteFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomDownloadButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesSubTitleCustomDownloadButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesSubTitleCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"DynamicCardGridBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesSubTitleDynamicCardGridBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"FixedColumns"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesSubTitleFixedColumnsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"SectionHeader"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesSubTitleSectionHeaderFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TableLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesSubTitleTableLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TestimonialsList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesSubTitleTestimonialsListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"UtilityButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesSubTitleUtilityButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalImageLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesSubTitleVerticalImageLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesSubTitleVideoEmbedFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesAuthorFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"presenter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PresenterFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesSidebarPanelFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"description"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showSidebarPanel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"actionUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"actionText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesCallToActionFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showCallToAction"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ArticlesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"tip"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"seo"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesSeoFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bannerImg"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesSubTitleFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"author"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesAuthorFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sidebarPanel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesSidebarPanelFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"callToAction"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesCallToActionFilter"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ArticlesConnectionEdges"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"cursor"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"node"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Articles"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[{"kind":"NamedType","name":{"kind":"Name","value":"Connection"}}],"directives":[],"name":{"kind":"Name","value":"ArticlesConnection"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"pageInfo"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageInfo"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"totalCount"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"edges"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ArticlesConnectionEdges"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CompanyIndexHeaderImage"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"heroBackground"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"altText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"txtOverlay"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CompanyIndexSeoImages"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"url"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"width"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"height"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"alt"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CompanyIndexSeo"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"description"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"canonical"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"showBreadcrumb"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"images"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndexSeoImages"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CompanyIndexCompanyPages"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"body"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"pageURL"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"isExternal"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[{"kind":"NamedType","name":{"kind":"Name","value":"Node"}},{"kind":"NamedType","name":{"kind":"Name","value":"Document"}}],"directives":[],"name":{"kind":"Name","value":"CompanyIndex"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"headerImage"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndexHeaderImage"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"seo"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndexSeo"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_body"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"companyPages"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndexCompanyPages"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"id"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ID"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_sys"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"SystemInfo"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_values"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndexHeaderImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"heroBackground"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"txtOverlay"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndexSeoImagesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndexSeoFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"description"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"canonical"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showBreadcrumb"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"images"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndexSeoImagesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyAboutUsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showMap"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyAgendaAgendaItemListBodyVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyAgendaAgendaItemListBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyAgendaAgendaItemListBodyVerticalListItemFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyAgendaAgendaItemListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"placeholder"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"body"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyAgendaAgendaItemListBodyFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyAgendaFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"textColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"agendaItemList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyAgendaAgendaItemListFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyAgreementFormFieldsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"id"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"placeholder"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"resizeable"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyAgreementFormFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fields"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyAgreementFormFieldsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyInterestFormFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyBuiltOnAzureFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyCarouselItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openIn"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyCarouselFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyCarouselItemsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"delay"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showOnMobileDevices"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyCitationFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"author"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"article"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyClientListCategoriesCategoryFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"clientCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ClientCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyClientListCategoriesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"category"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyClientListCategoriesCategoryFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyClientListClientsContentUtilityButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnIcon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentered"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeTopMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openInNewTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyClientListClientsContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyClientListClientsContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyClientListClientsContentContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyClientListClientsContentContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyClientListClientsContentContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyClientListClientsContentContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyClientListClientsContentContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyClientListClientsContentContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentClientListClientsContentContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyClientListClientsContentContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyClientListClientsContentContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyClientListClientsContentContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyClientListClientsContentContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyClientListClientsContentContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentClientListClientsContentContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyClientListClientsContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"UtilityButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyClientListClientsContentUtilityButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyClientListClientsContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyClientListClientsContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyClientListClientsContentContentCardFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyClientListClientsCategoriesCategoryFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"clientCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ClientCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyClientListClientsCategoriesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"category"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyClientListClientsCategoriesCategoryFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyClientListClientsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"logo"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"logoUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyClientListClientsContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caseStudyUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"categories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyClientListClientsCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyClientListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"categories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyClientListCategoriesFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"clients"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyClientListClientsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyClientLogosFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyColorPaletteFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyContentContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyContentContentClientLogosFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyContentContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyContentContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyContentContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyContentContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyContentContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyContentContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ClientLogos"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyContentContentClientLogosFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyContentContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyContentContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyContentContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paddingClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"align"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyCustomDownloadButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyDomainFromQueryFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showDomain"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyDownloadBlockDownloadsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"img"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgBackground"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstLinkText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondLinkText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyDownloadBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"downloads"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyDownloadBlockDownloadsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bottomBorder"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyDynamicColumnsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyEventBookingEventListLocationFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"locations"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"LocationsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyEventBookingEventListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"city"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"date"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DatetimeFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bookingURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"location"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyEventBookingEventListLocationFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyEventBookingFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventDurationInDays"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"price"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"discountPrice"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"gstText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"discountNote"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyEventBookingEventListFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyEventLinkContentFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyEventLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyEventLinkContentFlagFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyEventLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyEventLinkContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventThumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnailAlt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyFixedColumnsFirstColBodyContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyFixedColumnsFirstColBodyContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyFixedColumnsFirstColBodyContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentFixedColumnsFirstColBodyContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyFixedColumnsFirstColBodyContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentFixedColumnsFirstColBodyContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyFixedColumnsFirstColBodyContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyFixedColumnsFirstColBodyContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyFixedColumnsFirstColBodyContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyFixedColumnsFirstColBodyContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyFixedColumnsFirstColBodyContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanySubTitleFixedColumnsFirstColBodyContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyFixedColumnsFirstColBodyContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanySubTitleFixedColumnsFirstColBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyFixedColumnsFirstColBodyEventLinkContentFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyFixedColumnsFirstColBodyEventLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyFixedColumnsFirstColBodyEventLinkContentFlagFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanySubTitleFixedColumnsFirstColBodyEventLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyFixedColumnsFirstColBodyEventLinkContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventThumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnailAlt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyFixedColumnsFirstColBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanySubTitleFixedColumnsFirstColBodyContentCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanySubTitleFixedColumnsFirstColBodyCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanySubTitleFixedColumnsFirstColBodyEventLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyFixedColumnsSecondColBodyContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyFixedColumnsSecondColBodyContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyFixedColumnsSecondColBodyContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentFixedColumnsSecondColBodyContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyFixedColumnsSecondColBodyContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentFixedColumnsSecondColBodyContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyFixedColumnsSecondColBodyContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyFixedColumnsSecondColBodyContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyFixedColumnsSecondColBodyContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyFixedColumnsSecondColBodyContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyFixedColumnsSecondColBodyContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanySubTitleFixedColumnsSecondColBodyContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyFixedColumnsSecondColBodyContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanySubTitleFixedColumnsSecondColBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyFixedColumnsSecondColBodyEventLinkContentFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyFixedColumnsSecondColBodyEventLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyFixedColumnsSecondColBodyEventLinkContentFlagFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanySubTitleFixedColumnsSecondColBodyEventLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyFixedColumnsSecondColBodyEventLinkContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventThumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnailAlt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyFixedColumnsSecondColBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanySubTitleFixedColumnsSecondColBodyContentCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanySubTitleFixedColumnsSecondColBodyCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanySubTitleFixedColumnsSecondColBodyEventLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyFixedColumnsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headerSection"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyFixedColumnsFirstColBodyFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyFixedColumnsSecondColBodyFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyFixedTabsLayoutFirstHeadingVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyFixedTabsLayoutFirstHeadingBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayoutFirstHeadingExpertBlockExpertListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"person"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"peopleURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"skills"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayoutFirstHeadingExpertBlockLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyFixedTabsLayoutFirstHeadingExpertBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"expertList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayoutFirstHeadingExpertBlockExpertListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayoutFirstHeadingExpertBlockLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentFixedTabsLayoutFirstHeadingYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockYoutubePlaylistFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videosCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentFixedTabsLayoutFirstHeadingYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubePlaylist"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockYoutubePlaylistFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyFixedTabsLayoutFirstHeadingCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyFixedTabsLayoutFirstHeadingFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyFixedTabsLayoutFirstHeadingVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyFixedTabsLayoutFirstHeadingBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ExpertBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyFixedTabsLayoutFirstHeadingExpertBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"YoutubePlaylistBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyFixedTabsLayoutFirstHeadingCustomImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyFixedTabsLayoutFirstBodyVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyFixedTabsLayoutFirstBodyBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayoutFirstBodyExpertBlockExpertListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"person"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"peopleURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"skills"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayoutFirstBodyExpertBlockLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyFixedTabsLayoutFirstBodyExpertBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"expertList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayoutFirstBodyExpertBlockExpertListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayoutFirstBodyExpertBlockLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentFixedTabsLayoutFirstBodyYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockYoutubePlaylistFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videosCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentFixedTabsLayoutFirstBodyYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubePlaylist"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockYoutubePlaylistFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyFixedTabsLayoutFirstBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyFixedTabsLayoutFirstBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyFixedTabsLayoutFirstBodyVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyFixedTabsLayoutFirstBodyBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ExpertBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyFixedTabsLayoutFirstBodyExpertBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"YoutubePlaylistBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyFixedTabsLayoutFirstBodyCustomImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyFixedTabsLayoutSecondHeadingVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyFixedTabsLayoutSecondHeadingBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayoutSecondHeadingExpertBlockExpertListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"person"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"peopleURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"skills"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayoutSecondHeadingExpertBlockLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyFixedTabsLayoutSecondHeadingExpertBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"expertList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayoutSecondHeadingExpertBlockExpertListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayoutSecondHeadingExpertBlockLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentFixedTabsLayoutSecondHeadingYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockYoutubePlaylistFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videosCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentFixedTabsLayoutSecondHeadingYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubePlaylist"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockYoutubePlaylistFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyFixedTabsLayoutSecondHeadingCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyFixedTabsLayoutSecondHeadingFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyFixedTabsLayoutSecondHeadingVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyFixedTabsLayoutSecondHeadingBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ExpertBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyFixedTabsLayoutSecondHeadingExpertBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"YoutubePlaylistBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyFixedTabsLayoutSecondHeadingCustomImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyFixedTabsLayoutSecondBodyVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyFixedTabsLayoutSecondBodyBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayoutSecondBodyExpertBlockExpertListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"person"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"peopleURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"skills"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayoutSecondBodyExpertBlockLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyFixedTabsLayoutSecondBodyExpertBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"expertList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayoutSecondBodyExpertBlockExpertListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayoutSecondBodyExpertBlockLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentFixedTabsLayoutSecondBodyYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockYoutubePlaylistFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videosCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentFixedTabsLayoutSecondBodyYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubePlaylist"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockYoutubePlaylistFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyFixedTabsLayoutSecondBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyFixedTabsLayoutSecondBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyFixedTabsLayoutSecondBodyVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyFixedTabsLayoutSecondBodyBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ExpertBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyFixedTabsLayoutSecondBodyExpertBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"YoutubePlaylistBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyFixedTabsLayoutSecondBodyCustomImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyFixedTabsLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstHeading"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyFixedTabsLayoutFirstHeadingFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyFixedTabsLayoutFirstBodyFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondHeading"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyFixedTabsLayoutSecondHeadingFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyFixedTabsLayoutSecondBodyFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyGoogleMapsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"embedUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"embedWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"embedHeight"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentGridLayoutGridsBlocksLinkContentUtilityButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnIcon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentered"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeTopMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openInNewTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyGridLayoutGridsBlocksLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"UtilityButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentGridLayoutGridsBlocksLinkContentUtilityButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyGridLayoutGridsBlocksFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"image"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relatedImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"linkContent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyGridLayoutGridsBlocksLinkContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyGridLayoutGridsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"gridTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showGridTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centeredGridTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showHeaderDivider"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"offsetGridStart"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"blocks"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyGridLayoutGridsBlocksFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyGridLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"grids"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyGridLayoutGridsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyHeroActionsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"type"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyHeroImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyHeroFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"tagline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"actions"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyHeroActionsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"image"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyHeroImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyHorizontalCardCardListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyHorizontalCardButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyHorizontalCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cardList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyHorizontalCardCardListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"button"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyHorizontalCardButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyInternalCarouselItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyInternalCarouselTechnologiesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyInternalCarouselFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyInternalCarouselItemsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paragraph"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"website"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"technologies"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyInternalCarouselTechnologiesFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caseStudyUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyJoinAsPresenterFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"img"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyJoinGithubFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyJotFormEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"jotFormId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"containerClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyLatestTechBadgesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"userGroupGlobal"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"UserGroupGlobalFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyLatestTechFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"badges"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyLatestTechBadgesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyLocationBlockLocationListLocationFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"locations"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"LocationsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyLocationBlockLocationListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"location"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyLocationBlockLocationListLocationFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyLocationBlockChapelWebsiteFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"URL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyLocationBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"locationList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyLocationBlockLocationListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"chapelWebsite"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyLocationBlockChapelWebsiteFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyNewslettersTableFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headerText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyOrganizerFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImg"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"position"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyPaymentBlockPaymentsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paymentDetails"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PaymentDetailsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyPaymentBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"payments"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyPaymentBlockPaymentsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"footer"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"creditImgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altTxt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyPresenterBlockPresenterListPresenterFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"presenter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PresenterFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyPresenterBlockPresenterListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"presenter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyPresenterBlockPresenterListPresenterFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyPresenterBlockOtherEventFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyPresenterBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"presenterList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyPresenterBlockPresenterListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"otherEvent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyPresenterBlockOtherEventFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyRecurringEventFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"applyLinkRedirect"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"day"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodySectionHeaderFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headerText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyServiceCardsBigCardsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"description"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyServiceCardsSmallCardsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"isExternal"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyServiceCardsLinksFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyServiceCardsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bigCardsLabel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bigCards"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyServiceCardsBigCardsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"smallCardsLabel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"smallCards"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyServiceCardsSmallCardsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"links"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyServiceCardsLinksFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanySubTitleTableLayoutRowsCellsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cellValue"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyTableLayoutRowsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cells"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanySubTitleTableLayoutRowsCellsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"isHeader"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyTableLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"tableStyle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColBold"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headers"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"rows"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyTableLayoutRowsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanySubTitleTestimonialsListExcludedCategoriesCategoryNameFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"testimonialCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"TestimonialCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyTestimonialsListExcludedCategoriesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"categoryName"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanySubTitleTestimonialsListExcludedCategoriesCategoryNameFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyTestimonialsListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"excludedCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyTestimonialsListExcludedCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyTrainingInformationTrainingInformationItemsBodyVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyTrainingInformationTrainingInformationItemsBodyRecurringEventFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"applyLinkRedirect"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"day"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyTrainingInformationTrainingInformationItemsBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyTrainingInformationTrainingInformationItemsBodyVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"RecurringEvent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyTrainingInformationTrainingInformationItemsBodyRecurringEventFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyTrainingInformationTrainingInformationItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"body"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyTrainingInformationTrainingInformationItemsBodyFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyTrainingInformationFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"trainingInformationItems"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyTrainingInformationTrainingInformationItemsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyTrainingLearningOutcomeListItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyTrainingLearningOutcomeFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"listItems"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyTrainingLearningOutcomeListItemsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyTweetEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyUpcomingEventsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"numberOfEvents"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyUtilityButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnIcon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentered"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeTopMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openInNewTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyVerticalImageLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imageSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imageLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"message"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyInlineJotFormFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"jotFormId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"additionalClasses"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndex_bodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"AboutUs"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyAboutUsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Agenda"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyAgendaFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"AgreementForm"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyAgreementFormFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"InterestForm"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyInterestFormFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BuiltOnAzure"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyBuiltOnAzureFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Carousel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyCarouselFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Citation"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyCitationFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ClientList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyClientListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ClientLogos"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyClientLogosFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyColorBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorPalette"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyColorPaletteFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyContentCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomDownloadButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyCustomDownloadButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"DomainFromQuery"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyDomainFromQueryFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"DownloadBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyDownloadBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"DynamicColumns"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyDynamicColumnsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventBooking"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyEventBookingFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyEventLinkFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyFlagFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"FixedColumns"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyFixedColumnsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"FixedTabsLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyFixedTabsLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"GoogleMaps"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyGoogleMapsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"GridLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyGridLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Hero"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyHeroFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"HorizontalCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyHorizontalCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"InternalCarousel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyInternalCarouselFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"joinAsPresenter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyJoinAsPresenterFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"joinGithub"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyJoinGithubFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"JotFormEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyJotFormEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"LatestTech"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyLatestTechFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"LocationBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyLocationBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"NewslettersTable"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyNewslettersTableFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"organizer"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyOrganizerFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paymentBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyPaymentBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"PresenterBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyPresenterBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"RecurringEvent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyRecurringEventFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"SectionHeader"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodySectionHeaderFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ServiceCards"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyServiceCardsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TableLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyTableLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TestimonialsList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyTestimonialsListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TrainingInformation"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyTrainingInformationFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TrainingLearningOutcome"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyTrainingLearningOutcomeFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TweetEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyTweetEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"UpcomingEvents"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyUpcomingEventsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"UtilityButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyUtilityButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalImageLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyVerticalImageLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"InlineJotForm"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyInlineJotFormFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndexCompanyPagesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"body"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"pageURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"isExternal"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyIndexFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headerImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndexHeaderImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"seo"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndexSeoFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"_body"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex_bodyFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"companyPages"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndexCompanyPagesFilter"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CompanyIndexConnectionEdges"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"cursor"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"node"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndex"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[{"kind":"NamedType","name":{"kind":"Name","value":"Connection"}}],"directives":[],"name":{"kind":"Name","value":"CompanyIndexConnection"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"pageInfo"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageInfo"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"totalCount"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"edges"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyIndexConnectionEdges"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CompanySeoImages"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"url"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"width"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"height"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"alt"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CompanySeo"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"description"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"canonical"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"showBreadcrumb"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"images"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanySeoImages"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CompanyBeforeBodyCarouselItems"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"openIn"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"imgSrc"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CompanyBeforeBodyCarousel"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"items"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyBeforeBodyCarouselItems"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"backgroundColor"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"delay"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"showOnMobileDevices"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"CompanyBeforeBody"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"CompanyBeforeBodyCarousel"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Company_bodyAboutUs"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"backgroundColor"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"showMap"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Company_bodyAgendaAgendaItemList"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"placeholder"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"body"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Company_bodyAgenda"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"header"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"textColor"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"agendaItemList"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyAgendaAgendaItemList"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Company_bodyAgreementFormFields"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"id"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"placeholder"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"resizeable"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Company_bodyAgreementForm"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"backgroundColor"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"fields"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyAgreementFormFields"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Company_bodyInterestForm"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"buttonText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Company_bodyBookingButton"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"buttonText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"animated"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Company_bodyBuiltOnAzure"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"backgroundColor"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Company_bodyCarouselItems"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"openIn"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"imgSrc"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Company_bodyCarousel"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"items"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyCarouselItems"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"backgroundColor"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"delay"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"showOnMobileDevices"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Company_bodyCitation"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"author"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"article"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyClientListCategoriesCategory"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"ClientCategories"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Company_bodyClientListCategories"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"category"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyClientListCategoriesCategory"}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentClientListClientsCategoriesCategory"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"ClientCategories"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudy_bodyClientListClientsCategories"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"category"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentClientListClientsCategoriesCategory"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Company_bodyClientListClients"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"name"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"logo"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"logoUrl"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"content"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"caseStudyUrl"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"categories"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyClientListClientsCategories"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Company_bodyClientList"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"categories"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyClientListCategories"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"clients"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyClientListClients"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Company_bodyClientLogos"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"altText"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Company_bodyColorBlockColorRow"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"firstColor"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"fText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"secondColor"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"sText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"caption"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Company_bodyColorBlock"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"subTitle"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"colorRow"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyColorBlockColorRow"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Company_bodyColorPalette"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"name"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Company_bodyContent"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"content"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"paddingClass"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"size"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"align"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"backgroundColor"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Company_bodyContentCard"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"prose"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"centerAlignedText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"content"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Company_bodyCustomDownloadButton"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"btnText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"btnLink"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Company_bodyCustomImage"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"src"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"altText"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"alignment"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"height"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"width"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"customClass"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"caption"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"captionColor"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"sizes"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Company_bodyDomainFromQuery"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"showDomain"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Company_bodyDownloadBlockDownloads"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"header"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"img"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"imgBackground"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"firstLinkText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"firstLink"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"secondLinkText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"secondLink"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Company_bodyDownloadBlock"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"downloads"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyDownloadBlockDownloads"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"bottomBorder"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Company_bodyDynamicColumns"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"colBody"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"colCount"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyEventBookingEventListLocation"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"Locations"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Company_bodyEventBookingEventList"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"city"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"date"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"bookingURL"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"location"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyEventBookingEventListLocation"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Company_bodyEventBooking"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"eventDurationInDays"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"price"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"discountPrice"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"gstText"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"discountNote"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"eventList"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyEventBookingEventList"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Company_bodyEventLink"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"content"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"eventThumbnail"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"thumbnailAlt"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Company_bodyFlag"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"country"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Company_bodyFixedColumns"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"headerSection"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"firstColBody"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"secondColBody"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Company_bodyFixedTabsLayout"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"firstTab"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"firstHeading"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"firstBody"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"secondTab"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"secondHeading"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"secondBody"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Company_bodyGoogleMaps"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"embedUrl"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"embedWidth"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"embedHeight"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudy_bodyGridLayoutGridsBlocks"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"showTitle"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"image"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"relatedImage"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"linkContent"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Company_bodyGridLayoutGrids"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"gridTitle"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"showGridTitle"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"centeredGridTitle"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"showHeaderDivider"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"offsetGridStart"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"blocks"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyGridLayoutGridsBlocks"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Company_bodyGridLayout"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"grids"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyGridLayoutGrids"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Company_bodyHeroActions"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"type"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"icon"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Company_bodyHeroImage"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"src"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"alt"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Company_bodyHero"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"tagline"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"headline"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"text"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"actions"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyHeroActions"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"image"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyHeroImage"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"color"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Company_bodyHorizontalCardCardList"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"content"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"thumbnail"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Company_bodyHorizontalCardButton"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"text"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Company_bodyHorizontalCard"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"cardList"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyHorizontalCardCardList"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"button"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyHorizontalCardButton"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Company_bodyInternalCarouselItems"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"imgSrc"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Company_bodyInternalCarouselTechnologies"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"name"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Company_bodyInternalCarousel"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"items"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyInternalCarouselItems"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"header"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"paragraph"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"website"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"technologies"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyInternalCarouselTechnologies"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"caseStudyUrl"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"videoUrl"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Company_bodyJoinAsPresenter"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"img"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Company_bodyJoinGithub"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Company_bodyJotFormEmbed"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"jotFormId"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"buttonText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"containerClass"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"buttonClass"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"animated"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"Company_bodyLatestTechBadges"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"UserGroupGlobal"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Company_bodyLatestTech"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"badges"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyLatestTechBadges"}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyLocationBlockLocationListLocation"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"Locations"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Company_bodyLocationBlockLocationList"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"location"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyLocationBlockLocationListLocation"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Company_bodyLocationBlockChapelWebsite"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"URL"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Company_bodyLocationBlock"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"locationList"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyLocationBlockLocationList"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"chapelWebsite"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyLocationBlockChapelWebsite"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Company_bodyNewslettersTable"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"headerText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Company_bodyOrganizer"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"profileImg"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"profileLink"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"name"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"position"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"content"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"Company_bodyPaymentBlockPayments"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"PaymentDetails"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Company_bodyPaymentBlock"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"subTitle"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"payments"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyPaymentBlockPayments"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"footer"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"creditImgSrc"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"altTxt"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyPresenterBlockPresenterListPresenter"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"Presenter"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Company_bodyPresenterBlockPresenterList"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"presenter"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyPresenterBlockPresenterListPresenter"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Company_bodyPresenterBlockOtherEvent"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"eventURL"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Company_bodyPresenterBlock"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"header"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"presenterList"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyPresenterBlockPresenterList"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"otherEvent"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyPresenterBlockOtherEvent"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Company_bodyRecurringEvent"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"applyLinkRedirect"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"day"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Company_bodySectionHeader"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"headerText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Company_bodyServiceCardsBigCards"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"description"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"color"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"imgSrc"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Company_bodyServiceCardsSmallCards"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"color"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"imgSrc"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"isExternal"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Company_bodyServiceCardsLinks"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Company_bodyServiceCards"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"bigCardsLabel"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"bigCards"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyServiceCardsBigCards"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"smallCardsLabel"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"smallCards"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyServiceCardsSmallCards"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"links"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyServiceCardsLinks"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"backgroundColor"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudy_bodyTableLayoutRowsCells"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"cellValue"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Company_bodyTableLayoutRows"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"cells"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyTableLayoutRowsCells"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"isHeader"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Company_bodyTableLayout"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"tableStyle"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"firstColBold"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"headers"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"rows"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyTableLayoutRows"}}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyTestimonialsListExcludedCategoriesCategoryName"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"TestimonialCategories"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Company_bodyTestimonialsListExcludedCategories"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"categoryName"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyTestimonialsListExcludedCategoriesCategoryName"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Company_bodyTestimonialsList"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"excludedCategories"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyTestimonialsListExcludedCategories"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Company_bodyTrainingInformationTrainingInformationItems"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"header"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"body"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Company_bodyTrainingInformation"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"trainingInformationItems"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyTrainingInformationTrainingInformationItems"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Company_bodyTrainingLearningOutcomeListItems"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"content"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"icon"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Company_bodyTrainingLearningOutcome"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"header"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"listItems"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyTrainingLearningOutcomeListItems"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Company_bodyTweetEmbed"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"url"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Company_bodyUpcomingEvents"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"numberOfEvents"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Company_bodyUtilityButton"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"buttonText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"size"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"btnIcon"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"animated"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"uncentered"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"removeTopMargin"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"openInNewTab"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Company_bodyVerticalImageLayout"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"imageSrc"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"altText"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"imageLink"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"height"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"width"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"message"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"sizes"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Company_bodyVerticalListItem"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"content"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"index"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"icon"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"iconScale"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"afterBody"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Company_bodyVideoEmbed"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"url"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"videoWidth"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"removeMargin"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"uncentre"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"overflow"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"caption"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"duration"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Company_bodyInlineJotForm"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"jotFormId"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"additionalClasses"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"Company_body"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyAboutUs"}},{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyAgenda"}},{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyAgreementForm"}},{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyInterestForm"}},{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyBookingButton"}},{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyBuiltOnAzure"}},{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyCarousel"}},{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyCitation"}},{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyClientList"}},{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyClientLogos"}},{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyColorBlock"}},{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyColorPalette"}},{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyContent"}},{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyContentCard"}},{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyCustomDownloadButton"}},{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyCustomImage"}},{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyDomainFromQuery"}},{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyDownloadBlock"}},{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyDynamicColumns"}},{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyEventBooking"}},{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyEventLink"}},{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyFlag"}},{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyFixedColumns"}},{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyFixedTabsLayout"}},{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyGoogleMaps"}},{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyGridLayout"}},{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyHero"}},{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyHorizontalCard"}},{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyInternalCarousel"}},{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyJoinAsPresenter"}},{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyJoinGithub"}},{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyJotFormEmbed"}},{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyLatestTech"}},{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyLocationBlock"}},{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyNewslettersTable"}},{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyOrganizer"}},{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyPaymentBlock"}},{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyPresenterBlock"}},{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyRecurringEvent"}},{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodySectionHeader"}},{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyServiceCards"}},{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyTableLayout"}},{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyTestimonialsList"}},{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyTrainingInformation"}},{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyTrainingLearningOutcome"}},{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyTweetEmbed"}},{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyUpcomingEvents"}},{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyUtilityButton"}},{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyVerticalImageLayout"}},{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyVerticalListItem"}},{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyVideoEmbed"}},{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyInlineJotForm"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CompanyHistoryCards"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"year"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"location"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"description"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[{"kind":"NamedType","name":{"kind":"Name","value":"Node"}},{"kind":"NamedType","name":{"kind":"Name","value":"Document"}}],"directives":[],"name":{"kind":"Name","value":"Company"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"tip"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"seo"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanySeo"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"beforeBody"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyBeforeBody"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"subTitle"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"fullWidthBody"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"sidebar"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"hideSidebarOnMobile"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"fixedWidthSidebar"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"sidebarTestimonial"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"showRdPanel"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"showTechUpgradeBlock"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_body"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_body"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"historyCards"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyHistoryCards"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"id"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ID"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_sys"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"SystemInfo"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_values"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanySeoImagesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanySeoFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"description"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"canonical"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showBreadcrumb"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"images"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanySeoImagesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyBeforeBodyCarouselItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openIn"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyBeforeBodyCarouselFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyBeforeBodyCarouselItemsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"delay"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showOnMobileDevices"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyBeforeBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Carousel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyBeforeBodyCarouselFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanySubTitleCarouselItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openIn"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanySubTitleCarouselFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanySubTitleCarouselItemsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"delay"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showOnMobileDevices"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanySubTitleColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanySubTitleColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanySubTitleColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanySubTitleColorPaletteFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanySubTitleCustomDownloadButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanySubTitleCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanySubTitleDynamicCardGridBlockImageListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanySubTitleDynamicCardGridBlockImageListLinkFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imageSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanySubTitleDynamicCardGridBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"gridLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imageList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanySubTitleDynamicCardGridBlockImageListFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentFixedColumnsFirstColBodyContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentFixedColumnsFirstColBodyContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentFixedColumnsFirstColBodyContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyFixedColumnsFirstColBodyContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentFixedColumnsFirstColBodyContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyFixedColumnsFirstColBodyContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyFixedColumnsFirstColBodyContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentFixedColumnsFirstColBodyContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentFixedColumnsFirstColBodyContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentFixedColumnsFirstColBodyContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentFixedColumnsFirstColBodyContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyFixedColumnsFirstColBodyContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyFixedColumnsFirstColBodyContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyFixedColumnsFirstColBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentFixedColumnsFirstColBodyEventLinkContentFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyFixedColumnsFirstColBodyEventLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentFixedColumnsFirstColBodyEventLinkContentFlagFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyFixedColumnsFirstColBodyEventLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyFixedColumnsFirstColBodyEventLinkContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventThumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnailAlt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanySubTitleFixedColumnsFirstColBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyFixedColumnsFirstColBodyContentCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyFixedColumnsFirstColBodyCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyFixedColumnsFirstColBodyEventLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentFixedColumnsSecondColBodyContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentFixedColumnsSecondColBodyContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentFixedColumnsSecondColBodyContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyFixedColumnsSecondColBodyContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentFixedColumnsSecondColBodyContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyFixedColumnsSecondColBodyContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyFixedColumnsSecondColBodyContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentFixedColumnsSecondColBodyContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentFixedColumnsSecondColBodyContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentFixedColumnsSecondColBodyContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentFixedColumnsSecondColBodyContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyFixedColumnsSecondColBodyContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyFixedColumnsSecondColBodyContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyFixedColumnsSecondColBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentFixedColumnsSecondColBodyEventLinkContentFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyFixedColumnsSecondColBodyEventLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentFixedColumnsSecondColBodyEventLinkContentFlagFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyFixedColumnsSecondColBodyEventLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyFixedColumnsSecondColBodyEventLinkContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventThumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnailAlt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanySubTitleFixedColumnsSecondColBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyFixedColumnsSecondColBodyContentCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyFixedColumnsSecondColBodyCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyFixedColumnsSecondColBodyEventLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanySubTitleFixedColumnsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headerSection"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanySubTitleFixedColumnsFirstColBodyFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanySubTitleFixedColumnsSecondColBodyFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanySubTitleSectionHeaderFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headerText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyTableLayoutRowsCellsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cellValue"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanySubTitleTableLayoutRowsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cells"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyTableLayoutRowsCellsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"isHeader"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanySubTitleTableLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"tableStyle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColBold"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headers"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"rows"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanySubTitleTableLayoutRowsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyTestimonialsListExcludedCategoriesCategoryNameFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"testimonialCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"TestimonialCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanySubTitleTestimonialsListExcludedCategoriesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"categoryName"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyTestimonialsListExcludedCategoriesCategoryNameFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanySubTitleTestimonialsListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"excludedCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanySubTitleTestimonialsListExcludedCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanySubTitleUtilityButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnIcon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentered"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeTopMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openInNewTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanySubTitleVerticalImageLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imageSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imageLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"message"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanySubTitleVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanySubTitleFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Carousel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanySubTitleCarouselFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanySubTitleColorBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorPalette"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanySubTitleColorPaletteFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomDownloadButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanySubTitleCustomDownloadButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanySubTitleCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"DynamicCardGridBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanySubTitleDynamicCardGridBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"FixedColumns"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanySubTitleFixedColumnsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"SectionHeader"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanySubTitleSectionHeaderFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TableLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanySubTitleTableLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TestimonialsList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanySubTitleTestimonialsListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"UtilityButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanySubTitleUtilityButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalImageLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanySubTitleVerticalImageLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanySubTitleVideoEmbedFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanySidebarMicrosoftPanelFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanySidebarFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"MicrosoftPanel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanySidebarMicrosoftPanelFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyAboutUsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showMap"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentAgendaAgendaItemListBodyVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyAgendaAgendaItemListBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentAgendaAgendaItemListBodyVerticalListItemFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyAgendaAgendaItemListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"placeholder"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"body"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyAgendaAgendaItemListBodyFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyAgendaFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"textColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"agendaItemList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyAgendaAgendaItemListFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyAgreementFormFieldsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"id"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"placeholder"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"resizeable"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyAgreementFormFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fields"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyAgreementFormFieldsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyInterestFormFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyBuiltOnAzureFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyCarouselItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openIn"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyCarouselFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyCarouselItemsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"delay"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showOnMobileDevices"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyCitationFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"author"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"article"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyClientListCategoriesCategoryFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"clientCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ClientCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyClientListCategoriesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"category"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyClientListCategoriesCategoryFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentClientListClientsContentUtilityButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnIcon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentered"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeTopMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openInNewTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentClientListClientsContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentClientListClientsContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyClientListClientsContentContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyClientListClientsContentContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyClientListClientsContentContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyClientListClientsContentContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyClientListClientsContentContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyClientListClientsContentContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyClientListClientsContentContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyClientListClientsContentContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyClientListClientsContentContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyClientListClientsContentContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyClientListClientsContentContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentClientListClientsContentContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyClientListClientsContentContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyClientListClientsContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"UtilityButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentClientListClientsContentUtilityButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentClientListClientsContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentClientListClientsContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentClientListClientsContentContentCardFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentClientListClientsCategoriesCategoryFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"clientCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ClientCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyClientListClientsCategoriesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"category"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentClientListClientsCategoriesCategoryFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyClientListClientsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"logo"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"logoUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyClientListClientsContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caseStudyUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"categories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyClientListClientsCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyClientListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"categories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyClientListCategoriesFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"clients"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyClientListClientsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyClientLogosFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyColorPaletteFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyContentContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyContentContentClientLogosFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyContentContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentContentContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyContentContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentContentContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyContentContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyContentContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ClientLogos"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyContentContentClientLogosFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyContentContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyContentContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyContentContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paddingClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"align"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyCustomDownloadButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyDomainFromQueryFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showDomain"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyDownloadBlockDownloadsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"img"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgBackground"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstLinkText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondLinkText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyDownloadBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"downloads"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyDownloadBlockDownloadsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bottomBorder"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyDynamicColumnsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyEventBookingEventListLocationFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"locations"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"LocationsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyEventBookingEventListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"city"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"date"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DatetimeFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bookingURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"location"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyEventBookingEventListLocationFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyEventBookingFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventDurationInDays"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"price"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"discountPrice"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"gstText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"discountNote"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyEventBookingEventListFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyEventLinkContentFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyEventLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyEventLinkContentFlagFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyEventLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyEventLinkContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventThumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnailAlt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyFixedColumnsFirstColBodyContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyFixedColumnsFirstColBodyContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyFixedColumnsFirstColBodyContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyFixedColumnsFirstColBodyContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyFixedColumnsFirstColBodyContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyFixedColumnsFirstColBodyContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentFixedColumnsFirstColBodyContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyFixedColumnsFirstColBodyContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyFixedColumnsFirstColBodyContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyFixedColumnsFirstColBodyContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyFixedColumnsFirstColBodyContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyFixedColumnsFirstColBodyContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentFixedColumnsFirstColBodyContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyFixedColumnsFirstColBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyFixedColumnsFirstColBodyEventLinkContentFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentFixedColumnsFirstColBodyEventLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyFixedColumnsFirstColBodyEventLinkContentFlagFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyFixedColumnsFirstColBodyEventLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentFixedColumnsFirstColBodyEventLinkContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventThumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnailAlt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyFixedColumnsFirstColBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyFixedColumnsFirstColBodyContentCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyFixedColumnsFirstColBodyCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyFixedColumnsFirstColBodyEventLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyFixedColumnsSecondColBodyContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyFixedColumnsSecondColBodyContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyFixedColumnsSecondColBodyContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyFixedColumnsSecondColBodyContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyFixedColumnsSecondColBodyContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyFixedColumnsSecondColBodyContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentFixedColumnsSecondColBodyContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyFixedColumnsSecondColBodyContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyFixedColumnsSecondColBodyContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyFixedColumnsSecondColBodyContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyFixedColumnsSecondColBodyContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyFixedColumnsSecondColBodyContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentFixedColumnsSecondColBodyContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyFixedColumnsSecondColBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyFixedColumnsSecondColBodyEventLinkContentFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentFixedColumnsSecondColBodyEventLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyFixedColumnsSecondColBodyEventLinkContentFlagFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyFixedColumnsSecondColBodyEventLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentFixedColumnsSecondColBodyEventLinkContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventThumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnailAlt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyFixedColumnsSecondColBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyFixedColumnsSecondColBodyContentCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyFixedColumnsSecondColBodyCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyFixedColumnsSecondColBodyEventLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyFixedColumnsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headerSection"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyFixedColumnsFirstColBodyFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyFixedColumnsSecondColBodyFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayoutFirstHeadingVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayoutFirstHeadingBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentFixedTabsLayoutFirstHeadingExpertBlockExpertListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"person"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"peopleURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"skills"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentFixedTabsLayoutFirstHeadingExpertBlockLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayoutFirstHeadingExpertBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"expertList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentFixedTabsLayoutFirstHeadingExpertBlockExpertListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentFixedTabsLayoutFirstHeadingExpertBlockLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentFixedTabsLayoutFirstHeadingYoutubePlaylistBlockYoutubePlaylistFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videosCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubePlaylist"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentFixedTabsLayoutFirstHeadingYoutubePlaylistBlockYoutubePlaylistFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayoutFirstHeadingCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyFixedTabsLayoutFirstHeadingFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayoutFirstHeadingVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayoutFirstHeadingBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ExpertBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayoutFirstHeadingExpertBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"YoutubePlaylistBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayoutFirstHeadingCustomImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayoutFirstBodyVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayoutFirstBodyBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentFixedTabsLayoutFirstBodyExpertBlockExpertListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"person"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"peopleURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"skills"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentFixedTabsLayoutFirstBodyExpertBlockLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayoutFirstBodyExpertBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"expertList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentFixedTabsLayoutFirstBodyExpertBlockExpertListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentFixedTabsLayoutFirstBodyExpertBlockLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentFixedTabsLayoutFirstBodyYoutubePlaylistBlockYoutubePlaylistFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videosCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubePlaylist"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentFixedTabsLayoutFirstBodyYoutubePlaylistBlockYoutubePlaylistFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayoutFirstBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyFixedTabsLayoutFirstBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayoutFirstBodyVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayoutFirstBodyBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ExpertBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayoutFirstBodyExpertBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"YoutubePlaylistBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayoutFirstBodyCustomImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayoutSecondHeadingVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayoutSecondHeadingBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentFixedTabsLayoutSecondHeadingExpertBlockExpertListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"person"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"peopleURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"skills"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentFixedTabsLayoutSecondHeadingExpertBlockLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayoutSecondHeadingExpertBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"expertList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentFixedTabsLayoutSecondHeadingExpertBlockExpertListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentFixedTabsLayoutSecondHeadingExpertBlockLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentFixedTabsLayoutSecondHeadingYoutubePlaylistBlockYoutubePlaylistFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videosCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubePlaylist"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentFixedTabsLayoutSecondHeadingYoutubePlaylistBlockYoutubePlaylistFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayoutSecondHeadingCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyFixedTabsLayoutSecondHeadingFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayoutSecondHeadingVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayoutSecondHeadingBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ExpertBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayoutSecondHeadingExpertBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"YoutubePlaylistBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayoutSecondHeadingCustomImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayoutSecondBodyVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayoutSecondBodyBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentFixedTabsLayoutSecondBodyExpertBlockExpertListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"person"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"peopleURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"skills"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentFixedTabsLayoutSecondBodyExpertBlockLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayoutSecondBodyExpertBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"expertList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentFixedTabsLayoutSecondBodyExpertBlockExpertListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentFixedTabsLayoutSecondBodyExpertBlockLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentFixedTabsLayoutSecondBodyYoutubePlaylistBlockYoutubePlaylistFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videosCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubePlaylist"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentFixedTabsLayoutSecondBodyYoutubePlaylistBlockYoutubePlaylistFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayoutSecondBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyFixedTabsLayoutSecondBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayoutSecondBodyVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayoutSecondBodyBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ExpertBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayoutSecondBodyExpertBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"YoutubePlaylistBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayoutSecondBodyCustomImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyFixedTabsLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstHeading"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyFixedTabsLayoutFirstHeadingFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyFixedTabsLayoutFirstBodyFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondHeading"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyFixedTabsLayoutSecondHeadingFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyFixedTabsLayoutSecondBodyFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyGoogleMapsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"embedUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"embedWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"embedHeight"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyGridLayoutGridsBlocksLinkContentUtilityButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnIcon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentered"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeTopMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openInNewTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentGridLayoutGridsBlocksLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"UtilityButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyGridLayoutGridsBlocksLinkContentUtilityButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyGridLayoutGridsBlocksFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"image"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relatedImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"linkContent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentGridLayoutGridsBlocksLinkContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyGridLayoutGridsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"gridTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showGridTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centeredGridTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showHeaderDivider"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"offsetGridStart"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"blocks"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyGridLayoutGridsBlocksFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyGridLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"grids"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyGridLayoutGridsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyHeroActionsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"type"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyHeroImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyHeroFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"tagline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"actions"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyHeroActionsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"image"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyHeroImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyHorizontalCardCardListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyHorizontalCardButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyHorizontalCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cardList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyHorizontalCardCardListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"button"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyHorizontalCardButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyInternalCarouselItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyInternalCarouselTechnologiesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyInternalCarouselFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyInternalCarouselItemsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paragraph"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"website"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"technologies"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyInternalCarouselTechnologiesFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caseStudyUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyJoinAsPresenterFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"img"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyJoinGithubFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyJotFormEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"jotFormId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"containerClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyLatestTechBadgesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"userGroupGlobal"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"UserGroupGlobalFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyLatestTechFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"badges"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyLatestTechBadgesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyLocationBlockLocationListLocationFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"locations"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"LocationsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyLocationBlockLocationListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"location"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyLocationBlockLocationListLocationFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyLocationBlockChapelWebsiteFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"URL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyLocationBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"locationList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyLocationBlockLocationListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"chapelWebsite"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyLocationBlockChapelWebsiteFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyNewslettersTableFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headerText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyOrganizerFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImg"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"position"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyPaymentBlockPaymentsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paymentDetails"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PaymentDetailsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyPaymentBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"payments"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyPaymentBlockPaymentsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"footer"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"creditImgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altTxt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyPresenterBlockPresenterListPresenterFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"presenter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PresenterFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyPresenterBlockPresenterListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"presenter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyPresenterBlockPresenterListPresenterFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyPresenterBlockOtherEventFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyPresenterBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"presenterList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyPresenterBlockPresenterListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"otherEvent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyPresenterBlockOtherEventFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyRecurringEventFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"applyLinkRedirect"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"day"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodySectionHeaderFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headerText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyServiceCardsBigCardsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"description"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyServiceCardsSmallCardsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"isExternal"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyServiceCardsLinksFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyServiceCardsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bigCardsLabel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bigCards"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyServiceCardsBigCardsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"smallCardsLabel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"smallCards"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyServiceCardsSmallCardsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"links"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyServiceCardsLinksFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyTableLayoutRowsCellsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cellValue"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyTableLayoutRowsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cells"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyTableLayoutRowsCellsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"isHeader"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyTableLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"tableStyle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColBold"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headers"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"rows"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyTableLayoutRowsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyTestimonialsListExcludedCategoriesCategoryNameFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"testimonialCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"TestimonialCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyTestimonialsListExcludedCategoriesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"categoryName"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyTestimonialsListExcludedCategoriesCategoryNameFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyTestimonialsListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"excludedCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyTestimonialsListExcludedCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentTrainingInformationTrainingInformationItemsBodyVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentTrainingInformationTrainingInformationItemsBodyRecurringEventFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"applyLinkRedirect"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"day"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyTrainingInformationTrainingInformationItemsBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentTrainingInformationTrainingInformationItemsBodyVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"RecurringEvent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentTrainingInformationTrainingInformationItemsBodyRecurringEventFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyTrainingInformationTrainingInformationItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"body"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyTrainingInformationTrainingInformationItemsBodyFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyTrainingInformationFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"trainingInformationItems"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyTrainingInformationTrainingInformationItemsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyTrainingLearningOutcomeListItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyTrainingLearningOutcomeFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"listItems"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyTrainingLearningOutcomeListItemsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyTweetEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyUpcomingEventsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"numberOfEvents"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyUtilityButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnIcon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentered"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeTopMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openInNewTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyVerticalImageLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imageSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imageLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"message"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyInlineJotFormFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"jotFormId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"additionalClasses"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Company_bodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"AboutUs"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyAboutUsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Agenda"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyAgendaFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"AgreementForm"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyAgreementFormFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"InterestForm"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyInterestFormFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BuiltOnAzure"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyBuiltOnAzureFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Carousel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyCarouselFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Citation"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyCitationFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ClientList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyClientListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ClientLogos"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyClientLogosFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyColorBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorPalette"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyColorPaletteFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyContentCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomDownloadButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyCustomDownloadButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"DomainFromQuery"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyDomainFromQueryFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"DownloadBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyDownloadBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"DynamicColumns"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyDynamicColumnsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventBooking"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyEventBookingFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyEventLinkFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyFlagFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"FixedColumns"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyFixedColumnsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"FixedTabsLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyFixedTabsLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"GoogleMaps"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyGoogleMapsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"GridLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyGridLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Hero"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyHeroFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"HorizontalCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyHorizontalCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"InternalCarousel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyInternalCarouselFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"joinAsPresenter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyJoinAsPresenterFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"joinGithub"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyJoinGithubFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"JotFormEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyJotFormEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"LatestTech"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyLatestTechFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"LocationBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyLocationBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"NewslettersTable"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyNewslettersTableFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"organizer"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyOrganizerFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paymentBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyPaymentBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"PresenterBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyPresenterBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"RecurringEvent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyRecurringEventFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"SectionHeader"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodySectionHeaderFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ServiceCards"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyServiceCardsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TableLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyTableLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TestimonialsList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyTestimonialsListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TrainingInformation"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyTrainingInformationFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TrainingLearningOutcome"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyTrainingLearningOutcomeFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TweetEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyTweetEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"UpcomingEvents"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyUpcomingEventsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"UtilityButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyUtilityButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalImageLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyVerticalImageLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"InlineJotForm"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyInlineJotFormFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyHistoryCardsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"year"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"location"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"description"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CompanyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"tip"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"seo"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanySeoFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"beforeBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyBeforeBodyFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanySubTitleFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fullWidthBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sidebar"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanySidebarFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"hideSidebarOnMobile"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fixedWidthSidebar"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sidebarTestimonial"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showRdPanel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showTechUpgradeBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"_body"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company_bodyFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"historyCards"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyHistoryCardsFilter"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CompanyConnectionEdges"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"cursor"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"node"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Company"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[{"kind":"NamedType","name":{"kind":"Name","value":"Connection"}}],"directives":[],"name":{"kind":"Name","value":"CompanyConnection"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"pageInfo"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageInfo"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"totalCount"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"edges"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"CompanyConnectionEdges"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[{"kind":"NamedType","name":{"kind":"Name","value":"Node"}},{"kind":"NamedType","name":{"kind":"Name","value":"Document"}}],"directives":[],"name":{"kind":"Name","value":"ClientCategories"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"name"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"id"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ID"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_sys"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"SystemInfo"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_values"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ClientCategoriesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ClientCategoriesConnectionEdges"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"cursor"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"node"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"ClientCategories"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[{"kind":"NamedType","name":{"kind":"Name","value":"Connection"}}],"directives":[],"name":{"kind":"Name","value":"ClientCategoriesConnection"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"pageInfo"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageInfo"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"totalCount"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"edges"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ClientCategoriesConnectionEdges"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[{"kind":"NamedType","name":{"kind":"Name","value":"Node"}},{"kind":"NamedType","name":{"kind":"Name","value":"Document"}}],"directives":[],"name":{"kind":"Name","value":"PaymentDetails"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"tip"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"bankName"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"accountName"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"bsbNumber"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"accountNumber"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"swiftNumber"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"abn"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"acn"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"id"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ID"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_sys"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"SystemInfo"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_values"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"PaymentDetailsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"tip"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bankName"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"accountName"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bsbNumber"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"accountNumber"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"swiftNumber"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"abn"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"acn"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"PaymentDetailsConnectionEdges"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"cursor"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"node"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"PaymentDetails"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[{"kind":"NamedType","name":{"kind":"Name","value":"Connection"}}],"directives":[],"name":{"kind":"Name","value":"PaymentDetailsConnection"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"pageInfo"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageInfo"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"totalCount"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"edges"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PaymentDetailsConnectionEdges"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudySeoImages"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"url"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"width"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"height"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"alt"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudySeo"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"description"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"canonical"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"showBreadcrumb"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"images"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudySeoImages"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudy_bodyAboutUs"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"backgroundColor"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"showMap"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudy_bodyAgendaAgendaItemList"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"placeholder"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"body"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudy_bodyAgenda"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"header"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"textColor"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"agendaItemList"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyAgendaAgendaItemList"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudy_bodyAgreementFormFields"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"id"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"placeholder"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"resizeable"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudy_bodyAgreementForm"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"backgroundColor"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"fields"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyAgreementFormFields"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudy_bodyInterestForm"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"buttonText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudy_bodyBookingButton"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"buttonText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"animated"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudy_bodyBuiltOnAzure"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"backgroundColor"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudy_bodyCarouselItems"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"openIn"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"imgSrc"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudy_bodyCarousel"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"items"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyCarouselItems"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"backgroundColor"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"delay"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"showOnMobileDevices"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudy_bodyCitation"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"author"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"article"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentClientListCategoriesCategory"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"ClientCategories"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudy_bodyClientListCategories"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"category"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentClientListCategoriesCategory"}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyClientListClientsCategoriesCategory"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"ClientCategories"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudyContentClientListClientsCategories"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"category"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyClientListClientsCategoriesCategory"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudy_bodyClientListClients"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"name"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"logo"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"logoUrl"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"content"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"caseStudyUrl"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"categories"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentClientListClientsCategories"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudy_bodyClientList"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"categories"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyClientListCategories"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"clients"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyClientListClients"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudy_bodyClientLogos"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"altText"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudy_bodyColorBlockColorRow"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"firstColor"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"fText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"secondColor"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"sText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"caption"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudy_bodyColorBlock"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"subTitle"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"colorRow"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyColorBlockColorRow"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudy_bodyColorPalette"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"name"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudy_bodyContent"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"content"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"paddingClass"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"size"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"align"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"backgroundColor"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudy_bodyContentCard"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"prose"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"centerAlignedText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"content"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudy_bodyCustomDownloadButton"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"btnText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"btnLink"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudy_bodyCustomImage"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"src"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"altText"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"alignment"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"height"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"width"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"customClass"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"caption"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"captionColor"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"sizes"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudy_bodyDomainFromQuery"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"showDomain"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudy_bodyDownloadBlockDownloads"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"header"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"img"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"imgBackground"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"firstLinkText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"firstLink"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"secondLinkText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"secondLink"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudy_bodyDownloadBlock"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"downloads"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyDownloadBlockDownloads"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"bottomBorder"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudy_bodyDynamicColumns"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"colBody"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"colCount"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentEventBookingEventListLocation"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"Locations"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudy_bodyEventBookingEventList"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"city"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"date"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"bookingURL"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"location"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentEventBookingEventListLocation"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudy_bodyEventBooking"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"eventDurationInDays"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"price"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"discountPrice"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"gstText"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"discountNote"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"eventList"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyEventBookingEventList"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudy_bodyEventLink"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"content"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"eventThumbnail"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"thumbnailAlt"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudy_bodyFlag"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"country"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudy_bodyFixedColumns"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"headerSection"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"firstColBody"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"secondColBody"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayout"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"firstTab"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"firstHeading"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"firstBody"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"secondTab"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"secondHeading"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"secondBody"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudy_bodyGoogleMaps"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"embedUrl"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"embedWidth"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"embedHeight"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudyContentGridLayoutGridsBlocks"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"showTitle"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"image"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"relatedImage"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"linkContent"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudy_bodyGridLayoutGrids"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"gridTitle"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"showGridTitle"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"centeredGridTitle"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"showHeaderDivider"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"offsetGridStart"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"blocks"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentGridLayoutGridsBlocks"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudy_bodyGridLayout"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"grids"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyGridLayoutGrids"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudy_bodyHeroActions"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"type"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"icon"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudy_bodyHeroImage"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"src"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"alt"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudy_bodyHero"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"tagline"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"headline"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"text"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"actions"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyHeroActions"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"image"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyHeroImage"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"color"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudy_bodyHorizontalCardCardList"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"content"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"thumbnail"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudy_bodyHorizontalCardButton"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"text"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudy_bodyHorizontalCard"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"cardList"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyHorizontalCardCardList"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"button"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyHorizontalCardButton"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudy_bodyInternalCarouselItems"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"imgSrc"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudy_bodyInternalCarouselTechnologies"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"name"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudy_bodyInternalCarousel"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"items"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyInternalCarouselItems"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"header"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"paragraph"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"website"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"technologies"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyInternalCarouselTechnologies"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"caseStudyUrl"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"videoUrl"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudy_bodyJoinAsPresenter"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"img"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudy_bodyJoinGithub"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudy_bodyJotFormEmbed"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"jotFormId"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"buttonText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"containerClass"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"buttonClass"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"animated"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyLatestTechBadges"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"UserGroupGlobal"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudy_bodyLatestTech"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"badges"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyLatestTechBadges"}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentLocationBlockLocationListLocation"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"Locations"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudy_bodyLocationBlockLocationList"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"location"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentLocationBlockLocationListLocation"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudy_bodyLocationBlockChapelWebsite"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"URL"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudy_bodyLocationBlock"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"locationList"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyLocationBlockLocationList"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"chapelWebsite"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyLocationBlockChapelWebsite"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudy_bodyNewslettersTable"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"headerText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudy_bodyOrganizer"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"profileImg"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"profileLink"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"name"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"position"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"content"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyPaymentBlockPayments"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"PaymentDetails"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudy_bodyPaymentBlock"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"subTitle"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"payments"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyPaymentBlockPayments"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"footer"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"creditImgSrc"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"altTxt"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentPresenterBlockPresenterListPresenter"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"Presenter"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudy_bodyPresenterBlockPresenterList"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"presenter"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentPresenterBlockPresenterListPresenter"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudy_bodyPresenterBlockOtherEvent"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"eventURL"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudy_bodyPresenterBlock"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"header"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"presenterList"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyPresenterBlockPresenterList"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"otherEvent"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyPresenterBlockOtherEvent"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudy_bodyRecurringEvent"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"applyLinkRedirect"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"day"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudy_bodySectionHeader"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"headerText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudy_bodyServiceCardsBigCards"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"description"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"color"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"imgSrc"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudy_bodyServiceCardsSmallCards"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"color"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"imgSrc"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"isExternal"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudy_bodyServiceCardsLinks"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudy_bodyServiceCards"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"bigCardsLabel"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"bigCards"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyServiceCardsBigCards"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"smallCardsLabel"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"smallCards"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyServiceCardsSmallCards"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"links"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyServiceCardsLinks"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"backgroundColor"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudyContentTableLayoutRowsCells"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"cellValue"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudy_bodyTableLayoutRows"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"cells"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentTableLayoutRowsCells"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"isHeader"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudy_bodyTableLayout"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"tableStyle"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"firstColBold"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"headers"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"rows"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyTableLayoutRows"}}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentTestimonialsListExcludedCategoriesCategoryName"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"TestimonialCategories"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudy_bodyTestimonialsListExcludedCategories"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"categoryName"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentTestimonialsListExcludedCategoriesCategoryName"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudy_bodyTestimonialsList"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"excludedCategories"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyTestimonialsListExcludedCategories"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudy_bodyTrainingInformationTrainingInformationItems"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"header"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"body"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudy_bodyTrainingInformation"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"trainingInformationItems"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyTrainingInformationTrainingInformationItems"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudy_bodyTrainingLearningOutcomeListItems"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"content"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"icon"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudy_bodyTrainingLearningOutcome"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"header"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"listItems"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyTrainingLearningOutcomeListItems"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudy_bodyTweetEmbed"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"url"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudy_bodyUpcomingEvents"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"numberOfEvents"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudy_bodyUtilityButton"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"buttonText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"size"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"btnIcon"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"animated"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"uncentered"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"removeTopMargin"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"openInNewTab"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudy_bodyVerticalImageLayout"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"imageSrc"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"altText"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"imageLink"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"height"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"width"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"message"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"sizes"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudy_bodyVerticalListItem"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"content"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"index"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"icon"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"iconScale"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"afterBody"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudy_bodyVideoEmbed"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"url"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"videoWidth"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"removeMargin"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"uncentre"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"overflow"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"caption"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"duration"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudy_bodyInlineJotForm"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"jotFormId"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"additionalClasses"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"CaseStudy_body"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyAboutUs"}},{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyAgenda"}},{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyAgreementForm"}},{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyInterestForm"}},{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyBookingButton"}},{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyBuiltOnAzure"}},{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyCarousel"}},{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyCitation"}},{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyClientList"}},{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyClientLogos"}},{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyColorBlock"}},{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyColorPalette"}},{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyContent"}},{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyContentCard"}},{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyCustomDownloadButton"}},{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyCustomImage"}},{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyDomainFromQuery"}},{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyDownloadBlock"}},{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyDynamicColumns"}},{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyEventBooking"}},{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyEventLink"}},{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyFlag"}},{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyFixedColumns"}},{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayout"}},{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyGoogleMaps"}},{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyGridLayout"}},{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyHero"}},{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyHorizontalCard"}},{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyInternalCarousel"}},{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyJoinAsPresenter"}},{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyJoinGithub"}},{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyJotFormEmbed"}},{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyLatestTech"}},{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyLocationBlock"}},{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyNewslettersTable"}},{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyOrganizer"}},{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyPaymentBlock"}},{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyPresenterBlock"}},{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyRecurringEvent"}},{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodySectionHeader"}},{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyServiceCards"}},{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyTableLayout"}},{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyTestimonialsList"}},{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyTrainingInformation"}},{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyTrainingLearningOutcome"}},{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyTweetEmbed"}},{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyUpcomingEvents"}},{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyUtilityButton"}},{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyVerticalImageLayout"}},{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyVerticalListItem"}},{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyVideoEmbed"}},{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyInlineJotForm"}}]},{"kind":"ObjectTypeDefinition","interfaces":[{"kind":"NamedType","name":{"kind":"Name","value":"Node"}},{"kind":"NamedType","name":{"kind":"Name","value":"Document"}}],"directives":[],"name":{"kind":"Name","value":"CaseStudy"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"tip"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"seo"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudySeo"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"heading"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"subHeading"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_body"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_body"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"content"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"id"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ID"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_sys"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"SystemInfo"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_values"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudySeoImagesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudySeoFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"description"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"canonical"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showBreadcrumb"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"images"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudySeoImagesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyAboutUsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showMap"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyAgendaAgendaItemListBodyVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentAgendaAgendaItemListBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyAgendaAgendaItemListBodyVerticalListItemFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyAgendaAgendaItemListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"placeholder"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"body"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentAgendaAgendaItemListBodyFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyAgendaFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"textColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"agendaItemList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyAgendaAgendaItemListFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyAgreementFormFieldsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"id"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"placeholder"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"resizeable"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyAgreementFormFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fields"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyAgreementFormFieldsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyInterestFormFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyBuiltOnAzureFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyCarouselItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openIn"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyCarouselFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyCarouselItemsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"delay"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showOnMobileDevices"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyCitationFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"author"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"article"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentClientListCategoriesCategoryFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"clientCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ClientCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyClientListCategoriesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"category"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentClientListCategoriesCategoryFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyClientListClientsContentUtilityButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnIcon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentered"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeTopMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openInNewTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyClientListClientsContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyClientListClientsContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyClientListClientsContentContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyClientListClientsContentContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyClientListClientsContentContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyClientListClientsContentContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyClientListClientsContentContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyClientListClientsContentContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyClientListClientsContentContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyClientListClientsContentContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyClientListClientsContentContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyClientListClientsContentContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyClientListClientsContentContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyClientListClientsContentContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyClientListClientsContentContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentClientListClientsContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"UtilityButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyClientListClientsContentUtilityButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyClientListClientsContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyClientListClientsContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyClientListClientsContentContentCardFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyClientListClientsCategoriesCategoryFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"clientCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ClientCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentClientListClientsCategoriesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"category"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyClientListClientsCategoriesCategoryFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyClientListClientsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"logo"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"logoUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentClientListClientsContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caseStudyUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"categories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentClientListClientsCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyClientListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"categories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyClientListCategoriesFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"clients"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyClientListClientsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyClientLogosFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyColorPaletteFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentContentContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentContentContentClientLogosFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentContentContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyContentContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentContentContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyContentContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyContentContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentContentContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ClientLogos"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentContentContentClientLogosFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentContentContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentContentContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyContentContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paddingClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"align"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyCustomDownloadButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyDomainFromQueryFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showDomain"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyDownloadBlockDownloadsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"img"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgBackground"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstLinkText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondLinkText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyDownloadBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"downloads"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyDownloadBlockDownloadsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bottomBorder"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyDynamicColumnsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentEventBookingEventListLocationFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"locations"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"LocationsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyEventBookingEventListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"city"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"date"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DatetimeFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bookingURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"location"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentEventBookingEventListLocationFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyEventBookingFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventDurationInDays"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"price"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"discountPrice"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"gstText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"discountNote"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyEventBookingEventListFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentEventLinkContentFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyEventLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentEventLinkContentFlagFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyEventLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyEventLinkContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventThumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnailAlt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyFixedColumnsFirstColBodyContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyFixedColumnsFirstColBodyContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyFixedColumnsFirstColBodyContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyFixedColumnsFirstColBodyContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyFixedColumnsFirstColBodyContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyFixedColumnsFirstColBodyContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyFixedColumnsFirstColBodyContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyFixedColumnsFirstColBodyContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyFixedColumnsFirstColBodyContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyFixedColumnsFirstColBodyContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyFixedColumnsFirstColBodyContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentFixedColumnsFirstColBodyContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyFixedColumnsFirstColBodyContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentFixedColumnsFirstColBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyFixedColumnsFirstColBodyEventLinkContentFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyFixedColumnsFirstColBodyEventLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyFixedColumnsFirstColBodyEventLinkContentFlagFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentFixedColumnsFirstColBodyEventLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyFixedColumnsFirstColBodyEventLinkContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventThumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnailAlt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyFixedColumnsFirstColBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentFixedColumnsFirstColBodyContentCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentFixedColumnsFirstColBodyCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentFixedColumnsFirstColBodyEventLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyFixedColumnsSecondColBodyContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyFixedColumnsSecondColBodyContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyFixedColumnsSecondColBodyContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyFixedColumnsSecondColBodyContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyFixedColumnsSecondColBodyContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyFixedColumnsSecondColBodyContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyFixedColumnsSecondColBodyContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyFixedColumnsSecondColBodyContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyFixedColumnsSecondColBodyContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyFixedColumnsSecondColBodyContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyFixedColumnsSecondColBodyContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentFixedColumnsSecondColBodyContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyFixedColumnsSecondColBodyContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentFixedColumnsSecondColBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyFixedColumnsSecondColBodyEventLinkContentFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyFixedColumnsSecondColBodyEventLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyFixedColumnsSecondColBodyEventLinkContentFlagFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentFixedColumnsSecondColBodyEventLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyFixedColumnsSecondColBodyEventLinkContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventThumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnailAlt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyFixedColumnsSecondColBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentFixedColumnsSecondColBodyContentCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentFixedColumnsSecondColBodyCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentFixedColumnsSecondColBodyEventLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyFixedColumnsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headerSection"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyFixedColumnsFirstColBodyFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyFixedColumnsSecondColBodyFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentFixedTabsLayoutFirstHeadingVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentFixedTabsLayoutFirstHeadingBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyFixedTabsLayoutFirstHeadingExpertBlockExpertListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"person"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"peopleURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"skills"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyFixedTabsLayoutFirstHeadingExpertBlockLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentFixedTabsLayoutFirstHeadingExpertBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"expertList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyFixedTabsLayoutFirstHeadingExpertBlockExpertListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyFixedTabsLayoutFirstHeadingExpertBlockLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockYoutubePlaylistFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videosCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentFixedTabsLayoutFirstHeadingYoutubePlaylistBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubePlaylist"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockYoutubePlaylistFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentFixedTabsLayoutFirstHeadingCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayoutFirstHeadingFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentFixedTabsLayoutFirstHeadingVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentFixedTabsLayoutFirstHeadingBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ExpertBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentFixedTabsLayoutFirstHeadingExpertBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"YoutubePlaylistBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentFixedTabsLayoutFirstHeadingYoutubePlaylistBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentFixedTabsLayoutFirstHeadingCustomImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentFixedTabsLayoutFirstBodyVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentFixedTabsLayoutFirstBodyBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyFixedTabsLayoutFirstBodyExpertBlockExpertListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"person"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"peopleURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"skills"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyFixedTabsLayoutFirstBodyExpertBlockLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentFixedTabsLayoutFirstBodyExpertBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"expertList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyFixedTabsLayoutFirstBodyExpertBlockExpertListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyFixedTabsLayoutFirstBodyExpertBlockLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockYoutubePlaylistFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videosCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentFixedTabsLayoutFirstBodyYoutubePlaylistBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubePlaylist"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockYoutubePlaylistFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentFixedTabsLayoutFirstBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayoutFirstBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentFixedTabsLayoutFirstBodyVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentFixedTabsLayoutFirstBodyBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ExpertBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentFixedTabsLayoutFirstBodyExpertBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"YoutubePlaylistBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentFixedTabsLayoutFirstBodyYoutubePlaylistBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentFixedTabsLayoutFirstBodyCustomImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentFixedTabsLayoutSecondHeadingVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentFixedTabsLayoutSecondHeadingBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyFixedTabsLayoutSecondHeadingExpertBlockExpertListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"person"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"peopleURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"skills"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyFixedTabsLayoutSecondHeadingExpertBlockLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentFixedTabsLayoutSecondHeadingExpertBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"expertList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyFixedTabsLayoutSecondHeadingExpertBlockExpertListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyFixedTabsLayoutSecondHeadingExpertBlockLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockYoutubePlaylistFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videosCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentFixedTabsLayoutSecondHeadingYoutubePlaylistBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubePlaylist"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockYoutubePlaylistFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentFixedTabsLayoutSecondHeadingCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayoutSecondHeadingFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentFixedTabsLayoutSecondHeadingVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentFixedTabsLayoutSecondHeadingBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ExpertBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentFixedTabsLayoutSecondHeadingExpertBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"YoutubePlaylistBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentFixedTabsLayoutSecondHeadingYoutubePlaylistBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentFixedTabsLayoutSecondHeadingCustomImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentFixedTabsLayoutSecondBodyVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentFixedTabsLayoutSecondBodyBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyFixedTabsLayoutSecondBodyExpertBlockExpertListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"person"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"peopleURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"skills"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyFixedTabsLayoutSecondBodyExpertBlockLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentFixedTabsLayoutSecondBodyExpertBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"expertList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyFixedTabsLayoutSecondBodyExpertBlockExpertListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyFixedTabsLayoutSecondBodyExpertBlockLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockYoutubePlaylistFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videosCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentFixedTabsLayoutSecondBodyYoutubePlaylistBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubePlaylist"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockYoutubePlaylistFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentFixedTabsLayoutSecondBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayoutSecondBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentFixedTabsLayoutSecondBodyVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentFixedTabsLayoutSecondBodyBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ExpertBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentFixedTabsLayoutSecondBodyExpertBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"YoutubePlaylistBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentFixedTabsLayoutSecondBodyYoutubePlaylistBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentFixedTabsLayoutSecondBodyCustomImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstHeading"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayoutFirstHeadingFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayoutFirstBodyFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondHeading"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayoutSecondHeadingFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayoutSecondBodyFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyGoogleMapsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"embedUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"embedWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"embedHeight"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyGridLayoutGridsBlocksLinkContentUtilityButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnIcon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentered"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeTopMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openInNewTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyGridLayoutGridsBlocksLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"UtilityButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyGridLayoutGridsBlocksLinkContentUtilityButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentGridLayoutGridsBlocksFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"image"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relatedImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"linkContent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyGridLayoutGridsBlocksLinkContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyGridLayoutGridsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"gridTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showGridTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centeredGridTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showHeaderDivider"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"offsetGridStart"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"blocks"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentGridLayoutGridsBlocksFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyGridLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"grids"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyGridLayoutGridsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyHeroActionsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"type"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyHeroImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyHeroFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"tagline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"actions"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyHeroActionsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"image"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyHeroImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyHorizontalCardCardListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyHorizontalCardButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyHorizontalCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cardList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyHorizontalCardCardListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"button"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyHorizontalCardButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyInternalCarouselItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyInternalCarouselTechnologiesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyInternalCarouselFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyInternalCarouselItemsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paragraph"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"website"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"technologies"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyInternalCarouselTechnologiesFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caseStudyUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyJoinAsPresenterFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"img"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyJoinGithubFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyJotFormEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"jotFormId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"containerClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyLatestTechBadgesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"userGroupGlobal"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"UserGroupGlobalFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyLatestTechFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"badges"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyLatestTechBadgesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentLocationBlockLocationListLocationFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"locations"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"LocationsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyLocationBlockLocationListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"location"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentLocationBlockLocationListLocationFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyLocationBlockChapelWebsiteFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"URL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyLocationBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"locationList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyLocationBlockLocationListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"chapelWebsite"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyLocationBlockChapelWebsiteFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyNewslettersTableFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headerText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyOrganizerFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImg"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"position"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyPaymentBlockPaymentsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paymentDetails"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PaymentDetailsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyPaymentBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"payments"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyPaymentBlockPaymentsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"footer"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"creditImgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altTxt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentPresenterBlockPresenterListPresenterFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"presenter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PresenterFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyPresenterBlockPresenterListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"presenter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentPresenterBlockPresenterListPresenterFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyPresenterBlockOtherEventFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyPresenterBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"presenterList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyPresenterBlockPresenterListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"otherEvent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyPresenterBlockOtherEventFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyRecurringEventFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"applyLinkRedirect"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"day"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodySectionHeaderFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headerText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyServiceCardsBigCardsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"description"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyServiceCardsSmallCardsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"isExternal"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyServiceCardsLinksFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyServiceCardsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bigCardsLabel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bigCards"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyServiceCardsBigCardsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"smallCardsLabel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"smallCards"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyServiceCardsSmallCardsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"links"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyServiceCardsLinksFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentTableLayoutRowsCellsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cellValue"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyTableLayoutRowsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cells"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentTableLayoutRowsCellsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"isHeader"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyTableLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"tableStyle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColBold"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headers"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"rows"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyTableLayoutRowsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentTestimonialsListExcludedCategoriesCategoryNameFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"testimonialCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"TestimonialCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyTestimonialsListExcludedCategoriesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"categoryName"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentTestimonialsListExcludedCategoriesCategoryNameFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyTestimonialsListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"excludedCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyTestimonialsListExcludedCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyTrainingInformationTrainingInformationItemsBodyVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyTrainingInformationTrainingInformationItemsBodyRecurringEventFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"applyLinkRedirect"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"day"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentTrainingInformationTrainingInformationItemsBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyTrainingInformationTrainingInformationItemsBodyVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"RecurringEvent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyTrainingInformationTrainingInformationItemsBodyRecurringEventFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyTrainingInformationTrainingInformationItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"body"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentTrainingInformationTrainingInformationItemsBodyFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyTrainingInformationFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"trainingInformationItems"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyTrainingInformationTrainingInformationItemsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyTrainingLearningOutcomeListItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyTrainingLearningOutcomeFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"listItems"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyTrainingLearningOutcomeListItemsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyTweetEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyUpcomingEventsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"numberOfEvents"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyUtilityButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnIcon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentered"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeTopMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openInNewTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyVerticalImageLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imageSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imageLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"message"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyInlineJotFormFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"jotFormId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"additionalClasses"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudy_bodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"AboutUs"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyAboutUsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Agenda"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyAgendaFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"AgreementForm"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyAgreementFormFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"InterestForm"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyInterestFormFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BuiltOnAzure"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyBuiltOnAzureFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Carousel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyCarouselFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Citation"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyCitationFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ClientList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyClientListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ClientLogos"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyClientLogosFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyColorBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorPalette"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyColorPaletteFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyContentCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomDownloadButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyCustomDownloadButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"DomainFromQuery"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyDomainFromQueryFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"DownloadBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyDownloadBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"DynamicColumns"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyDynamicColumnsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventBooking"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyEventBookingFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyEventLinkFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyFlagFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"FixedColumns"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyFixedColumnsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"FixedTabsLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyFixedTabsLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"GoogleMaps"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyGoogleMapsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"GridLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyGridLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Hero"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyHeroFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"HorizontalCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyHorizontalCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"InternalCarousel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyInternalCarouselFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"joinAsPresenter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyJoinAsPresenterFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"joinGithub"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyJoinGithubFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"JotFormEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyJotFormEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"LatestTech"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyLatestTechFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"LocationBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyLocationBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"NewslettersTable"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyNewslettersTableFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"organizer"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyOrganizerFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paymentBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyPaymentBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"PresenterBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyPresenterBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"RecurringEvent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyRecurringEventFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"SectionHeader"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodySectionHeaderFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ServiceCards"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyServiceCardsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TableLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyTableLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TestimonialsList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyTestimonialsListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TrainingInformation"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyTrainingInformationFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TrainingLearningOutcome"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyTrainingLearningOutcomeFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TweetEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyTweetEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"UpcomingEvents"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyUpcomingEventsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"UtilityButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyUtilityButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalImageLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyVerticalImageLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"InlineJotForm"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyInlineJotFormFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentAboutUsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showMap"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyAgendaAgendaItemListBodyVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyAgendaAgendaItemListBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyAgendaAgendaItemListBodyVerticalListItemFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentAgendaAgendaItemListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"placeholder"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"body"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyAgendaAgendaItemListBodyFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentAgendaFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"textColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"agendaItemList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentAgendaAgendaItemListFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentAgreementFormFieldsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"id"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"placeholder"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"resizeable"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentAgreementFormFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fields"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentAgreementFormFieldsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentInterestFormFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentBuiltOnAzureFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentCarouselItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openIn"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentCarouselFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentCarouselItemsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"delay"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showOnMobileDevices"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentCitationFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"author"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"article"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyClientListCategoriesCategoryFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"clientCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ClientCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentClientListCategoriesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"category"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyClientListCategoriesCategoryFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyClientListClientsContentUtilityButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnIcon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentered"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeTopMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openInNewTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyClientListClientsContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyClientListClientsContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyClientListClientsContentContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyClientListClientsContentContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyClientListClientsContentContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyClientListClientsContentContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyClientListClientsContentContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyClientListClientsContentContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyClientListClientsContentContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyClientListClientsContentContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyClientListClientsContentContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyClientListClientsContentContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyClientListClientsContentContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyClientListClientsContentContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyClientListClientsContentContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyClientListClientsContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"UtilityButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyClientListClientsContentUtilityButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyClientListClientsContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyClientListClientsContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyClientListClientsContentContentCardFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyClientListClientsCategoriesCategoryFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"clientCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ClientCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyClientListClientsCategoriesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"category"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyClientListClientsCategoriesCategoryFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentClientListClientsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"logo"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"logoUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyClientListClientsContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caseStudyUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"categories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyClientListClientsCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentClientListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"categories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentClientListCategoriesFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"clients"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentClientListClientsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentClientLogosFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentColorPaletteFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyContentContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyContentContentClientLogosFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyContentContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyContentContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyContentContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyContentContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentContentContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyContentContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ClientLogos"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyContentContentClientLogosFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyContentContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyContentContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentContentContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paddingClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"align"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentCustomDownloadButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentDomainFromQueryFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showDomain"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentDownloadBlockDownloadsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"img"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgBackground"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstLinkText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondLinkText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentDownloadBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"downloads"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentDownloadBlockDownloadsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bottomBorder"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentDynamicColumnsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyEventBookingEventListLocationFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"locations"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"LocationsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentEventBookingEventListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"city"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"date"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DatetimeFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bookingURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"location"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyEventBookingEventListLocationFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentEventBookingFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventDurationInDays"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"price"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"discountPrice"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"gstText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"discountNote"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentEventBookingEventListFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyEventLinkContentFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentEventLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyEventLinkContentFlagFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentEventLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentEventLinkContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventThumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnailAlt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyFixedColumnsFirstColBodyContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyFixedColumnsFirstColBodyContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyFixedColumnsFirstColBodyContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedColumnsFirstColBodyContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyFixedColumnsFirstColBodyContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedColumnsFirstColBodyContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyFixedColumnsFirstColBodyContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyFixedColumnsFirstColBodyContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyFixedColumnsFirstColBodyContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyFixedColumnsFirstColBodyContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyFixedColumnsFirstColBodyContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyFixedColumnsFirstColBodyContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyFixedColumnsFirstColBodyContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyFixedColumnsFirstColBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyFixedColumnsFirstColBodyEventLinkContentFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyFixedColumnsFirstColBodyEventLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyFixedColumnsFirstColBodyEventLinkContentFlagFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyFixedColumnsFirstColBodyEventLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyFixedColumnsFirstColBodyEventLinkContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventThumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnailAlt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentFixedColumnsFirstColBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyFixedColumnsFirstColBodyContentCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyFixedColumnsFirstColBodyCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyFixedColumnsFirstColBodyEventLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyFixedColumnsSecondColBodyContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyFixedColumnsSecondColBodyContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyFixedColumnsSecondColBodyContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedColumnsSecondColBodyContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyFixedColumnsSecondColBodyContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedColumnsSecondColBodyContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyFixedColumnsSecondColBodyContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyFixedColumnsSecondColBodyContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyFixedColumnsSecondColBodyContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyFixedColumnsSecondColBodyContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyFixedColumnsSecondColBodyContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyFixedColumnsSecondColBodyContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyFixedColumnsSecondColBodyContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyFixedColumnsSecondColBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyFixedColumnsSecondColBodyEventLinkContentFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyFixedColumnsSecondColBodyEventLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyFixedColumnsSecondColBodyEventLinkContentFlagFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyFixedColumnsSecondColBodyEventLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyFixedColumnsSecondColBodyEventLinkContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventThumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnailAlt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentFixedColumnsSecondColBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyFixedColumnsSecondColBodyContentCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyFixedColumnsSecondColBodyCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyFixedColumnsSecondColBodyEventLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentFixedColumnsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headerSection"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentFixedColumnsFirstColBodyFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentFixedColumnsSecondColBodyFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyFixedTabsLayoutFirstHeadingVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyFixedTabsLayoutFirstHeadingBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayoutFirstHeadingExpertBlockExpertListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"person"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"peopleURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"skills"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayoutFirstHeadingExpertBlockLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyFixedTabsLayoutFirstHeadingExpertBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"expertList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayoutFirstHeadingExpertBlockExpertListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayoutFirstHeadingExpertBlockLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockYoutubePlaylistFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videosCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubePlaylist"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockYoutubePlaylistFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyFixedTabsLayoutFirstHeadingCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentFixedTabsLayoutFirstHeadingFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyFixedTabsLayoutFirstHeadingVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyFixedTabsLayoutFirstHeadingBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ExpertBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyFixedTabsLayoutFirstHeadingExpertBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"YoutubePlaylistBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyFixedTabsLayoutFirstHeadingCustomImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyFixedTabsLayoutFirstBodyVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyFixedTabsLayoutFirstBodyBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayoutFirstBodyExpertBlockExpertListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"person"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"peopleURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"skills"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayoutFirstBodyExpertBlockLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyFixedTabsLayoutFirstBodyExpertBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"expertList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayoutFirstBodyExpertBlockExpertListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayoutFirstBodyExpertBlockLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockYoutubePlaylistFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videosCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubePlaylist"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockYoutubePlaylistFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyFixedTabsLayoutFirstBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentFixedTabsLayoutFirstBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyFixedTabsLayoutFirstBodyVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyFixedTabsLayoutFirstBodyBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ExpertBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyFixedTabsLayoutFirstBodyExpertBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"YoutubePlaylistBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyFixedTabsLayoutFirstBodyCustomImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyFixedTabsLayoutSecondHeadingVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyFixedTabsLayoutSecondHeadingBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayoutSecondHeadingExpertBlockExpertListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"person"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"peopleURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"skills"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayoutSecondHeadingExpertBlockLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyFixedTabsLayoutSecondHeadingExpertBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"expertList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayoutSecondHeadingExpertBlockExpertListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayoutSecondHeadingExpertBlockLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockYoutubePlaylistFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videosCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubePlaylist"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockYoutubePlaylistFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyFixedTabsLayoutSecondHeadingCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentFixedTabsLayoutSecondHeadingFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyFixedTabsLayoutSecondHeadingVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyFixedTabsLayoutSecondHeadingBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ExpertBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyFixedTabsLayoutSecondHeadingExpertBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"YoutubePlaylistBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyFixedTabsLayoutSecondHeadingCustomImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyFixedTabsLayoutSecondBodyVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyFixedTabsLayoutSecondBodyBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayoutSecondBodyExpertBlockExpertListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"person"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"peopleURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"skills"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayoutSecondBodyExpertBlockLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyFixedTabsLayoutSecondBodyExpertBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"expertList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayoutSecondBodyExpertBlockExpertListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayoutSecondBodyExpertBlockLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockYoutubePlaylistFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videosCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubePlaylist"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockYoutubePlaylistFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyFixedTabsLayoutSecondBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentFixedTabsLayoutSecondBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyFixedTabsLayoutSecondBodyVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyFixedTabsLayoutSecondBodyBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ExpertBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyFixedTabsLayoutSecondBodyExpertBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"YoutubePlaylistBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyFixedTabsLayoutSecondBodyCustomImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentFixedTabsLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstHeading"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentFixedTabsLayoutFirstHeadingFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentFixedTabsLayoutFirstBodyFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondHeading"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentFixedTabsLayoutSecondHeadingFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentFixedTabsLayoutSecondBodyFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentGoogleMapsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"embedUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"embedWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"embedHeight"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyGridLayoutGridsBlocksLinkContentUtilityButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnIcon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentered"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeTopMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openInNewTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyGridLayoutGridsBlocksLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"UtilityButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyGridLayoutGridsBlocksLinkContentUtilityButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyGridLayoutGridsBlocksFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"image"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relatedImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"linkContent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyGridLayoutGridsBlocksLinkContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentGridLayoutGridsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"gridTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showGridTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centeredGridTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showHeaderDivider"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"offsetGridStart"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"blocks"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyGridLayoutGridsBlocksFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentGridLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"grids"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentGridLayoutGridsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentHeroActionsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"type"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentHeroImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentHeroFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"tagline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"actions"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentHeroActionsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"image"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentHeroImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentHorizontalCardCardListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentHorizontalCardButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentHorizontalCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cardList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentHorizontalCardCardListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"button"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentHorizontalCardButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentInternalCarouselItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentInternalCarouselTechnologiesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentInternalCarouselFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentInternalCarouselItemsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paragraph"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"website"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"technologies"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentInternalCarouselTechnologiesFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caseStudyUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentJoinAsPresenterFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"img"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentJoinGithubFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentJotFormEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"jotFormId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"containerClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentLatestTechBadgesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"userGroupGlobal"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"UserGroupGlobalFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentLatestTechFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"badges"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentLatestTechBadgesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyLocationBlockLocationListLocationFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"locations"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"LocationsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentLocationBlockLocationListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"location"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyLocationBlockLocationListLocationFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentLocationBlockChapelWebsiteFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"URL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentLocationBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"locationList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentLocationBlockLocationListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"chapelWebsite"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentLocationBlockChapelWebsiteFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentNewslettersTableFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headerText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentOrganizerFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImg"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"position"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentPaymentBlockPaymentsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paymentDetails"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PaymentDetailsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentPaymentBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"payments"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentPaymentBlockPaymentsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"footer"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"creditImgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altTxt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyPresenterBlockPresenterListPresenterFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"presenter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PresenterFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentPresenterBlockPresenterListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"presenter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyPresenterBlockPresenterListPresenterFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentPresenterBlockOtherEventFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentPresenterBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"presenterList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentPresenterBlockPresenterListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"otherEvent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentPresenterBlockOtherEventFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentRecurringEventFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"applyLinkRedirect"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"day"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentSectionHeaderFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headerText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentServiceCardsBigCardsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"description"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentServiceCardsSmallCardsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"isExternal"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentServiceCardsLinksFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentServiceCardsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bigCardsLabel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bigCards"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentServiceCardsBigCardsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"smallCardsLabel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"smallCards"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentServiceCardsSmallCardsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"links"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentServiceCardsLinksFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyTableLayoutRowsCellsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cellValue"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentTableLayoutRowsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cells"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyTableLayoutRowsCellsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"isHeader"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentTableLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"tableStyle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColBold"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headers"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"rows"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentTableLayoutRowsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyTestimonialsListExcludedCategoriesCategoryNameFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"testimonialCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"TestimonialCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentTestimonialsListExcludedCategoriesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"categoryName"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyTestimonialsListExcludedCategoriesCategoryNameFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentTestimonialsListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"excludedCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentTestimonialsListExcludedCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyTrainingInformationTrainingInformationItemsBodyVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyTrainingInformationTrainingInformationItemsBodyRecurringEventFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"applyLinkRedirect"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"day"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyTrainingInformationTrainingInformationItemsBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyTrainingInformationTrainingInformationItemsBodyVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"RecurringEvent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyTrainingInformationTrainingInformationItemsBodyRecurringEventFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentTrainingInformationTrainingInformationItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"body"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyTrainingInformationTrainingInformationItemsBodyFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentTrainingInformationFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"trainingInformationItems"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentTrainingInformationTrainingInformationItemsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentTrainingLearningOutcomeListItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentTrainingLearningOutcomeFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"listItems"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentTrainingLearningOutcomeListItemsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentTweetEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentUpcomingEventsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"numberOfEvents"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentUtilityButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnIcon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentered"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeTopMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openInNewTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentVerticalImageLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imageSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imageLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"message"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentInlineJotFormFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"jotFormId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"additionalClasses"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"AboutUs"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentAboutUsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Agenda"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentAgendaFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"AgreementForm"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentAgreementFormFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"InterestForm"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentInterestFormFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BuiltOnAzure"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentBuiltOnAzureFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Carousel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentCarouselFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Citation"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentCitationFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ClientList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentClientListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ClientLogos"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentClientLogosFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentColorBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorPalette"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentColorPaletteFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentContentCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomDownloadButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentCustomDownloadButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"DomainFromQuery"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentDomainFromQueryFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"DownloadBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentDownloadBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"DynamicColumns"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentDynamicColumnsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventBooking"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentEventBookingFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentEventLinkFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentFlagFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"FixedColumns"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentFixedColumnsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"FixedTabsLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentFixedTabsLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"GoogleMaps"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentGoogleMapsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"GridLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentGridLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Hero"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentHeroFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"HorizontalCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentHorizontalCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"InternalCarousel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentInternalCarouselFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"joinAsPresenter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentJoinAsPresenterFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"joinGithub"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentJoinGithubFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"JotFormEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentJotFormEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"LatestTech"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentLatestTechFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"LocationBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentLocationBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"NewslettersTable"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentNewslettersTableFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"organizer"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentOrganizerFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paymentBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentPaymentBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"PresenterBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentPresenterBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"RecurringEvent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentRecurringEventFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"SectionHeader"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentSectionHeaderFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ServiceCards"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentServiceCardsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TableLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentTableLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TestimonialsList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentTestimonialsListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TrainingInformation"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentTrainingInformationFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TrainingLearningOutcome"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentTrainingLearningOutcomeFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TweetEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentTweetEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"UpcomingEvents"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentUpcomingEventsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"UtilityButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentUtilityButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalImageLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentVerticalImageLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"InlineJotForm"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentInlineJotFormFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"CaseStudyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"tip"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"seo"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudySeoFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"heading"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subHeading"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"_body"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy_bodyFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyContentFilter"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"CaseStudyConnectionEdges"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"cursor"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"node"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudy"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[{"kind":"NamedType","name":{"kind":"Name","value":"Connection"}}],"directives":[],"name":{"kind":"Name","value":"CaseStudyConnection"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"pageInfo"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageInfo"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"totalCount"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"edges"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"CaseStudyConnectionEdges"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingIndexSeoImages"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"url"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"width"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"height"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"alt"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingIndexSeo"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"description"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"canonical"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"showBreadcrumb"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"images"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingIndexSeoImages"}}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"ConsultingIndexSidebarTag"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingTag"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingIndexSidebar"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"tag"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingIndexSidebarTag"}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"ConsultingIndexCategoriesCategory"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingCategory"}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"ConsultingIndexCategoriesPagesPage"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"Consulting"}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"ConsultingIndexCategoriesPagesTagsTag"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingTag"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingIndexCategoriesPagesTags"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"tag"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingIndexCategoriesPagesTagsTag"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingIndexCategoriesPages"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"description"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"logo"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"page"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingIndexCategoriesPagesPage"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"externalUrl"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"tags"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingIndexCategoriesPagesTags"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingIndexCategories"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"category"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingIndexCategoriesCategory"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"pages"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingIndexCategoriesPages"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[{"kind":"NamedType","name":{"kind":"Name","value":"Node"}},{"kind":"NamedType","name":{"kind":"Name","value":"Document"}}],"directives":[],"name":{"kind":"Name","value":"ConsultingIndex"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"seo"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingIndexSeo"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"sidebar"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingIndexSidebar"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"categories"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingIndexCategories"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"id"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ID"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_sys"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"SystemInfo"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_values"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingIndexSeoImagesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingIndexSeoFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"description"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"canonical"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showBreadcrumb"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"images"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingIndexSeoImagesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingIndexSidebarTagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"consultingTag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingTagFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingIndexSidebarFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"tag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingIndexSidebarTagFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingIndexCategoriesCategoryFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"consultingCategory"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingCategoryFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingIndexCategoriesPagesPageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"consulting"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingIndexCategoriesPagesTagsTagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"consultingTag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingTagFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingIndexCategoriesPagesTagsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"tag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingIndexCategoriesPagesTagsTagFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingIndexCategoriesPagesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"description"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"logo"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"page"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingIndexCategoriesPagesPageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"externalUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"tags"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingIndexCategoriesPagesTagsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingIndexCategoriesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"category"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingIndexCategoriesCategoryFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"pages"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingIndexCategoriesPagesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingIndexFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"seo"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingIndexSeoFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sidebar"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingIndexSidebarFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"categories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingIndexCategoriesFilter"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingIndexConnectionEdges"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"cursor"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"node"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingIndex"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[{"kind":"NamedType","name":{"kind":"Name","value":"Connection"}}],"directives":[],"name":{"kind":"Name","value":"ConsultingIndexConnection"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"pageInfo"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageInfo"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"totalCount"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"edges"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingIndexConnectionEdges"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingSeoImages"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"url"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"width"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"height"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"alt"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingSeo"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"description"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"canonical"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"showBreadcrumb"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"images"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingSeoImages"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingTestimonials"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"tagline"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingBooking"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"subTitle"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"buttonText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"videoBackground"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingSolution"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"project"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingCallToAction"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"subTitle"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"showCallToAction"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"buttonText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"animated"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"ConsultingTestimonialCategoriesTestimonialCategory"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"TestimonialCategories"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingTestimonialCategories"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"testimonialCategory"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingTestimonialCategoriesTestimonialCategory"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingAfterBodyAboutUs"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"backgroundColor"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"showMap"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingAfterBodyAgendaAgendaItemList"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"placeholder"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"body"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingAfterBodyAgenda"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"header"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"textColor"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"agendaItemList"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyAgendaAgendaItemList"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingAfterBodyAgreementFormFields"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"id"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"placeholder"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"resizeable"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingAfterBodyAgreementForm"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"backgroundColor"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"fields"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyAgreementFormFields"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingAfterBodyInterestForm"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"buttonText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingAfterBodyBookingButton"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"buttonText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"animated"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingAfterBodyBuiltOnAzure"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"backgroundColor"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingAfterBodyCarouselItems"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"openIn"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"imgSrc"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingAfterBodyCarousel"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"items"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyCarouselItems"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"backgroundColor"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"delay"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"showOnMobileDevices"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingAfterBodyCitation"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"author"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"article"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyClientListCategoriesCategory"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"ClientCategories"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingAfterBodyClientListCategories"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"category"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyClientListCategoriesCategory"}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyClientListClientsCategoriesCategory"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"ClientCategories"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProduction_bodyClientListClientsCategories"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"category"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyClientListClientsCategoriesCategory"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingAfterBodyClientListClients"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"name"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"logo"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"logoUrl"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"content"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"caseStudyUrl"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"categories"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyClientListClientsCategories"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingAfterBodyClientList"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"categories"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyClientListCategories"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"clients"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyClientListClients"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingAfterBodyClientLogos"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"altText"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingAfterBodyColorBlockColorRow"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"firstColor"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"fText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"secondColor"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"sText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"caption"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingAfterBodyColorBlock"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"subTitle"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"colorRow"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyColorBlockColorRow"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingAfterBodyColorPalette"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"name"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingAfterBodyContent"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"content"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"paddingClass"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"size"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"align"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"backgroundColor"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingAfterBodyContentCard"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"prose"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"centerAlignedText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"content"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingAfterBodyCustomDownloadButton"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"btnText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"btnLink"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingAfterBodyCustomImage"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"src"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"altText"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"alignment"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"height"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"width"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"customClass"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"caption"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"captionColor"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"sizes"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingAfterBodyDomainFromQuery"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"showDomain"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingAfterBodyDownloadBlockDownloads"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"header"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"img"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"imgBackground"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"firstLinkText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"firstLink"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"secondLinkText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"secondLink"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingAfterBodyDownloadBlock"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"downloads"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyDownloadBlockDownloads"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"bottomBorder"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingAfterBodyDynamicColumns"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"colBody"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"colCount"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyEventBookingEventListLocation"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"Locations"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingAfterBodyEventBookingEventList"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"city"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"date"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"bookingURL"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"location"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyEventBookingEventListLocation"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingAfterBodyEventBooking"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"eventDurationInDays"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"price"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"discountPrice"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"gstText"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"discountNote"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"eventList"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyEventBookingEventList"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingAfterBodyEventLink"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"content"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"eventThumbnail"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"thumbnailAlt"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingAfterBodyFlag"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"country"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingAfterBodyFixedColumns"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"headerSection"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"firstColBody"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"secondColBody"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayout"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"firstTab"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"firstHeading"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"firstBody"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"secondTab"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"secondHeading"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"secondBody"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingAfterBodyGoogleMaps"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"embedUrl"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"embedWidth"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"embedHeight"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProduction_bodyGridLayoutGridsBlocks"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"showTitle"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"image"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"relatedImage"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"linkContent"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingAfterBodyGridLayoutGrids"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"gridTitle"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"showGridTitle"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"centeredGridTitle"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"showHeaderDivider"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"offsetGridStart"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"blocks"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyGridLayoutGridsBlocks"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingAfterBodyGridLayout"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"grids"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyGridLayoutGrids"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingAfterBodyHeroActions"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"type"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"icon"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingAfterBodyHeroImage"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"src"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"alt"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingAfterBodyHero"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"tagline"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"headline"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"text"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"actions"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyHeroActions"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"image"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyHeroImage"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"color"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingAfterBodyHorizontalCardCardList"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"content"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"thumbnail"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingAfterBodyHorizontalCardButton"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"text"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingAfterBodyHorizontalCard"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"cardList"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyHorizontalCardCardList"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"button"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyHorizontalCardButton"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingAfterBodyInternalCarouselItems"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"imgSrc"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingAfterBodyInternalCarouselTechnologies"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"name"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingAfterBodyInternalCarousel"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"items"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyInternalCarouselItems"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"header"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"paragraph"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"website"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"technologies"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyInternalCarouselTechnologies"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"caseStudyUrl"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"videoUrl"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingAfterBodyJoinAsPresenter"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"img"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingAfterBodyJoinGithub"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingAfterBodyJotFormEmbed"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"jotFormId"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"buttonText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"containerClass"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"buttonClass"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"animated"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyLatestTechBadges"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"UserGroupGlobal"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingAfterBodyLatestTech"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"badges"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyLatestTechBadges"}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyLocationBlockLocationListLocation"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"Locations"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingAfterBodyLocationBlockLocationList"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"location"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyLocationBlockLocationListLocation"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingAfterBodyLocationBlockChapelWebsite"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"URL"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingAfterBodyLocationBlock"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"locationList"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyLocationBlockLocationList"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"chapelWebsite"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyLocationBlockChapelWebsite"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingAfterBodyNewslettersTable"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"headerText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingAfterBodyOrganizer"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"profileImg"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"profileLink"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"name"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"position"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"content"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyPaymentBlockPayments"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"PaymentDetails"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingAfterBodyPaymentBlock"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"subTitle"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"payments"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyPaymentBlockPayments"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"footer"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"creditImgSrc"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"altTxt"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyPresenterBlockPresenterListPresenter"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"Presenter"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingAfterBodyPresenterBlockPresenterList"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"presenter"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyPresenterBlockPresenterListPresenter"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingAfterBodyPresenterBlockOtherEvent"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"eventURL"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingAfterBodyPresenterBlock"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"header"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"presenterList"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyPresenterBlockPresenterList"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"otherEvent"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyPresenterBlockOtherEvent"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingAfterBodyRecurringEvent"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"applyLinkRedirect"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"day"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingAfterBodySectionHeader"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"headerText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingAfterBodyServiceCardsBigCards"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"description"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"color"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"imgSrc"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingAfterBodyServiceCardsSmallCards"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"color"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"imgSrc"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"isExternal"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingAfterBodyServiceCardsLinks"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingAfterBodyServiceCards"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"bigCardsLabel"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"bigCards"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyServiceCardsBigCards"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"smallCardsLabel"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"smallCards"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyServiceCardsSmallCards"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"links"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyServiceCardsLinks"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"backgroundColor"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProduction_bodyTableLayoutRowsCells"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"cellValue"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingAfterBodyTableLayoutRows"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"cells"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyTableLayoutRowsCells"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"isHeader"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingAfterBodyTableLayout"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"tableStyle"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"firstColBold"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"headers"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"rows"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyTableLayoutRows"}}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyTestimonialsListExcludedCategoriesCategoryName"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"TestimonialCategories"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingAfterBodyTestimonialsListExcludedCategories"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"categoryName"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyTestimonialsListExcludedCategoriesCategoryName"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingAfterBodyTestimonialsList"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"excludedCategories"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyTestimonialsListExcludedCategories"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingAfterBodyTrainingInformationTrainingInformationItems"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"header"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"body"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingAfterBodyTrainingInformation"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"trainingInformationItems"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyTrainingInformationTrainingInformationItems"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingAfterBodyTrainingLearningOutcomeListItems"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"content"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"icon"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingAfterBodyTrainingLearningOutcome"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"header"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"listItems"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyTrainingLearningOutcomeListItems"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingAfterBodyTweetEmbed"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"url"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingAfterBodyUpcomingEvents"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"numberOfEvents"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingAfterBodyUtilityButton"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"buttonText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"size"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"btnIcon"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"animated"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"uncentered"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"removeTopMargin"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"openInNewTab"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingAfterBodyVerticalImageLayout"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"imageSrc"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"altText"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"imageLink"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"height"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"width"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"message"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"sizes"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingAfterBodyVerticalListItem"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"content"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"index"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"icon"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"iconScale"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"afterBody"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingAfterBodyVideoEmbed"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"url"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"videoWidth"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"removeMargin"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"uncentre"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"overflow"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"caption"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"duration"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingAfterBodyInlineJotForm"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"jotFormId"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"additionalClasses"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBody"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyAboutUs"}},{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyAgenda"}},{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyAgreementForm"}},{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyInterestForm"}},{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyBookingButton"}},{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyBuiltOnAzure"}},{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyCarousel"}},{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyCitation"}},{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyClientList"}},{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyClientLogos"}},{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyColorBlock"}},{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyColorPalette"}},{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyContent"}},{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyContentCard"}},{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyCustomDownloadButton"}},{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyCustomImage"}},{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyDomainFromQuery"}},{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyDownloadBlock"}},{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyDynamicColumns"}},{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyEventBooking"}},{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyEventLink"}},{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyFlag"}},{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyFixedColumns"}},{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayout"}},{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyGoogleMaps"}},{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyGridLayout"}},{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyHero"}},{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyHorizontalCard"}},{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyInternalCarousel"}},{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyJoinAsPresenter"}},{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyJoinGithub"}},{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyJotFormEmbed"}},{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyLatestTech"}},{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyLocationBlock"}},{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyNewslettersTable"}},{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyOrganizer"}},{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyPaymentBlock"}},{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyPresenterBlock"}},{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyRecurringEvent"}},{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodySectionHeader"}},{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyServiceCards"}},{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyTableLayout"}},{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyTestimonialsList"}},{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyTrainingInformation"}},{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyTrainingLearningOutcome"}},{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyTweetEmbed"}},{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyUpcomingEvents"}},{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyUtilityButton"}},{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyVerticalImageLayout"}},{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyVerticalListItem"}},{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyVideoEmbed"}},{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyInlineJotForm"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingBenefitsBenefitList"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"image"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"description"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"linkName"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"linkURL"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingBenefitsRule"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"name"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"url"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingBenefits"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"benefitList"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingBenefitsBenefitList"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"rule"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingBenefitsRule"}}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"ConsultingTechnologiesTechnologyCardsTechnologyCard"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"Technologies"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingTechnologiesTechnologyCards"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"technologyCard"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingTechnologiesTechnologyCardsTechnologyCard"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingTechnologies"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"header"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"subheading"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"technologyCards"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingTechnologiesTechnologyCards"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingMediasMediaCards"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"type"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"content"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingMedias"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"header"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"mediaCards"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingMediasMediaCards"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[{"kind":"NamedType","name":{"kind":"Name","value":"Node"}},{"kind":"NamedType","name":{"kind":"Name","value":"Document"}}],"directives":[],"name":{"kind":"Name","value":"Consulting"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"tip"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"seo"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingSeo"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"testimonials"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingTestimonials"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"booking"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingBooking"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"solution"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingSolution"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"callToAction"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingCallToAction"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"testimonialCategories"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingTestimonialCategories"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_body"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"afterBody"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBody"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"benefits"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingBenefits"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"technologies"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingTechnologies"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"medias"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingMedias"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"id"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ID"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_sys"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"SystemInfo"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_values"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingSeoImagesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingSeoFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"description"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"canonical"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showBreadcrumb"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"images"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingSeoImagesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingTestimonialsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"tagline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingBookingFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoBackground"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingSolutionFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"project"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingCallToActionFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showCallToAction"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingTestimonialCategoriesTestimonialCategoryFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"testimonialCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"TestimonialCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingTestimonialCategoriesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"testimonialCategory"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingTestimonialCategoriesTestimonialCategoryFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyAboutUsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showMap"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyAgendaAgendaItemListBodyVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyAgendaAgendaItemListBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyAgendaAgendaItemListBodyVerticalListItemFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyAgendaAgendaItemListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"placeholder"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"body"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyAgendaAgendaItemListBodyFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyAgendaFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"textColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"agendaItemList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyAgendaAgendaItemListFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyAgreementFormFieldsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"id"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"placeholder"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"resizeable"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyAgreementFormFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fields"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyAgreementFormFieldsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyInterestFormFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyBuiltOnAzureFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyCarouselItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openIn"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyCarouselFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyCarouselItemsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"delay"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showOnMobileDevices"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyCitationFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"author"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"article"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyClientListCategoriesCategoryFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"clientCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ClientCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyClientListCategoriesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"category"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyClientListCategoriesCategoryFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyClientListClientsContentUtilityButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnIcon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentered"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeTopMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openInNewTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyClientListClientsContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyClientListClientsContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyClientListClientsContentContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyClientListClientsContentContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyClientListClientsContentContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyClientListClientsContentContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyClientListClientsContentContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyClientListClientsContentContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyClientListClientsContentContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyClientListClientsContentContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyClientListClientsContentContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyClientListClientsContentContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyClientListClientsContentContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyClientListClientsContentContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyClientListClientsContentContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyClientListClientsContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"UtilityButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyClientListClientsContentUtilityButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyClientListClientsContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyClientListClientsContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyClientListClientsContentContentCardFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyClientListClientsCategoriesCategoryFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"clientCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ClientCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyClientListClientsCategoriesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"category"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyClientListClientsCategoriesCategoryFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyClientListClientsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"logo"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"logoUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyClientListClientsContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caseStudyUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"categories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyClientListClientsCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyClientListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"categories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyClientListCategoriesFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"clients"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyClientListClientsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyClientLogosFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyColorPaletteFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyContentContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyContentContentClientLogosFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyContentContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyContentContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyContentContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyContentContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyContentContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyContentContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ClientLogos"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyContentContentClientLogosFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyContentContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyContentContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyContentContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paddingClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"align"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyCustomDownloadButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyDomainFromQueryFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showDomain"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyDownloadBlockDownloadsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"img"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgBackground"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstLinkText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondLinkText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyDownloadBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"downloads"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyDownloadBlockDownloadsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bottomBorder"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyDynamicColumnsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyEventBookingEventListLocationFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"locations"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"LocationsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyEventBookingEventListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"city"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"date"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DatetimeFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bookingURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"location"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyEventBookingEventListLocationFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyEventBookingFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventDurationInDays"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"price"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"discountPrice"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"gstText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"discountNote"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyEventBookingEventListFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyEventLinkContentFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyEventLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyEventLinkContentFlagFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyEventLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyEventLinkContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventThumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnailAlt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedColumnsFirstColBodyContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedColumnsFirstColBodyContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedColumnsFirstColBodyContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedColumnsFirstColBodyContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedColumnsFirstColBodyContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedColumnsFirstColBodyContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyFixedColumnsFirstColBodyContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedColumnsFirstColBodyContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedColumnsFirstColBodyContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedColumnsFirstColBodyContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedColumnsFirstColBodyContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyFixedColumnsFirstColBodyContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyFixedColumnsFirstColBodyContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyFixedColumnsFirstColBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedColumnsFirstColBodyEventLinkContentFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyFixedColumnsFirstColBodyEventLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedColumnsFirstColBodyEventLinkContentFlagFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyFixedColumnsFirstColBodyEventLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyFixedColumnsFirstColBodyEventLinkContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventThumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnailAlt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyFixedColumnsFirstColBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyFixedColumnsFirstColBodyContentCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyFixedColumnsFirstColBodyCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyFixedColumnsFirstColBodyEventLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedColumnsSecondColBodyContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedColumnsSecondColBodyContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedColumnsSecondColBodyContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedColumnsSecondColBodyContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedColumnsSecondColBodyContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedColumnsSecondColBodyContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyFixedColumnsSecondColBodyContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedColumnsSecondColBodyContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedColumnsSecondColBodyContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedColumnsSecondColBodyContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedColumnsSecondColBodyContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyFixedColumnsSecondColBodyContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyFixedColumnsSecondColBodyContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyFixedColumnsSecondColBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedColumnsSecondColBodyEventLinkContentFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyFixedColumnsSecondColBodyEventLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedColumnsSecondColBodyEventLinkContentFlagFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyFixedColumnsSecondColBodyEventLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyFixedColumnsSecondColBodyEventLinkContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventThumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnailAlt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyFixedColumnsSecondColBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyFixedColumnsSecondColBodyContentCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyFixedColumnsSecondColBodyCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyFixedColumnsSecondColBodyEventLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyFixedColumnsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headerSection"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyFixedColumnsFirstColBodyFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyFixedColumnsSecondColBodyFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayoutFirstHeadingVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayoutFirstHeadingBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyFixedTabsLayoutFirstHeadingExpertBlockExpertListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"person"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"peopleURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"skills"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyFixedTabsLayoutFirstHeadingExpertBlockLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayoutFirstHeadingExpertBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"expertList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyFixedTabsLayoutFirstHeadingExpertBlockExpertListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyFixedTabsLayoutFirstHeadingExpertBlockLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockYoutubePlaylistFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videosCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubePlaylist"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockYoutubePlaylistFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayoutFirstHeadingCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyFixedTabsLayoutFirstHeadingFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayoutFirstHeadingVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayoutFirstHeadingBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ExpertBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayoutFirstHeadingExpertBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"YoutubePlaylistBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayoutFirstHeadingCustomImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayoutFirstBodyVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayoutFirstBodyBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyFixedTabsLayoutFirstBodyExpertBlockExpertListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"person"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"peopleURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"skills"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyFixedTabsLayoutFirstBodyExpertBlockLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayoutFirstBodyExpertBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"expertList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyFixedTabsLayoutFirstBodyExpertBlockExpertListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyFixedTabsLayoutFirstBodyExpertBlockLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockYoutubePlaylistFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videosCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubePlaylist"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockYoutubePlaylistFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayoutFirstBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyFixedTabsLayoutFirstBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayoutFirstBodyVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayoutFirstBodyBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ExpertBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayoutFirstBodyExpertBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"YoutubePlaylistBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayoutFirstBodyCustomImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayoutSecondHeadingVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayoutSecondHeadingBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyFixedTabsLayoutSecondHeadingExpertBlockExpertListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"person"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"peopleURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"skills"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyFixedTabsLayoutSecondHeadingExpertBlockLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayoutSecondHeadingExpertBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"expertList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyFixedTabsLayoutSecondHeadingExpertBlockExpertListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyFixedTabsLayoutSecondHeadingExpertBlockLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockYoutubePlaylistFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videosCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubePlaylist"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockYoutubePlaylistFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayoutSecondHeadingCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyFixedTabsLayoutSecondHeadingFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayoutSecondHeadingVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayoutSecondHeadingBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ExpertBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayoutSecondHeadingExpertBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"YoutubePlaylistBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayoutSecondHeadingCustomImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayoutSecondBodyVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayoutSecondBodyBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyFixedTabsLayoutSecondBodyExpertBlockExpertListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"person"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"peopleURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"skills"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyFixedTabsLayoutSecondBodyExpertBlockLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayoutSecondBodyExpertBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"expertList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyFixedTabsLayoutSecondBodyExpertBlockExpertListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyFixedTabsLayoutSecondBodyExpertBlockLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockYoutubePlaylistFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videosCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubePlaylist"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockYoutubePlaylistFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayoutSecondBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyFixedTabsLayoutSecondBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayoutSecondBodyVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayoutSecondBodyBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ExpertBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayoutSecondBodyExpertBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"YoutubePlaylistBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayoutSecondBodyCustomImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyFixedTabsLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstHeading"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyFixedTabsLayoutFirstHeadingFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyFixedTabsLayoutFirstBodyFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondHeading"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyFixedTabsLayoutSecondHeadingFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyFixedTabsLayoutSecondBodyFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyGoogleMapsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"embedUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"embedWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"embedHeight"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyGridLayoutGridsBlocksLinkContentUtilityButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnIcon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentered"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeTopMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openInNewTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyGridLayoutGridsBlocksLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"UtilityButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyGridLayoutGridsBlocksLinkContentUtilityButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyGridLayoutGridsBlocksFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"image"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relatedImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"linkContent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyGridLayoutGridsBlocksLinkContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyGridLayoutGridsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"gridTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showGridTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centeredGridTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showHeaderDivider"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"offsetGridStart"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"blocks"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyGridLayoutGridsBlocksFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyGridLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"grids"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyGridLayoutGridsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyHeroActionsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"type"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyHeroImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyHeroFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"tagline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"actions"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyHeroActionsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"image"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyHeroImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyHorizontalCardCardListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyHorizontalCardButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyHorizontalCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cardList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyHorizontalCardCardListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"button"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyHorizontalCardButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyInternalCarouselItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyInternalCarouselTechnologiesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyInternalCarouselFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyInternalCarouselItemsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paragraph"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"website"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"technologies"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyInternalCarouselTechnologiesFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caseStudyUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyJoinAsPresenterFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"img"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyJoinGithubFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyJotFormEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"jotFormId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"containerClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyLatestTechBadgesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"userGroupGlobal"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"UserGroupGlobalFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyLatestTechFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"badges"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyLatestTechBadgesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyLocationBlockLocationListLocationFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"locations"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"LocationsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyLocationBlockLocationListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"location"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyLocationBlockLocationListLocationFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyLocationBlockChapelWebsiteFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"URL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyLocationBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"locationList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyLocationBlockLocationListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"chapelWebsite"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyLocationBlockChapelWebsiteFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyNewslettersTableFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headerText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyOrganizerFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImg"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"position"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyPaymentBlockPaymentsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paymentDetails"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PaymentDetailsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyPaymentBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"payments"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyPaymentBlockPaymentsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"footer"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"creditImgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altTxt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyPresenterBlockPresenterListPresenterFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"presenter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PresenterFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyPresenterBlockPresenterListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"presenter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyPresenterBlockPresenterListPresenterFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyPresenterBlockOtherEventFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyPresenterBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"presenterList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyPresenterBlockPresenterListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"otherEvent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyPresenterBlockOtherEventFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyRecurringEventFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"applyLinkRedirect"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"day"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodySectionHeaderFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headerText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyServiceCardsBigCardsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"description"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyServiceCardsSmallCardsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"isExternal"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyServiceCardsLinksFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyServiceCardsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bigCardsLabel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bigCards"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyServiceCardsBigCardsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"smallCardsLabel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"smallCards"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyServiceCardsSmallCardsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"links"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyServiceCardsLinksFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyTableLayoutRowsCellsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cellValue"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyTableLayoutRowsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cells"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyTableLayoutRowsCellsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"isHeader"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyTableLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"tableStyle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColBold"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headers"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"rows"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyTableLayoutRowsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyTestimonialsListExcludedCategoriesCategoryNameFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"testimonialCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"TestimonialCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyTestimonialsListExcludedCategoriesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"categoryName"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyTestimonialsListExcludedCategoriesCategoryNameFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyTestimonialsListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"excludedCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyTestimonialsListExcludedCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyTrainingInformationTrainingInformationItemsBodyVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyTrainingInformationTrainingInformationItemsBodyRecurringEventFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"applyLinkRedirect"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"day"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyTrainingInformationTrainingInformationItemsBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyTrainingInformationTrainingInformationItemsBodyVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"RecurringEvent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyTrainingInformationTrainingInformationItemsBodyRecurringEventFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyTrainingInformationTrainingInformationItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"body"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyTrainingInformationTrainingInformationItemsBodyFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyTrainingInformationFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"trainingInformationItems"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyTrainingInformationTrainingInformationItemsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyTrainingLearningOutcomeListItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyTrainingLearningOutcomeFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"listItems"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyTrainingLearningOutcomeListItemsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyTweetEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyUpcomingEventsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"numberOfEvents"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyUtilityButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnIcon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentered"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeTopMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openInNewTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyVerticalImageLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imageSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imageLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"message"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyInlineJotFormFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"jotFormId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"additionalClasses"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Consulting_bodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"AboutUs"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyAboutUsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Agenda"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyAgendaFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"AgreementForm"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyAgreementFormFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"InterestForm"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyInterestFormFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BuiltOnAzure"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyBuiltOnAzureFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Carousel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyCarouselFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Citation"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyCitationFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ClientList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyClientListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ClientLogos"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyClientLogosFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyColorBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorPalette"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyColorPaletteFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyContentCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomDownloadButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyCustomDownloadButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"DomainFromQuery"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyDomainFromQueryFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"DownloadBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyDownloadBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"DynamicColumns"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyDynamicColumnsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventBooking"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyEventBookingFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyEventLinkFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyFlagFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"FixedColumns"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyFixedColumnsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"FixedTabsLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyFixedTabsLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"GoogleMaps"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyGoogleMapsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"GridLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyGridLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Hero"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyHeroFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"HorizontalCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyHorizontalCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"InternalCarousel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyInternalCarouselFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"joinAsPresenter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyJoinAsPresenterFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"joinGithub"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyJoinGithubFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"JotFormEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyJotFormEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"LatestTech"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyLatestTechFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"LocationBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyLocationBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"NewslettersTable"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyNewslettersTableFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"organizer"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyOrganizerFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paymentBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyPaymentBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"PresenterBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyPresenterBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"RecurringEvent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyRecurringEventFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"SectionHeader"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodySectionHeaderFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ServiceCards"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyServiceCardsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TableLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyTableLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TestimonialsList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyTestimonialsListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TrainingInformation"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyTrainingInformationFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TrainingLearningOutcome"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyTrainingLearningOutcomeFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TweetEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyTweetEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"UpcomingEvents"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyUpcomingEventsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"UtilityButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyUtilityButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalImageLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyVerticalImageLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"InlineJotForm"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyInlineJotFormFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyAboutUsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showMap"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyAgendaAgendaItemListBodyVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyAgendaAgendaItemListBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyAgendaAgendaItemListBodyVerticalListItemFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyAgendaAgendaItemListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"placeholder"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"body"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyAgendaAgendaItemListBodyFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyAgendaFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"textColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"agendaItemList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyAgendaAgendaItemListFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyAgreementFormFieldsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"id"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"placeholder"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"resizeable"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyAgreementFormFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fields"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyAgreementFormFieldsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyInterestFormFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyBuiltOnAzureFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyCarouselItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openIn"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyCarouselFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyCarouselItemsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"delay"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showOnMobileDevices"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyCitationFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"author"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"article"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyClientListCategoriesCategoryFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"clientCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ClientCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyClientListCategoriesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"category"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyClientListCategoriesCategoryFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyClientListClientsContentUtilityButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnIcon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentered"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeTopMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openInNewTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyClientListClientsContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyClientListClientsContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyClientListClientsContentContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyClientListClientsContentContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyClientListClientsContentContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyClientListClientsContentContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyClientListClientsContentContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyClientListClientsContentContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyClientListClientsContentContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyClientListClientsContentContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyClientListClientsContentContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyClientListClientsContentContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyClientListClientsContentContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyClientListClientsContentContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyClientListClientsContentContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyClientListClientsContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"UtilityButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyClientListClientsContentUtilityButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyClientListClientsContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyClientListClientsContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyClientListClientsContentContentCardFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyClientListClientsCategoriesCategoryFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"clientCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ClientCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyClientListClientsCategoriesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"category"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyClientListClientsCategoriesCategoryFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyClientListClientsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"logo"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"logoUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyClientListClientsContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caseStudyUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"categories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyClientListClientsCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyClientListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"categories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyClientListCategoriesFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"clients"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyClientListClientsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyClientLogosFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyColorPaletteFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyContentContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyContentContentClientLogosFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyContentContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyContentContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyContentContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyContentContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyContentContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyContentContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ClientLogos"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyContentContentClientLogosFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyContentContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyContentContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyContentContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paddingClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"align"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyCustomDownloadButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyDomainFromQueryFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showDomain"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyDownloadBlockDownloadsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"img"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgBackground"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstLinkText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondLinkText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyDownloadBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"downloads"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyDownloadBlockDownloadsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bottomBorder"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyDynamicColumnsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyEventBookingEventListLocationFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"locations"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"LocationsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyEventBookingEventListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"city"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"date"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DatetimeFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bookingURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"location"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyEventBookingEventListLocationFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyEventBookingFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventDurationInDays"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"price"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"discountPrice"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"gstText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"discountNote"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyEventBookingEventListFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyEventLinkContentFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyEventLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyEventLinkContentFlagFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyEventLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyEventLinkContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventThumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnailAlt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedColumnsFirstColBodyContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedColumnsFirstColBodyContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedColumnsFirstColBodyContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyFixedColumnsFirstColBodyContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedColumnsFirstColBodyContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyFixedColumnsFirstColBodyContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedColumnsFirstColBodyContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedColumnsFirstColBodyContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedColumnsFirstColBodyContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedColumnsFirstColBodyContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedColumnsFirstColBodyContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyFixedColumnsFirstColBodyContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedColumnsFirstColBodyContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyFixedColumnsFirstColBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedColumnsFirstColBodyEventLinkContentFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedColumnsFirstColBodyEventLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedColumnsFirstColBodyEventLinkContentFlagFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyFixedColumnsFirstColBodyEventLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedColumnsFirstColBodyEventLinkContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventThumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnailAlt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyFixedColumnsFirstColBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyFixedColumnsFirstColBodyContentCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyFixedColumnsFirstColBodyCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyFixedColumnsFirstColBodyEventLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedColumnsSecondColBodyContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedColumnsSecondColBodyContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedColumnsSecondColBodyContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyFixedColumnsSecondColBodyContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedColumnsSecondColBodyContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyFixedColumnsSecondColBodyContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedColumnsSecondColBodyContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedColumnsSecondColBodyContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedColumnsSecondColBodyContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedColumnsSecondColBodyContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedColumnsSecondColBodyContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyFixedColumnsSecondColBodyContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedColumnsSecondColBodyContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyFixedColumnsSecondColBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedColumnsSecondColBodyEventLinkContentFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedColumnsSecondColBodyEventLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedColumnsSecondColBodyEventLinkContentFlagFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyFixedColumnsSecondColBodyEventLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedColumnsSecondColBodyEventLinkContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventThumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnailAlt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyFixedColumnsSecondColBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyFixedColumnsSecondColBodyContentCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyFixedColumnsSecondColBodyCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyFixedColumnsSecondColBodyEventLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyFixedColumnsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headerSection"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyFixedColumnsFirstColBodyFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyFixedColumnsSecondColBodyFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyFixedTabsLayoutFirstHeadingVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyFixedTabsLayoutFirstHeadingBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayoutFirstHeadingExpertBlockExpertListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"person"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"peopleURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"skills"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayoutFirstHeadingExpertBlockLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyFixedTabsLayoutFirstHeadingExpertBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"expertList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayoutFirstHeadingExpertBlockExpertListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayoutFirstHeadingExpertBlockLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockYoutubePlaylistFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videosCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubePlaylist"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockYoutubePlaylistFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyFixedTabsLayoutFirstHeadingCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayoutFirstHeadingFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyFixedTabsLayoutFirstHeadingVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyFixedTabsLayoutFirstHeadingBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ExpertBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyFixedTabsLayoutFirstHeadingExpertBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"YoutubePlaylistBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyFixedTabsLayoutFirstHeadingCustomImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyFixedTabsLayoutFirstBodyVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyFixedTabsLayoutFirstBodyBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayoutFirstBodyExpertBlockExpertListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"person"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"peopleURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"skills"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayoutFirstBodyExpertBlockLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyFixedTabsLayoutFirstBodyExpertBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"expertList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayoutFirstBodyExpertBlockExpertListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayoutFirstBodyExpertBlockLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockYoutubePlaylistFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videosCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubePlaylist"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockYoutubePlaylistFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyFixedTabsLayoutFirstBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayoutFirstBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyFixedTabsLayoutFirstBodyVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyFixedTabsLayoutFirstBodyBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ExpertBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyFixedTabsLayoutFirstBodyExpertBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"YoutubePlaylistBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyFixedTabsLayoutFirstBodyCustomImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyFixedTabsLayoutSecondHeadingVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyFixedTabsLayoutSecondHeadingBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayoutSecondHeadingExpertBlockExpertListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"person"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"peopleURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"skills"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayoutSecondHeadingExpertBlockLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyFixedTabsLayoutSecondHeadingExpertBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"expertList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayoutSecondHeadingExpertBlockExpertListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayoutSecondHeadingExpertBlockLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockYoutubePlaylistFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videosCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubePlaylist"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockYoutubePlaylistFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyFixedTabsLayoutSecondHeadingCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayoutSecondHeadingFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyFixedTabsLayoutSecondHeadingVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyFixedTabsLayoutSecondHeadingBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ExpertBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyFixedTabsLayoutSecondHeadingExpertBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"YoutubePlaylistBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyFixedTabsLayoutSecondHeadingCustomImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyFixedTabsLayoutSecondBodyVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyFixedTabsLayoutSecondBodyBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayoutSecondBodyExpertBlockExpertListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"person"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"peopleURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"skills"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayoutSecondBodyExpertBlockLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyFixedTabsLayoutSecondBodyExpertBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"expertList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayoutSecondBodyExpertBlockExpertListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayoutSecondBodyExpertBlockLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockYoutubePlaylistFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videosCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubePlaylist"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockYoutubePlaylistFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyFixedTabsLayoutSecondBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayoutSecondBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyFixedTabsLayoutSecondBodyVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyFixedTabsLayoutSecondBodyBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ExpertBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyFixedTabsLayoutSecondBodyExpertBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"YoutubePlaylistBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyFixedTabsLayoutSecondBodyCustomImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstHeading"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayoutFirstHeadingFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayoutFirstBodyFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondHeading"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayoutSecondHeadingFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayoutSecondBodyFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyGoogleMapsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"embedUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"embedWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"embedHeight"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyGridLayoutGridsBlocksLinkContentUtilityButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnIcon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentered"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeTopMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openInNewTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyGridLayoutGridsBlocksLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"UtilityButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyGridLayoutGridsBlocksLinkContentUtilityButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyGridLayoutGridsBlocksFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"image"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relatedImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"linkContent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyGridLayoutGridsBlocksLinkContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyGridLayoutGridsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"gridTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showGridTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centeredGridTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showHeaderDivider"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"offsetGridStart"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"blocks"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyGridLayoutGridsBlocksFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyGridLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"grids"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyGridLayoutGridsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyHeroActionsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"type"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyHeroImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyHeroFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"tagline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"actions"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyHeroActionsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"image"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyHeroImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyHorizontalCardCardListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyHorizontalCardButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyHorizontalCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cardList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyHorizontalCardCardListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"button"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyHorizontalCardButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyInternalCarouselItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyInternalCarouselTechnologiesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyInternalCarouselFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyInternalCarouselItemsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paragraph"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"website"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"technologies"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyInternalCarouselTechnologiesFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caseStudyUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyJoinAsPresenterFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"img"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyJoinGithubFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyJotFormEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"jotFormId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"containerClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyLatestTechBadgesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"userGroupGlobal"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"UserGroupGlobalFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyLatestTechFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"badges"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyLatestTechBadgesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyLocationBlockLocationListLocationFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"locations"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"LocationsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyLocationBlockLocationListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"location"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyLocationBlockLocationListLocationFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyLocationBlockChapelWebsiteFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"URL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyLocationBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"locationList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyLocationBlockLocationListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"chapelWebsite"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyLocationBlockChapelWebsiteFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyNewslettersTableFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headerText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyOrganizerFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImg"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"position"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyPaymentBlockPaymentsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paymentDetails"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PaymentDetailsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyPaymentBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"payments"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyPaymentBlockPaymentsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"footer"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"creditImgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altTxt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyPresenterBlockPresenterListPresenterFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"presenter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PresenterFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyPresenterBlockPresenterListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"presenter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyPresenterBlockPresenterListPresenterFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyPresenterBlockOtherEventFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyPresenterBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"presenterList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyPresenterBlockPresenterListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"otherEvent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyPresenterBlockOtherEventFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyRecurringEventFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"applyLinkRedirect"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"day"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodySectionHeaderFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headerText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyServiceCardsBigCardsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"description"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyServiceCardsSmallCardsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"isExternal"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyServiceCardsLinksFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyServiceCardsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bigCardsLabel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bigCards"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyServiceCardsBigCardsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"smallCardsLabel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"smallCards"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyServiceCardsSmallCardsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"links"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyServiceCardsLinksFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyTableLayoutRowsCellsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cellValue"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyTableLayoutRowsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cells"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyTableLayoutRowsCellsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"isHeader"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyTableLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"tableStyle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColBold"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headers"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"rows"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyTableLayoutRowsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyTestimonialsListExcludedCategoriesCategoryNameFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"testimonialCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"TestimonialCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyTestimonialsListExcludedCategoriesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"categoryName"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyTestimonialsListExcludedCategoriesCategoryNameFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyTestimonialsListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"excludedCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyTestimonialsListExcludedCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyTrainingInformationTrainingInformationItemsBodyVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyTrainingInformationTrainingInformationItemsBodyRecurringEventFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"applyLinkRedirect"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"day"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyTrainingInformationTrainingInformationItemsBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyTrainingInformationTrainingInformationItemsBodyVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"RecurringEvent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyTrainingInformationTrainingInformationItemsBodyRecurringEventFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyTrainingInformationTrainingInformationItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"body"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyTrainingInformationTrainingInformationItemsBodyFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyTrainingInformationFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"trainingInformationItems"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyTrainingInformationTrainingInformationItemsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyTrainingLearningOutcomeListItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyTrainingLearningOutcomeFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"listItems"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyTrainingLearningOutcomeListItemsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyTweetEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyUpcomingEventsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"numberOfEvents"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyUtilityButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnIcon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentered"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeTopMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openInNewTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyVerticalImageLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imageSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imageLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"message"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyInlineJotFormFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"jotFormId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"additionalClasses"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingAfterBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"AboutUs"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyAboutUsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Agenda"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyAgendaFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"AgreementForm"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyAgreementFormFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"InterestForm"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyInterestFormFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BuiltOnAzure"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyBuiltOnAzureFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Carousel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyCarouselFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Citation"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyCitationFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ClientList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyClientListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ClientLogos"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyClientLogosFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyColorBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorPalette"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyColorPaletteFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyContentCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomDownloadButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyCustomDownloadButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"DomainFromQuery"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyDomainFromQueryFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"DownloadBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyDownloadBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"DynamicColumns"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyDynamicColumnsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventBooking"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyEventBookingFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyEventLinkFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyFlagFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"FixedColumns"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyFixedColumnsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"FixedTabsLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyFixedTabsLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"GoogleMaps"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyGoogleMapsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"GridLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyGridLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Hero"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyHeroFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"HorizontalCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyHorizontalCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"InternalCarousel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyInternalCarouselFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"joinAsPresenter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyJoinAsPresenterFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"joinGithub"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyJoinGithubFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"JotFormEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyJotFormEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"LatestTech"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyLatestTechFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"LocationBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyLocationBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"NewslettersTable"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyNewslettersTableFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"organizer"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyOrganizerFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paymentBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyPaymentBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"PresenterBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyPresenterBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"RecurringEvent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyRecurringEventFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"SectionHeader"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodySectionHeaderFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ServiceCards"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyServiceCardsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TableLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyTableLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TestimonialsList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyTestimonialsListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TrainingInformation"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyTrainingInformationFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TrainingLearningOutcome"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyTrainingLearningOutcomeFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TweetEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyTweetEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"UpcomingEvents"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyUpcomingEventsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"UtilityButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyUtilityButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalImageLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyVerticalImageLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"InlineJotForm"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyInlineJotFormFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingBenefitsBenefitListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"image"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"description"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"linkName"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"linkURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingBenefitsRuleFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingBenefitsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"benefitList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingBenefitsBenefitListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"rule"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingBenefitsRuleFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingTechnologiesTechnologyCardsTechnologyCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"technologies"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"TechnologiesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingTechnologiesTechnologyCardsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"technologyCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingTechnologiesTechnologyCardsTechnologyCardFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingTechnologiesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subheading"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"technologyCards"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingTechnologiesTechnologyCardsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingMediasMediaCardsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"type"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingMediasFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"mediaCards"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingMediasMediaCardsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"tip"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"seo"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingSeoFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"testimonials"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingTestimonialsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"booking"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingBookingFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"solution"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingSolutionFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"callToAction"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingCallToActionFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"testimonialCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingTestimonialCategoriesFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"_body"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting_bodyFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingAfterBodyFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"benefits"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingBenefitsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"technologies"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingTechnologiesFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"medias"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingMediasFilter"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingConnectionEdges"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"cursor"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"node"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Consulting"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[{"kind":"NamedType","name":{"kind":"Name","value":"Connection"}}],"directives":[],"name":{"kind":"Name","value":"ConsultingConnection"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"pageInfo"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageInfo"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"totalCount"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"edges"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingConnectionEdges"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionSeoImages"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"url"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"width"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"height"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"alt"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionSeo"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"description"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"canonical"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"showBreadcrumb"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"images"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionSeoImages"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionBooking"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"subTitle"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"buttonText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"videoBackground"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionSolution"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"project"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionAfterBodyAboutUs"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"backgroundColor"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"showMap"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionAfterBodyAgendaAgendaItemList"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"placeholder"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"body"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionAfterBodyAgenda"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"header"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"textColor"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"agendaItemList"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyAgendaAgendaItemList"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionAfterBodyAgreementFormFields"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"id"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"placeholder"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"resizeable"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionAfterBodyAgreementForm"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"backgroundColor"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"fields"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyAgreementFormFields"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionAfterBodyInterestForm"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"buttonText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionAfterBodyBookingButton"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"buttonText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"animated"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionAfterBodyBuiltOnAzure"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"backgroundColor"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionAfterBodyCarouselItems"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"openIn"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"imgSrc"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionAfterBodyCarousel"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"items"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyCarouselItems"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"backgroundColor"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"delay"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"showOnMobileDevices"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionAfterBodyCitation"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"author"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"article"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyClientListCategoriesCategory"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"ClientCategories"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionAfterBodyClientListCategories"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"category"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyClientListCategoriesCategory"}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"Employment_bodyClientListClientsCategoriesCategory"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"ClientCategories"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"EmploymentBookingBookingBodyClientListClientsCategories"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"category"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyClientListClientsCategoriesCategory"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionAfterBodyClientListClients"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"name"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"logo"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"logoUrl"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"content"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"caseStudyUrl"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"categories"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyClientListClientsCategories"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionAfterBodyClientList"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"categories"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyClientListCategories"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"clients"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyClientListClients"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionAfterBodyClientLogos"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"altText"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionAfterBodyColorBlockColorRow"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"firstColor"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"fText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"secondColor"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"sText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"caption"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionAfterBodyColorBlock"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"subTitle"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"colorRow"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyColorBlockColorRow"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionAfterBodyColorPalette"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"name"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionAfterBodyContent"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"content"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"paddingClass"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"size"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"align"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"backgroundColor"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionAfterBodyContentCard"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"prose"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"centerAlignedText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"content"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionAfterBodyCustomDownloadButton"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"btnText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"btnLink"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionAfterBodyCustomImage"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"src"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"altText"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"alignment"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"height"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"width"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"customClass"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"caption"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"captionColor"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"sizes"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionAfterBodyDomainFromQuery"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"showDomain"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionAfterBodyDownloadBlockDownloads"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"header"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"img"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"imgBackground"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"firstLinkText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"firstLink"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"secondLinkText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"secondLink"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionAfterBodyDownloadBlock"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"downloads"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyDownloadBlockDownloads"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"bottomBorder"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionAfterBodyDynamicColumns"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"colBody"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"colCount"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyEventBookingEventListLocation"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"Locations"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionAfterBodyEventBookingEventList"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"city"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"date"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"bookingURL"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"location"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyEventBookingEventListLocation"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionAfterBodyEventBooking"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"eventDurationInDays"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"price"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"discountPrice"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"gstText"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"discountNote"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"eventList"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyEventBookingEventList"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionAfterBodyEventLink"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"content"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"eventThumbnail"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"thumbnailAlt"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionAfterBodyFlag"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"country"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionAfterBodyFixedColumns"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"headerSection"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"firstColBody"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"secondColBody"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayout"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"firstTab"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"firstHeading"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"firstBody"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"secondTab"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"secondHeading"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"secondBody"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionAfterBodyGoogleMaps"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"embedUrl"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"embedWidth"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"embedHeight"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"EmploymentBookingBookingBodyGridLayoutGridsBlocks"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"showTitle"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"image"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"relatedImage"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"linkContent"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionAfterBodyGridLayoutGrids"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"gridTitle"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"showGridTitle"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"centeredGridTitle"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"showHeaderDivider"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"offsetGridStart"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"blocks"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyGridLayoutGridsBlocks"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionAfterBodyGridLayout"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"grids"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyGridLayoutGrids"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionAfterBodyHeroActions"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"type"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"icon"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionAfterBodyHeroImage"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"src"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"alt"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionAfterBodyHero"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"tagline"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"headline"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"text"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"actions"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyHeroActions"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"image"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyHeroImage"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"color"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionAfterBodyHorizontalCardCardList"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"content"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"thumbnail"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionAfterBodyHorizontalCardButton"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"text"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionAfterBodyHorizontalCard"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"cardList"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyHorizontalCardCardList"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"button"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyHorizontalCardButton"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionAfterBodyInternalCarouselItems"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"imgSrc"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionAfterBodyInternalCarouselTechnologies"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"name"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionAfterBodyInternalCarousel"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"items"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyInternalCarouselItems"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"header"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"paragraph"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"website"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"technologies"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyInternalCarouselTechnologies"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"caseStudyUrl"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"videoUrl"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionAfterBodyJoinAsPresenter"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"img"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionAfterBodyJoinGithub"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionAfterBodyJotFormEmbed"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"jotFormId"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"buttonText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"containerClass"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"buttonClass"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"animated"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyLatestTechBadges"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"UserGroupGlobal"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionAfterBodyLatestTech"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"badges"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyLatestTechBadges"}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyLocationBlockLocationListLocation"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"Locations"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionAfterBodyLocationBlockLocationList"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"location"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyLocationBlockLocationListLocation"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionAfterBodyLocationBlockChapelWebsite"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"URL"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionAfterBodyLocationBlock"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"locationList"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyLocationBlockLocationList"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"chapelWebsite"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyLocationBlockChapelWebsite"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionAfterBodyNewslettersTable"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"headerText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionAfterBodyOrganizer"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"profileImg"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"profileLink"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"name"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"position"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"content"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyPaymentBlockPayments"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"PaymentDetails"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionAfterBodyPaymentBlock"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"subTitle"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"payments"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyPaymentBlockPayments"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"footer"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"creditImgSrc"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"altTxt"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyPresenterBlockPresenterListPresenter"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"Presenter"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionAfterBodyPresenterBlockPresenterList"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"presenter"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyPresenterBlockPresenterListPresenter"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionAfterBodyPresenterBlockOtherEvent"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"eventURL"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionAfterBodyPresenterBlock"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"header"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"presenterList"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyPresenterBlockPresenterList"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"otherEvent"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyPresenterBlockOtherEvent"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionAfterBodyRecurringEvent"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"applyLinkRedirect"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"day"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionAfterBodySectionHeader"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"headerText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionAfterBodyServiceCardsBigCards"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"description"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"color"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"imgSrc"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionAfterBodyServiceCardsSmallCards"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"color"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"imgSrc"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"isExternal"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionAfterBodyServiceCardsLinks"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionAfterBodyServiceCards"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"bigCardsLabel"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"bigCards"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyServiceCardsBigCards"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"smallCardsLabel"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"smallCards"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyServiceCardsSmallCards"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"links"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyServiceCardsLinks"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"backgroundColor"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"EmploymentBookingBookingBodyTableLayoutRowsCells"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"cellValue"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionAfterBodyTableLayoutRows"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"cells"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyTableLayoutRowsCells"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"isHeader"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionAfterBodyTableLayout"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"tableStyle"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"firstColBold"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"headers"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"rows"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyTableLayoutRows"}}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyTestimonialsListExcludedCategoriesCategoryName"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"TestimonialCategories"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionAfterBodyTestimonialsListExcludedCategories"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"categoryName"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyTestimonialsListExcludedCategoriesCategoryName"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionAfterBodyTestimonialsList"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"excludedCategories"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyTestimonialsListExcludedCategories"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionAfterBodyTrainingInformationTrainingInformationItems"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"header"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"body"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionAfterBodyTrainingInformation"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"trainingInformationItems"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyTrainingInformationTrainingInformationItems"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionAfterBodyTrainingLearningOutcomeListItems"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"content"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"icon"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionAfterBodyTrainingLearningOutcome"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"header"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"listItems"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyTrainingLearningOutcomeListItems"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionAfterBodyTweetEmbed"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"url"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionAfterBodyUpcomingEvents"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"numberOfEvents"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionAfterBodyUtilityButton"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"buttonText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"size"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"btnIcon"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"animated"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"uncentered"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"removeTopMargin"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"openInNewTab"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionAfterBodyVerticalImageLayout"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"imageSrc"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"altText"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"imageLink"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"height"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"width"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"message"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"sizes"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionAfterBodyVerticalListItem"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"content"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"index"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"icon"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"iconScale"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"afterBody"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionAfterBodyVideoEmbed"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"url"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"videoWidth"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"removeMargin"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"uncentre"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"overflow"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"caption"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"duration"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionAfterBodyInlineJotForm"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"jotFormId"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"additionalClasses"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBody"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyAboutUs"}},{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyAgenda"}},{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyAgreementForm"}},{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyInterestForm"}},{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyBookingButton"}},{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyBuiltOnAzure"}},{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyCarousel"}},{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyCitation"}},{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyClientList"}},{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyClientLogos"}},{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyColorBlock"}},{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyColorPalette"}},{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyContent"}},{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyContentCard"}},{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyCustomDownloadButton"}},{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyCustomImage"}},{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyDomainFromQuery"}},{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyDownloadBlock"}},{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyDynamicColumns"}},{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyEventBooking"}},{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyEventLink"}},{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyFlag"}},{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedColumns"}},{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayout"}},{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyGoogleMaps"}},{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyGridLayout"}},{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyHero"}},{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyHorizontalCard"}},{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyInternalCarousel"}},{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyJoinAsPresenter"}},{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyJoinGithub"}},{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyJotFormEmbed"}},{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyLatestTech"}},{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyLocationBlock"}},{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyNewslettersTable"}},{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyOrganizer"}},{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyPaymentBlock"}},{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyPresenterBlock"}},{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyRecurringEvent"}},{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodySectionHeader"}},{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyServiceCards"}},{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyTableLayout"}},{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyTestimonialsList"}},{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyTrainingInformation"}},{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyTrainingLearningOutcome"}},{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyTweetEmbed"}},{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyUpcomingEvents"}},{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyUtilityButton"}},{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyVerticalImageLayout"}},{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyVerticalListItem"}},{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyVideoEmbed"}},{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyInlineJotForm"}}]},{"kind":"ObjectTypeDefinition","interfaces":[{"kind":"NamedType","name":{"kind":"Name","value":"Node"}},{"kind":"NamedType","name":{"kind":"Name","value":"Document"}}],"directives":[],"name":{"kind":"Name","value":"VideoProduction"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"tip"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"seo"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionSeo"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"booking"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionBooking"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"solution"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionSolution"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"callToAction"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_body"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"afterBody"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBody"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"id"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ID"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_sys"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"SystemInfo"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_values"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionSeoImagesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionSeoFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"description"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"canonical"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showBreadcrumb"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"images"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionSeoImagesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionBookingFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoBackground"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionSolutionFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"project"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyAboutUsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showMap"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyAgendaAgendaItemListBodyVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyAgendaAgendaItemListBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyAgendaAgendaItemListBodyVerticalListItemFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyAgendaAgendaItemListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"placeholder"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"body"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyAgendaAgendaItemListBodyFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyAgendaFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"textColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"agendaItemList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyAgendaAgendaItemListFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyAgreementFormFieldsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"id"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"placeholder"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"resizeable"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyAgreementFormFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fields"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyAgreementFormFieldsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyInterestFormFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyBuiltOnAzureFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyCarouselItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openIn"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyCarouselFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyCarouselItemsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"delay"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showOnMobileDevices"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyCitationFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"author"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"article"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyClientListCategoriesCategoryFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"clientCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ClientCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyClientListCategoriesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"category"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyClientListCategoriesCategoryFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyClientListClientsContentUtilityButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnIcon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentered"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeTopMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openInNewTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyClientListClientsContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyClientListClientsContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyClientListClientsContentContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyClientListClientsContentContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyClientListClientsContentContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyClientListClientsContentContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyClientListClientsContentContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyClientListClientsContentContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyClientListClientsContentContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyClientListClientsContentContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyClientListClientsContentContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyClientListClientsContentContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyClientListClientsContentContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyClientListClientsContentContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyClientListClientsContentContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyClientListClientsContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"UtilityButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyClientListClientsContentUtilityButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyClientListClientsContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyClientListClientsContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyClientListClientsContentContentCardFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyClientListClientsCategoriesCategoryFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"clientCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ClientCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyClientListClientsCategoriesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"category"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyClientListClientsCategoriesCategoryFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyClientListClientsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"logo"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"logoUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyClientListClientsContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caseStudyUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"categories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyClientListClientsCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyClientListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"categories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyClientListCategoriesFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"clients"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyClientListClientsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyClientLogosFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyColorPaletteFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyContentContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyContentContentClientLogosFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyContentContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyContentContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyContentContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyContentContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyContentContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyContentContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ClientLogos"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyContentContentClientLogosFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyContentContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyContentContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyContentContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paddingClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"align"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyCustomDownloadButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyDomainFromQueryFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showDomain"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyDownloadBlockDownloadsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"img"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgBackground"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstLinkText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondLinkText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyDownloadBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"downloads"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyDownloadBlockDownloadsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bottomBorder"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyDynamicColumnsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyEventBookingEventListLocationFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"locations"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"LocationsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyEventBookingEventListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"city"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"date"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DatetimeFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bookingURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"location"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyEventBookingEventListLocationFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyEventBookingFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventDurationInDays"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"price"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"discountPrice"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"gstText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"discountNote"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyEventBookingEventListFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyEventLinkContentFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyEventLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyEventLinkContentFlagFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyEventLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyEventLinkContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventThumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnailAlt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyFixedColumnsFirstColBodyContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyFixedColumnsFirstColBodyContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyFixedColumnsFirstColBodyContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedColumnsFirstColBodyContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyFixedColumnsFirstColBodyContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedColumnsFirstColBodyContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedColumnsFirstColBodyContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyFixedColumnsFirstColBodyContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyFixedColumnsFirstColBodyContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyFixedColumnsFirstColBodyContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyFixedColumnsFirstColBodyContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedColumnsFirstColBodyContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedColumnsFirstColBodyContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedColumnsFirstColBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyFixedColumnsFirstColBodyEventLinkContentFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedColumnsFirstColBodyEventLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyFixedColumnsFirstColBodyEventLinkContentFlagFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedColumnsFirstColBodyEventLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedColumnsFirstColBodyEventLinkContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventThumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnailAlt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyFixedColumnsFirstColBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedColumnsFirstColBodyContentCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedColumnsFirstColBodyCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedColumnsFirstColBodyEventLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyFixedColumnsSecondColBodyContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyFixedColumnsSecondColBodyContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyFixedColumnsSecondColBodyContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedColumnsSecondColBodyContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyFixedColumnsSecondColBodyContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedColumnsSecondColBodyContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedColumnsSecondColBodyContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyFixedColumnsSecondColBodyContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyFixedColumnsSecondColBodyContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyFixedColumnsSecondColBodyContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyFixedColumnsSecondColBodyContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedColumnsSecondColBodyContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedColumnsSecondColBodyContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedColumnsSecondColBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyFixedColumnsSecondColBodyEventLinkContentFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedColumnsSecondColBodyEventLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyFixedColumnsSecondColBodyEventLinkContentFlagFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedColumnsSecondColBodyEventLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedColumnsSecondColBodyEventLinkContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventThumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnailAlt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyFixedColumnsSecondColBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedColumnsSecondColBodyContentCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedColumnsSecondColBodyCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedColumnsSecondColBodyEventLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyFixedColumnsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headerSection"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyFixedColumnsFirstColBodyFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyFixedColumnsSecondColBodyFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayoutFirstHeadingVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayoutFirstHeadingBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedTabsLayoutFirstHeadingExpertBlockExpertListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"person"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"peopleURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"skills"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedTabsLayoutFirstHeadingExpertBlockLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayoutFirstHeadingExpertBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"expertList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedTabsLayoutFirstHeadingExpertBlockExpertListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedTabsLayoutFirstHeadingExpertBlockLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockYoutubePlaylistFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videosCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubePlaylist"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockYoutubePlaylistFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayoutFirstHeadingCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyFixedTabsLayoutFirstHeadingFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayoutFirstHeadingVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayoutFirstHeadingBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ExpertBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayoutFirstHeadingExpertBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"YoutubePlaylistBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayoutFirstHeadingCustomImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayoutFirstBodyVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayoutFirstBodyBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedTabsLayoutFirstBodyExpertBlockExpertListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"person"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"peopleURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"skills"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedTabsLayoutFirstBodyExpertBlockLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayoutFirstBodyExpertBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"expertList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedTabsLayoutFirstBodyExpertBlockExpertListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedTabsLayoutFirstBodyExpertBlockLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockYoutubePlaylistFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videosCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubePlaylist"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockYoutubePlaylistFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayoutFirstBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyFixedTabsLayoutFirstBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayoutFirstBodyVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayoutFirstBodyBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ExpertBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayoutFirstBodyExpertBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"YoutubePlaylistBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayoutFirstBodyCustomImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayoutSecondHeadingVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayoutSecondHeadingBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedTabsLayoutSecondHeadingExpertBlockExpertListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"person"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"peopleURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"skills"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedTabsLayoutSecondHeadingExpertBlockLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayoutSecondHeadingExpertBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"expertList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedTabsLayoutSecondHeadingExpertBlockExpertListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedTabsLayoutSecondHeadingExpertBlockLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockYoutubePlaylistFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videosCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubePlaylist"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockYoutubePlaylistFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayoutSecondHeadingCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyFixedTabsLayoutSecondHeadingFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayoutSecondHeadingVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayoutSecondHeadingBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ExpertBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayoutSecondHeadingExpertBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"YoutubePlaylistBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayoutSecondHeadingCustomImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayoutSecondBodyVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayoutSecondBodyBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedTabsLayoutSecondBodyExpertBlockExpertListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"person"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"peopleURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"skills"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedTabsLayoutSecondBodyExpertBlockLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayoutSecondBodyExpertBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"expertList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedTabsLayoutSecondBodyExpertBlockExpertListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedTabsLayoutSecondBodyExpertBlockLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockYoutubePlaylistFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videosCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubePlaylist"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockYoutubePlaylistFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayoutSecondBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyFixedTabsLayoutSecondBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayoutSecondBodyVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayoutSecondBodyBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ExpertBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayoutSecondBodyExpertBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"YoutubePlaylistBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayoutSecondBodyCustomImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyFixedTabsLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstHeading"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyFixedTabsLayoutFirstHeadingFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyFixedTabsLayoutFirstBodyFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondHeading"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyFixedTabsLayoutSecondHeadingFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyFixedTabsLayoutSecondBodyFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyGoogleMapsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"embedUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"embedWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"embedHeight"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyGridLayoutGridsBlocksLinkContentUtilityButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnIcon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentered"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeTopMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openInNewTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyGridLayoutGridsBlocksLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"UtilityButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyGridLayoutGridsBlocksLinkContentUtilityButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyGridLayoutGridsBlocksFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"image"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relatedImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"linkContent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyGridLayoutGridsBlocksLinkContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyGridLayoutGridsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"gridTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showGridTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centeredGridTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showHeaderDivider"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"offsetGridStart"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"blocks"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyGridLayoutGridsBlocksFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyGridLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"grids"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyGridLayoutGridsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyHeroActionsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"type"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyHeroImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyHeroFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"tagline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"actions"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyHeroActionsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"image"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyHeroImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyHorizontalCardCardListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyHorizontalCardButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyHorizontalCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cardList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyHorizontalCardCardListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"button"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyHorizontalCardButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyInternalCarouselItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyInternalCarouselTechnologiesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyInternalCarouselFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyInternalCarouselItemsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paragraph"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"website"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"technologies"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyInternalCarouselTechnologiesFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caseStudyUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyJoinAsPresenterFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"img"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyJoinGithubFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyJotFormEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"jotFormId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"containerClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyLatestTechBadgesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"userGroupGlobal"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"UserGroupGlobalFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyLatestTechFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"badges"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyLatestTechBadgesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyLocationBlockLocationListLocationFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"locations"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"LocationsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyLocationBlockLocationListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"location"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyLocationBlockLocationListLocationFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyLocationBlockChapelWebsiteFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"URL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyLocationBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"locationList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyLocationBlockLocationListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"chapelWebsite"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyLocationBlockChapelWebsiteFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyNewslettersTableFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headerText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyOrganizerFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImg"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"position"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyPaymentBlockPaymentsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paymentDetails"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PaymentDetailsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyPaymentBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"payments"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyPaymentBlockPaymentsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"footer"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"creditImgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altTxt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyPresenterBlockPresenterListPresenterFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"presenter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PresenterFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyPresenterBlockPresenterListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"presenter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyPresenterBlockPresenterListPresenterFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyPresenterBlockOtherEventFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyPresenterBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"presenterList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyPresenterBlockPresenterListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"otherEvent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyPresenterBlockOtherEventFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyRecurringEventFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"applyLinkRedirect"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"day"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodySectionHeaderFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headerText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyServiceCardsBigCardsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"description"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyServiceCardsSmallCardsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"isExternal"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyServiceCardsLinksFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyServiceCardsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bigCardsLabel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bigCards"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyServiceCardsBigCardsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"smallCardsLabel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"smallCards"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyServiceCardsSmallCardsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"links"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyServiceCardsLinksFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyTableLayoutRowsCellsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cellValue"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyTableLayoutRowsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cells"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyTableLayoutRowsCellsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"isHeader"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyTableLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"tableStyle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColBold"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headers"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"rows"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyTableLayoutRowsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyTestimonialsListExcludedCategoriesCategoryNameFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"testimonialCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"TestimonialCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyTestimonialsListExcludedCategoriesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"categoryName"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyTestimonialsListExcludedCategoriesCategoryNameFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyTestimonialsListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"excludedCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyTestimonialsListExcludedCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyTrainingInformationTrainingInformationItemsBodyVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyTrainingInformationTrainingInformationItemsBodyRecurringEventFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"applyLinkRedirect"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"day"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyTrainingInformationTrainingInformationItemsBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyTrainingInformationTrainingInformationItemsBodyVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"RecurringEvent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyTrainingInformationTrainingInformationItemsBodyRecurringEventFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyTrainingInformationTrainingInformationItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"body"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyTrainingInformationTrainingInformationItemsBodyFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyTrainingInformationFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"trainingInformationItems"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyTrainingInformationTrainingInformationItemsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyTrainingLearningOutcomeListItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyTrainingLearningOutcomeFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"listItems"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyTrainingLearningOutcomeListItemsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyTweetEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyUpcomingEventsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"numberOfEvents"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyUtilityButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnIcon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentered"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeTopMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openInNewTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyVerticalImageLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imageSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imageLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"message"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyInlineJotFormFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"jotFormId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"additionalClasses"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProduction_bodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"AboutUs"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyAboutUsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Agenda"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyAgendaFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"AgreementForm"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyAgreementFormFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"InterestForm"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyInterestFormFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BuiltOnAzure"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyBuiltOnAzureFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Carousel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyCarouselFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Citation"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyCitationFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ClientList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyClientListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ClientLogos"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyClientLogosFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyColorBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorPalette"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyColorPaletteFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyContentCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomDownloadButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyCustomDownloadButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"DomainFromQuery"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyDomainFromQueryFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"DownloadBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyDownloadBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"DynamicColumns"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyDynamicColumnsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventBooking"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyEventBookingFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyEventLinkFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyFlagFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"FixedColumns"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyFixedColumnsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"FixedTabsLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyFixedTabsLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"GoogleMaps"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyGoogleMapsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"GridLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyGridLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Hero"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyHeroFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"HorizontalCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyHorizontalCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"InternalCarousel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyInternalCarouselFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"joinAsPresenter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyJoinAsPresenterFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"joinGithub"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyJoinGithubFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"JotFormEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyJotFormEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"LatestTech"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyLatestTechFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"LocationBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyLocationBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"NewslettersTable"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyNewslettersTableFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"organizer"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyOrganizerFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paymentBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyPaymentBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"PresenterBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyPresenterBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"RecurringEvent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyRecurringEventFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"SectionHeader"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodySectionHeaderFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ServiceCards"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyServiceCardsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TableLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyTableLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TestimonialsList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyTestimonialsListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TrainingInformation"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyTrainingInformationFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TrainingLearningOutcome"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyTrainingLearningOutcomeFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TweetEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyTweetEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"UpcomingEvents"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyUpcomingEventsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"UtilityButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyUtilityButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalImageLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyVerticalImageLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"InlineJotForm"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyInlineJotFormFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyAboutUsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showMap"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyAgendaAgendaItemListBodyVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyAgendaAgendaItemListBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyAgendaAgendaItemListBodyVerticalListItemFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyAgendaAgendaItemListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"placeholder"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"body"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyAgendaAgendaItemListBodyFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyAgendaFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"textColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"agendaItemList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyAgendaAgendaItemListFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyAgreementFormFieldsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"id"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"placeholder"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"resizeable"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyAgreementFormFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fields"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyAgreementFormFieldsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyInterestFormFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyBuiltOnAzureFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyCarouselItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openIn"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyCarouselFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyCarouselItemsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"delay"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showOnMobileDevices"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyCitationFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"author"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"article"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyClientListCategoriesCategoryFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"clientCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ClientCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyClientListCategoriesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"category"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyClientListCategoriesCategoryFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyClientListClientsContentUtilityButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnIcon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentered"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeTopMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openInNewTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyClientListClientsContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyClientListClientsContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyClientListClientsContentContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyClientListClientsContentContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyClientListClientsContentContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyClientListClientsContentContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyClientListClientsContentContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyClientListClientsContentContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyClientListClientsContentContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyClientListClientsContentContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyClientListClientsContentContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyClientListClientsContentContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyClientListClientsContentContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyClientListClientsContentContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyClientListClientsContentContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyClientListClientsContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"UtilityButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyClientListClientsContentUtilityButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyClientListClientsContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyClientListClientsContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyClientListClientsContentContentCardFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyClientListClientsCategoriesCategoryFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"clientCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ClientCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyClientListClientsCategoriesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"category"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyClientListClientsCategoriesCategoryFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyClientListClientsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"logo"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"logoUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyClientListClientsContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caseStudyUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"categories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyClientListClientsCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyClientListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"categories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyClientListCategoriesFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"clients"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyClientListClientsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyClientLogosFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyColorPaletteFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyContentContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyContentContentClientLogosFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyContentContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyContentContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyContentContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyContentContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyContentContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyContentContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ClientLogos"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyContentContentClientLogosFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyContentContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyContentContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyContentContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paddingClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"align"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyCustomDownloadButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyDomainFromQueryFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showDomain"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyDownloadBlockDownloadsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"img"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgBackground"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstLinkText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondLinkText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyDownloadBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"downloads"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyDownloadBlockDownloadsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bottomBorder"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyDynamicColumnsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyEventBookingEventListLocationFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"locations"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"LocationsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyEventBookingEventListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"city"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"date"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DatetimeFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bookingURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"location"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyEventBookingEventListLocationFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyEventBookingFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventDurationInDays"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"price"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"discountPrice"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"gstText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"discountNote"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyEventBookingEventListFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyEventLinkContentFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyEventLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyEventLinkContentFlagFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyEventLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyEventLinkContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventThumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnailAlt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedColumnsFirstColBodyContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedColumnsFirstColBodyContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedColumnsFirstColBodyContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyFixedColumnsFirstColBodyContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedColumnsFirstColBodyContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyFixedColumnsFirstColBodyContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyFixedColumnsFirstColBodyContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedColumnsFirstColBodyContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedColumnsFirstColBodyContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedColumnsFirstColBodyContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedColumnsFirstColBodyContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedColumnsFirstColBodyContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyFixedColumnsFirstColBodyContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedColumnsFirstColBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedColumnsFirstColBodyEventLinkContentFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyFixedColumnsFirstColBodyEventLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedColumnsFirstColBodyEventLinkContentFlagFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedColumnsFirstColBodyEventLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyFixedColumnsFirstColBodyEventLinkContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventThumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnailAlt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedColumnsFirstColBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedColumnsFirstColBodyContentCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedColumnsFirstColBodyCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedColumnsFirstColBodyEventLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedColumnsSecondColBodyContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedColumnsSecondColBodyContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedColumnsSecondColBodyContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyFixedColumnsSecondColBodyContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedColumnsSecondColBodyContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyFixedColumnsSecondColBodyContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyFixedColumnsSecondColBodyContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedColumnsSecondColBodyContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedColumnsSecondColBodyContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedColumnsSecondColBodyContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedColumnsSecondColBodyContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedColumnsSecondColBodyContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyFixedColumnsSecondColBodyContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedColumnsSecondColBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedColumnsSecondColBodyEventLinkContentFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyFixedColumnsSecondColBodyEventLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedColumnsSecondColBodyEventLinkContentFlagFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedColumnsSecondColBodyEventLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyFixedColumnsSecondColBodyEventLinkContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventThumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnailAlt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedColumnsSecondColBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedColumnsSecondColBodyContentCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedColumnsSecondColBodyCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedColumnsSecondColBodyEventLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedColumnsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headerSection"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedColumnsFirstColBodyFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedColumnsSecondColBodyFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedTabsLayoutFirstHeadingVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedTabsLayoutFirstHeadingBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyFixedTabsLayoutFirstHeadingExpertBlockExpertListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"person"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"peopleURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"skills"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyFixedTabsLayoutFirstHeadingExpertBlockLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedTabsLayoutFirstHeadingExpertBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"expertList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyFixedTabsLayoutFirstHeadingExpertBlockExpertListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyFixedTabsLayoutFirstHeadingExpertBlockLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockYoutubePlaylistFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videosCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubePlaylist"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockYoutubePlaylistFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedTabsLayoutFirstHeadingCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayoutFirstHeadingFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedTabsLayoutFirstHeadingVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedTabsLayoutFirstHeadingBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ExpertBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedTabsLayoutFirstHeadingExpertBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"YoutubePlaylistBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedTabsLayoutFirstHeadingCustomImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedTabsLayoutFirstBodyVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedTabsLayoutFirstBodyBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyFixedTabsLayoutFirstBodyExpertBlockExpertListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"person"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"peopleURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"skills"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyFixedTabsLayoutFirstBodyExpertBlockLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedTabsLayoutFirstBodyExpertBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"expertList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyFixedTabsLayoutFirstBodyExpertBlockExpertListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyFixedTabsLayoutFirstBodyExpertBlockLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockYoutubePlaylistFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videosCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubePlaylist"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockYoutubePlaylistFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedTabsLayoutFirstBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayoutFirstBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedTabsLayoutFirstBodyVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedTabsLayoutFirstBodyBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ExpertBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedTabsLayoutFirstBodyExpertBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"YoutubePlaylistBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedTabsLayoutFirstBodyCustomImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedTabsLayoutSecondHeadingVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedTabsLayoutSecondHeadingBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyFixedTabsLayoutSecondHeadingExpertBlockExpertListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"person"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"peopleURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"skills"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyFixedTabsLayoutSecondHeadingExpertBlockLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedTabsLayoutSecondHeadingExpertBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"expertList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyFixedTabsLayoutSecondHeadingExpertBlockExpertListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyFixedTabsLayoutSecondHeadingExpertBlockLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockYoutubePlaylistFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videosCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubePlaylist"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockYoutubePlaylistFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedTabsLayoutSecondHeadingCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayoutSecondHeadingFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedTabsLayoutSecondHeadingVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedTabsLayoutSecondHeadingBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ExpertBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedTabsLayoutSecondHeadingExpertBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"YoutubePlaylistBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedTabsLayoutSecondHeadingCustomImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedTabsLayoutSecondBodyVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedTabsLayoutSecondBodyBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyFixedTabsLayoutSecondBodyExpertBlockExpertListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"person"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"peopleURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"skills"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyFixedTabsLayoutSecondBodyExpertBlockLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedTabsLayoutSecondBodyExpertBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"expertList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyFixedTabsLayoutSecondBodyExpertBlockExpertListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyFixedTabsLayoutSecondBodyExpertBlockLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockYoutubePlaylistFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videosCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubePlaylist"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockYoutubePlaylistFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedTabsLayoutSecondBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayoutSecondBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedTabsLayoutSecondBodyVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedTabsLayoutSecondBodyBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ExpertBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedTabsLayoutSecondBodyExpertBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"YoutubePlaylistBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedTabsLayoutSecondBodyCustomImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstHeading"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayoutFirstHeadingFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayoutFirstBodyFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondHeading"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayoutSecondHeadingFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayoutSecondBodyFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyGoogleMapsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"embedUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"embedWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"embedHeight"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyGridLayoutGridsBlocksLinkContentUtilityButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnIcon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentered"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeTopMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openInNewTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyGridLayoutGridsBlocksLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"UtilityButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyGridLayoutGridsBlocksLinkContentUtilityButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyGridLayoutGridsBlocksFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"image"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relatedImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"linkContent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyGridLayoutGridsBlocksLinkContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyGridLayoutGridsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"gridTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showGridTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centeredGridTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showHeaderDivider"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"offsetGridStart"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"blocks"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyGridLayoutGridsBlocksFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyGridLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"grids"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyGridLayoutGridsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyHeroActionsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"type"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyHeroImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyHeroFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"tagline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"actions"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyHeroActionsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"image"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyHeroImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyHorizontalCardCardListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyHorizontalCardButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyHorizontalCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cardList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyHorizontalCardCardListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"button"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyHorizontalCardButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyInternalCarouselItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyInternalCarouselTechnologiesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyInternalCarouselFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyInternalCarouselItemsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paragraph"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"website"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"technologies"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyInternalCarouselTechnologiesFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caseStudyUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyJoinAsPresenterFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"img"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyJoinGithubFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyJotFormEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"jotFormId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"containerClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyLatestTechBadgesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"userGroupGlobal"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"UserGroupGlobalFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyLatestTechFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"badges"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyLatestTechBadgesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyLocationBlockLocationListLocationFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"locations"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"LocationsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyLocationBlockLocationListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"location"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyLocationBlockLocationListLocationFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyLocationBlockChapelWebsiteFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"URL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyLocationBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"locationList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyLocationBlockLocationListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"chapelWebsite"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyLocationBlockChapelWebsiteFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyNewslettersTableFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headerText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyOrganizerFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImg"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"position"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyPaymentBlockPaymentsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paymentDetails"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PaymentDetailsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyPaymentBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"payments"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyPaymentBlockPaymentsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"footer"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"creditImgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altTxt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyPresenterBlockPresenterListPresenterFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"presenter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PresenterFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyPresenterBlockPresenterListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"presenter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyPresenterBlockPresenterListPresenterFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyPresenterBlockOtherEventFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyPresenterBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"presenterList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyPresenterBlockPresenterListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"otherEvent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyPresenterBlockOtherEventFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyRecurringEventFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"applyLinkRedirect"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"day"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodySectionHeaderFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headerText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyServiceCardsBigCardsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"description"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyServiceCardsSmallCardsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"isExternal"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyServiceCardsLinksFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyServiceCardsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bigCardsLabel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bigCards"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyServiceCardsBigCardsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"smallCardsLabel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"smallCards"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyServiceCardsSmallCardsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"links"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyServiceCardsLinksFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyTableLayoutRowsCellsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cellValue"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyTableLayoutRowsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cells"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyTableLayoutRowsCellsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"isHeader"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyTableLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"tableStyle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColBold"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headers"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"rows"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyTableLayoutRowsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyTestimonialsListExcludedCategoriesCategoryNameFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"testimonialCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"TestimonialCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyTestimonialsListExcludedCategoriesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"categoryName"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyTestimonialsListExcludedCategoriesCategoryNameFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyTestimonialsListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"excludedCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyTestimonialsListExcludedCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyTrainingInformationTrainingInformationItemsBodyVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyTrainingInformationTrainingInformationItemsBodyRecurringEventFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"applyLinkRedirect"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"day"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyTrainingInformationTrainingInformationItemsBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyTrainingInformationTrainingInformationItemsBodyVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"RecurringEvent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyTrainingInformationTrainingInformationItemsBodyRecurringEventFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyTrainingInformationTrainingInformationItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"body"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyTrainingInformationTrainingInformationItemsBodyFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyTrainingInformationFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"trainingInformationItems"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyTrainingInformationTrainingInformationItemsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyTrainingLearningOutcomeListItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyTrainingLearningOutcomeFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"listItems"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyTrainingLearningOutcomeListItemsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyTweetEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyUpcomingEventsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"numberOfEvents"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyUtilityButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnIcon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentered"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeTopMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openInNewTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyVerticalImageLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imageSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imageLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"message"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyInlineJotFormFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"jotFormId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"additionalClasses"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionAfterBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"AboutUs"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyAboutUsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Agenda"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyAgendaFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"AgreementForm"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyAgreementFormFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"InterestForm"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyInterestFormFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BuiltOnAzure"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyBuiltOnAzureFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Carousel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyCarouselFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Citation"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyCitationFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ClientList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyClientListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ClientLogos"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyClientLogosFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyColorBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorPalette"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyColorPaletteFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyContentCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomDownloadButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyCustomDownloadButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"DomainFromQuery"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyDomainFromQueryFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"DownloadBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyDownloadBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"DynamicColumns"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyDynamicColumnsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventBooking"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyEventBookingFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyEventLinkFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyFlagFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"FixedColumns"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedColumnsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"FixedTabsLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyFixedTabsLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"GoogleMaps"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyGoogleMapsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"GridLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyGridLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Hero"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyHeroFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"HorizontalCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyHorizontalCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"InternalCarousel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyInternalCarouselFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"joinAsPresenter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyJoinAsPresenterFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"joinGithub"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyJoinGithubFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"JotFormEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyJotFormEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"LatestTech"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyLatestTechFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"LocationBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyLocationBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"NewslettersTable"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyNewslettersTableFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"organizer"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyOrganizerFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paymentBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyPaymentBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"PresenterBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyPresenterBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"RecurringEvent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyRecurringEventFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"SectionHeader"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodySectionHeaderFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ServiceCards"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyServiceCardsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TableLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyTableLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TestimonialsList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyTestimonialsListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TrainingInformation"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyTrainingInformationFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TrainingLearningOutcome"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyTrainingLearningOutcomeFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TweetEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyTweetEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"UpcomingEvents"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyUpcomingEventsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"UtilityButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyUtilityButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalImageLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyVerticalImageLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"InlineJotForm"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyInlineJotFormFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"VideoProductionFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"tip"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"seo"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionSeoFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"booking"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionBookingFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"solution"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionSolutionFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"callToAction"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"_body"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction_bodyFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionAfterBodyFilter"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"VideoProductionConnectionEdges"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"cursor"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"node"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProduction"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[{"kind":"NamedType","name":{"kind":"Name","value":"Connection"}}],"directives":[],"name":{"kind":"Name","value":"VideoProductionConnection"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"pageInfo"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageInfo"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"totalCount"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"edges"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"VideoProductionConnectionEdges"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[{"kind":"NamedType","name":{"kind":"Name","value":"Node"}},{"kind":"NamedType","name":{"kind":"Name","value":"Document"}}],"directives":[],"name":{"kind":"Name","value":"ConsultingCategory"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"name"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"id"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ID"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_sys"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"SystemInfo"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_values"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingCategoryFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingCategoryConnectionEdges"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"cursor"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"node"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingCategory"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[{"kind":"NamedType","name":{"kind":"Name","value":"Connection"}}],"directives":[],"name":{"kind":"Name","value":"ConsultingCategoryConnection"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"pageInfo"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageInfo"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"totalCount"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"edges"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingCategoryConnectionEdges"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[{"kind":"NamedType","name":{"kind":"Name","value":"Node"}},{"kind":"NamedType","name":{"kind":"Name","value":"Document"}}],"directives":[],"name":{"kind":"Name","value":"ConsultingTag"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"name"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"id"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ID"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_sys"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"SystemInfo"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_values"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"ConsultingTagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"ConsultingTagConnectionEdges"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"cursor"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"node"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingTag"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[{"kind":"NamedType","name":{"kind":"Name","value":"Connection"}}],"directives":[],"name":{"kind":"Name","value":"ConsultingTagConnection"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"pageInfo"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageInfo"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"totalCount"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"edges"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ConsultingTagConnectionEdges"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[{"kind":"NamedType","name":{"kind":"Name","value":"Node"}},{"kind":"NamedType","name":{"kind":"Name","value":"Document"}}],"directives":[],"name":{"kind":"Name","value":"Technologies"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"tip"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"name"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"readMoreSlug"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"thumbnail"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"body"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"id"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ID"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_sys"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"SystemInfo"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_values"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"TechnologiesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"tip"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"readMoreSlug"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"body"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"TechnologiesConnectionEdges"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"cursor"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"node"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Technologies"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[{"kind":"NamedType","name":{"kind":"Name","value":"Connection"}}],"directives":[],"name":{"kind":"Name","value":"TechnologiesConnection"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"pageInfo"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageInfo"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"totalCount"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"edges"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"TechnologiesConnectionEdges"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"EmploymentSeoImages"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"url"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"width"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"height"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"alt"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"EmploymentSeo"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"description"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"canonical"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"showBreadcrumb"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"images"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentSeoImages"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"EmploymentBooking"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"subTitle"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"bookingBody"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"videoBackground"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"EmploymentBenefitsBenefitList"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"image"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"description"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"linkName"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"linkURL"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"EmploymentBenefits"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"benefitList"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBenefitList"}}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesOpportunityRef"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"EmploymentOpportunities"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"opportunityRef"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesOpportunityRef"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[{"kind":"NamedType","name":{"kind":"Name","value":"Node"}},{"kind":"NamedType","name":{"kind":"Name","value":"Document"}}],"directives":[],"name":{"kind":"Name","value":"Employment"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"tip"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"seo"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentSeo"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"booking"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBooking"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_body"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"benefits"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefits"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"benefitsBody"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"afterBody"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"opportunitiesBody"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"opportunities"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"ListType","type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunities"}}}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"callToActionBody"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"id"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ID"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_sys"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"SystemInfo"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_values"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentSeoImagesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentSeoFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"description"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"canonical"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showBreadcrumb"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"images"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentSeoImagesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyAboutUsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showMap"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyAgendaAgendaItemListBodyVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyAgendaAgendaItemListBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyAgendaAgendaItemListBodyVerticalListItemFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyAgendaAgendaItemListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"placeholder"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"body"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyAgendaAgendaItemListBodyFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyAgendaFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"textColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"agendaItemList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyAgendaAgendaItemListFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyAgreementFormFieldsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"id"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"placeholder"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"resizeable"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyAgreementFormFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fields"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyAgreementFormFieldsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyInterestFormFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyBuiltOnAzureFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyCarouselItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openIn"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyCarouselFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyCarouselItemsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"delay"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showOnMobileDevices"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyCitationFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"author"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"article"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyClientListCategoriesCategoryFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"clientCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ClientCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyClientListCategoriesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"category"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyClientListCategoriesCategoryFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyClientListClientsContentUtilityButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnIcon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentered"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeTopMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openInNewTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyClientListClientsContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyClientListClientsContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyClientListClientsContentContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyClientListClientsContentContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyClientListClientsContentContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyClientListClientsContentContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyClientListClientsContentContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyClientListClientsContentContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyClientListClientsContentContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyClientListClientsContentContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyClientListClientsContentContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyClientListClientsContentContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyClientListClientsContentContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyClientListClientsContentContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyClientListClientsContentContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyClientListClientsContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"UtilityButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyClientListClientsContentUtilityButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyClientListClientsContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyClientListClientsContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyClientListClientsContentContentCardFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyClientListClientsCategoriesCategoryFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"clientCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ClientCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyClientListClientsCategoriesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"category"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyClientListClientsCategoriesCategoryFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyClientListClientsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"logo"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"logoUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyClientListClientsContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caseStudyUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"categories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyClientListClientsCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyClientListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"categories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyClientListCategoriesFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"clients"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyClientListClientsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyClientLogosFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyColorPaletteFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyContentContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyContentContentClientLogosFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyContentContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyContentContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyContentContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyContentContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyContentContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyContentContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ClientLogos"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyContentContentClientLogosFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyContentContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyContentContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyContentContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paddingClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"align"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyCustomDownloadButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyDomainFromQueryFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showDomain"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyDownloadBlockDownloadsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"img"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgBackground"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstLinkText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondLinkText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyDownloadBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"downloads"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyDownloadBlockDownloadsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bottomBorder"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyDynamicColumnsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyEventBookingEventListLocationFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"locations"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"LocationsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyEventBookingEventListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"city"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"date"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DatetimeFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bookingURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"location"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyEventBookingEventListLocationFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyEventBookingFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventDurationInDays"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"price"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"discountPrice"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"gstText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"discountNote"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyEventBookingEventListFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyEventLinkContentFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyEventLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyEventLinkContentFlagFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyEventLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyEventLinkContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventThumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnailAlt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyFixedColumnsFirstColBodyContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyFixedColumnsFirstColBodyContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyFixedColumnsFirstColBodyContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedColumnsFirstColBodyContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyFixedColumnsFirstColBodyContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedColumnsFirstColBodyContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedColumnsFirstColBodyContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyFixedColumnsFirstColBodyContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyFixedColumnsFirstColBodyContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyFixedColumnsFirstColBodyContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyFixedColumnsFirstColBodyContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyFixedColumnsFirstColBodyContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedColumnsFirstColBodyContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyFixedColumnsFirstColBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyFixedColumnsFirstColBodyEventLinkContentFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedColumnsFirstColBodyEventLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyFixedColumnsFirstColBodyEventLinkContentFlagFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyFixedColumnsFirstColBodyEventLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedColumnsFirstColBodyEventLinkContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventThumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnailAlt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedColumnsFirstColBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyFixedColumnsFirstColBodyContentCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyFixedColumnsFirstColBodyCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyFixedColumnsFirstColBodyEventLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyFixedColumnsSecondColBodyContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyFixedColumnsSecondColBodyContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyFixedColumnsSecondColBodyContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedColumnsSecondColBodyContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyFixedColumnsSecondColBodyContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedColumnsSecondColBodyContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedColumnsSecondColBodyContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyFixedColumnsSecondColBodyContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyFixedColumnsSecondColBodyContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyFixedColumnsSecondColBodyContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyFixedColumnsSecondColBodyContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyFixedColumnsSecondColBodyContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedColumnsSecondColBodyContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyFixedColumnsSecondColBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyFixedColumnsSecondColBodyEventLinkContentFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedColumnsSecondColBodyEventLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyFixedColumnsSecondColBodyEventLinkContentFlagFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyFixedColumnsSecondColBodyEventLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedColumnsSecondColBodyEventLinkContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventThumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnailAlt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedColumnsSecondColBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyFixedColumnsSecondColBodyContentCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyFixedColumnsSecondColBodyCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyFixedColumnsSecondColBodyEventLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedColumnsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headerSection"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedColumnsFirstColBodyFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedColumnsSecondColBodyFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyFixedTabsLayoutFirstHeadingVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyFixedTabsLayoutFirstHeadingBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedTabsLayoutFirstHeadingExpertBlockExpertListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"person"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"peopleURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"skills"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedTabsLayoutFirstHeadingExpertBlockLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyFixedTabsLayoutFirstHeadingExpertBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"expertList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedTabsLayoutFirstHeadingExpertBlockExpertListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedTabsLayoutFirstHeadingExpertBlockLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockYoutubePlaylistFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videosCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubePlaylist"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockYoutubePlaylistFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyFixedTabsLayoutFirstHeadingCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedTabsLayoutFirstHeadingFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyFixedTabsLayoutFirstHeadingVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyFixedTabsLayoutFirstHeadingBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ExpertBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyFixedTabsLayoutFirstHeadingExpertBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"YoutubePlaylistBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyFixedTabsLayoutFirstHeadingCustomImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyFixedTabsLayoutFirstBodyVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyFixedTabsLayoutFirstBodyBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedTabsLayoutFirstBodyExpertBlockExpertListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"person"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"peopleURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"skills"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedTabsLayoutFirstBodyExpertBlockLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyFixedTabsLayoutFirstBodyExpertBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"expertList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedTabsLayoutFirstBodyExpertBlockExpertListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedTabsLayoutFirstBodyExpertBlockLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockYoutubePlaylistFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videosCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubePlaylist"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockYoutubePlaylistFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyFixedTabsLayoutFirstBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedTabsLayoutFirstBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyFixedTabsLayoutFirstBodyVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyFixedTabsLayoutFirstBodyBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ExpertBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyFixedTabsLayoutFirstBodyExpertBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"YoutubePlaylistBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyFixedTabsLayoutFirstBodyCustomImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyFixedTabsLayoutSecondHeadingVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyFixedTabsLayoutSecondHeadingBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedTabsLayoutSecondHeadingExpertBlockExpertListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"person"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"peopleURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"skills"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedTabsLayoutSecondHeadingExpertBlockLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyFixedTabsLayoutSecondHeadingExpertBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"expertList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedTabsLayoutSecondHeadingExpertBlockExpertListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedTabsLayoutSecondHeadingExpertBlockLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockYoutubePlaylistFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videosCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubePlaylist"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockYoutubePlaylistFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyFixedTabsLayoutSecondHeadingCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedTabsLayoutSecondHeadingFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyFixedTabsLayoutSecondHeadingVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyFixedTabsLayoutSecondHeadingBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ExpertBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyFixedTabsLayoutSecondHeadingExpertBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"YoutubePlaylistBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyFixedTabsLayoutSecondHeadingCustomImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyFixedTabsLayoutSecondBodyVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyFixedTabsLayoutSecondBodyBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedTabsLayoutSecondBodyExpertBlockExpertListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"person"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"peopleURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"skills"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedTabsLayoutSecondBodyExpertBlockLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyFixedTabsLayoutSecondBodyExpertBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"expertList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedTabsLayoutSecondBodyExpertBlockExpertListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedTabsLayoutSecondBodyExpertBlockLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockYoutubePlaylistFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videosCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubePlaylist"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockYoutubePlaylistFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyFixedTabsLayoutSecondBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedTabsLayoutSecondBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyFixedTabsLayoutSecondBodyVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyFixedTabsLayoutSecondBodyBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ExpertBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyFixedTabsLayoutSecondBodyExpertBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"YoutubePlaylistBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyFixedTabsLayoutSecondBodyCustomImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedTabsLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstHeading"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedTabsLayoutFirstHeadingFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedTabsLayoutFirstBodyFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondHeading"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedTabsLayoutSecondHeadingFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedTabsLayoutSecondBodyFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyGoogleMapsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"embedUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"embedWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"embedHeight"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyGridLayoutGridsBlocksLinkContentUtilityButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnIcon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentered"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeTopMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openInNewTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyGridLayoutGridsBlocksLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"UtilityButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyGridLayoutGridsBlocksLinkContentUtilityButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyGridLayoutGridsBlocksFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"image"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relatedImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"linkContent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyGridLayoutGridsBlocksLinkContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyGridLayoutGridsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"gridTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showGridTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centeredGridTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showHeaderDivider"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"offsetGridStart"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"blocks"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyGridLayoutGridsBlocksFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyGridLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"grids"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyGridLayoutGridsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyHeroActionsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"type"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyHeroImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyHeroFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"tagline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"actions"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyHeroActionsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"image"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyHeroImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyHorizontalCardCardListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyHorizontalCardButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyHorizontalCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cardList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyHorizontalCardCardListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"button"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyHorizontalCardButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyInternalCarouselItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyInternalCarouselTechnologiesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyInternalCarouselFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyInternalCarouselItemsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paragraph"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"website"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"technologies"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyInternalCarouselTechnologiesFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caseStudyUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyJoinAsPresenterFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"img"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyJoinGithubFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyJotFormEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"jotFormId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"containerClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyLatestTechBadgesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"userGroupGlobal"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"UserGroupGlobalFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyLatestTechFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"badges"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyLatestTechBadgesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyLocationBlockLocationListLocationFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"locations"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"LocationsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyLocationBlockLocationListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"location"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyLocationBlockLocationListLocationFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyLocationBlockChapelWebsiteFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"URL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyLocationBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"locationList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyLocationBlockLocationListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"chapelWebsite"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyLocationBlockChapelWebsiteFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyNewslettersTableFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headerText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyOrganizerFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImg"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"position"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyPaymentBlockPaymentsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paymentDetails"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PaymentDetailsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyPaymentBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"payments"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyPaymentBlockPaymentsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"footer"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"creditImgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altTxt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyPresenterBlockPresenterListPresenterFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"presenter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PresenterFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyPresenterBlockPresenterListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"presenter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyPresenterBlockPresenterListPresenterFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyPresenterBlockOtherEventFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyPresenterBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"presenterList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyPresenterBlockPresenterListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"otherEvent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyPresenterBlockOtherEventFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyRecurringEventFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"applyLinkRedirect"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"day"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodySectionHeaderFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headerText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyServiceCardsBigCardsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"description"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyServiceCardsSmallCardsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"isExternal"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyServiceCardsLinksFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyServiceCardsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bigCardsLabel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bigCards"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyServiceCardsBigCardsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"smallCardsLabel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"smallCards"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyServiceCardsSmallCardsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"links"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyServiceCardsLinksFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyTableLayoutRowsCellsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cellValue"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyTableLayoutRowsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cells"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyTableLayoutRowsCellsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"isHeader"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyTableLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"tableStyle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColBold"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headers"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"rows"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyTableLayoutRowsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyTestimonialsListExcludedCategoriesCategoryNameFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"testimonialCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"TestimonialCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyTestimonialsListExcludedCategoriesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"categoryName"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyTestimonialsListExcludedCategoriesCategoryNameFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyTestimonialsListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"excludedCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyTestimonialsListExcludedCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyTrainingInformationTrainingInformationItemsBodyVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyTrainingInformationTrainingInformationItemsBodyRecurringEventFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"applyLinkRedirect"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"day"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyTrainingInformationTrainingInformationItemsBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyTrainingInformationTrainingInformationItemsBodyVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"RecurringEvent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyTrainingInformationTrainingInformationItemsBodyRecurringEventFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyTrainingInformationTrainingInformationItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"body"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyTrainingInformationTrainingInformationItemsBodyFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyTrainingInformationFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"trainingInformationItems"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyTrainingInformationTrainingInformationItemsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyTrainingLearningOutcomeListItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyTrainingLearningOutcomeFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"listItems"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyTrainingLearningOutcomeListItemsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyTweetEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyUpcomingEventsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"numberOfEvents"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyUtilityButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnIcon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentered"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeTopMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openInNewTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyVerticalImageLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imageSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imageLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"message"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyInlineJotFormFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"jotFormId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"additionalClasses"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"AboutUs"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyAboutUsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Agenda"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyAgendaFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"AgreementForm"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyAgreementFormFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"InterestForm"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyInterestFormFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BuiltOnAzure"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyBuiltOnAzureFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Carousel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyCarouselFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Citation"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyCitationFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ClientList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyClientListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ClientLogos"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyClientLogosFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyColorBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorPalette"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyColorPaletteFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyContentCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomDownloadButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyCustomDownloadButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"DomainFromQuery"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyDomainFromQueryFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"DownloadBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyDownloadBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"DynamicColumns"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyDynamicColumnsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventBooking"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyEventBookingFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyEventLinkFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFlagFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"FixedColumns"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedColumnsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"FixedTabsLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFixedTabsLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"GoogleMaps"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyGoogleMapsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"GridLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyGridLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Hero"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyHeroFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"HorizontalCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyHorizontalCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"InternalCarousel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyInternalCarouselFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"joinAsPresenter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyJoinAsPresenterFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"joinGithub"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyJoinGithubFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"JotFormEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyJotFormEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"LatestTech"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyLatestTechFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"LocationBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyLocationBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"NewslettersTable"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyNewslettersTableFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"organizer"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyOrganizerFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paymentBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyPaymentBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"PresenterBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyPresenterBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"RecurringEvent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyRecurringEventFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"SectionHeader"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodySectionHeaderFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ServiceCards"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyServiceCardsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TableLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyTableLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TestimonialsList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyTestimonialsListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TrainingInformation"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyTrainingInformationFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TrainingLearningOutcome"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyTrainingLearningOutcomeFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TweetEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyTweetEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"UpcomingEvents"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyUpcomingEventsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"UtilityButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyUtilityButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalImageLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyVerticalImageLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"InlineJotForm"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyInlineJotFormFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBookingFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bookingBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingBookingBodyFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoBackground"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyAboutUsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showMap"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyAgendaAgendaItemListBodyVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyAgendaAgendaItemListBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyAgendaAgendaItemListBodyVerticalListItemFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyAgendaAgendaItemListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"placeholder"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"body"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyAgendaAgendaItemListBodyFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyAgendaFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"textColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"agendaItemList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyAgendaAgendaItemListFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyAgreementFormFieldsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"id"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"placeholder"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"resizeable"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyAgreementFormFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fields"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyAgreementFormFieldsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyInterestFormFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyBuiltOnAzureFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyCarouselItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openIn"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyCarouselFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyCarouselItemsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"delay"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showOnMobileDevices"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyCitationFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"author"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"article"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyClientListCategoriesCategoryFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"clientCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ClientCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyClientListCategoriesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"category"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyClientListCategoriesCategoryFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyClientListClientsContentUtilityButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnIcon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentered"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeTopMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openInNewTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyClientListClientsContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyClientListClientsContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyClientListClientsContentContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyClientListClientsContentContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyClientListClientsContentContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyClientListClientsContentContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyClientListClientsContentContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyClientListClientsContentContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyClientListClientsContentContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyClientListClientsContentContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyClientListClientsContentContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyClientListClientsContentContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyClientListClientsContentContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyClientListClientsContentContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyClientListClientsContentContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyClientListClientsContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"UtilityButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyClientListClientsContentUtilityButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyClientListClientsContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyClientListClientsContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyClientListClientsContentContentCardFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyClientListClientsCategoriesCategoryFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"clientCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ClientCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyClientListClientsCategoriesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"category"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyClientListClientsCategoriesCategoryFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyClientListClientsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"logo"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"logoUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyClientListClientsContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caseStudyUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"categories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyClientListClientsCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyClientListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"categories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyClientListCategoriesFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"clients"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyClientListClientsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyClientLogosFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyColorPaletteFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyContentContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyContentContentClientLogosFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyContentContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyContentContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyContentContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyContentContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyContentContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyContentContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ClientLogos"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyContentContentClientLogosFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyContentContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyContentContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyContentContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paddingClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"align"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyCustomDownloadButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyDomainFromQueryFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showDomain"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyDownloadBlockDownloadsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"img"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgBackground"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstLinkText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondLinkText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyDownloadBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"downloads"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyDownloadBlockDownloadsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bottomBorder"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyDynamicColumnsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyEventBookingEventListLocationFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"locations"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"LocationsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyEventBookingEventListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"city"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"date"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DatetimeFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bookingURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"location"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyEventBookingEventListLocationFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyEventBookingFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventDurationInDays"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"price"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"discountPrice"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"gstText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"discountNote"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyEventBookingEventListFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyEventLinkContentFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyEventLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyEventLinkContentFlagFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyEventLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyEventLinkContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventThumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnailAlt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedColumnsFirstColBodyContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedColumnsFirstColBodyContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedColumnsFirstColBodyContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedColumnsFirstColBodyContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedColumnsFirstColBodyContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedColumnsFirstColBodyContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyFixedColumnsFirstColBodyContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedColumnsFirstColBodyContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedColumnsFirstColBodyContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedColumnsFirstColBodyContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedColumnsFirstColBodyContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedColumnsFirstColBodyContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyFixedColumnsFirstColBodyContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedColumnsFirstColBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedColumnsFirstColBodyEventLinkContentFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyFixedColumnsFirstColBodyEventLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedColumnsFirstColBodyEventLinkContentFlagFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedColumnsFirstColBodyEventLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyFixedColumnsFirstColBodyEventLinkContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventThumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnailAlt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyFixedColumnsFirstColBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedColumnsFirstColBodyContentCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedColumnsFirstColBodyCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedColumnsFirstColBodyEventLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedColumnsSecondColBodyContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedColumnsSecondColBodyContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedColumnsSecondColBodyContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedColumnsSecondColBodyContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedColumnsSecondColBodyContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedColumnsSecondColBodyContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyFixedColumnsSecondColBodyContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedColumnsSecondColBodyContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedColumnsSecondColBodyContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedColumnsSecondColBodyContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedColumnsSecondColBodyContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedColumnsSecondColBodyContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyFixedColumnsSecondColBodyContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedColumnsSecondColBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedColumnsSecondColBodyEventLinkContentFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyFixedColumnsSecondColBodyEventLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedColumnsSecondColBodyEventLinkContentFlagFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedColumnsSecondColBodyEventLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyFixedColumnsSecondColBodyEventLinkContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventThumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnailAlt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyFixedColumnsSecondColBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedColumnsSecondColBodyContentCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedColumnsSecondColBodyCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedColumnsSecondColBodyEventLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyFixedColumnsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headerSection"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyFixedColumnsFirstColBodyFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyFixedColumnsSecondColBodyFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedTabsLayoutFirstHeadingVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedTabsLayoutFirstHeadingBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyFixedTabsLayoutFirstHeadingExpertBlockExpertListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"person"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"peopleURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"skills"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyFixedTabsLayoutFirstHeadingExpertBlockLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedTabsLayoutFirstHeadingExpertBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"expertList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyFixedTabsLayoutFirstHeadingExpertBlockExpertListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyFixedTabsLayoutFirstHeadingExpertBlockLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockYoutubePlaylistFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videosCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubePlaylist"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockYoutubePlaylistFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedTabsLayoutFirstHeadingCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyFixedTabsLayoutFirstHeadingFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedTabsLayoutFirstHeadingVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedTabsLayoutFirstHeadingBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ExpertBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedTabsLayoutFirstHeadingExpertBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"YoutubePlaylistBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedTabsLayoutFirstHeadingCustomImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedTabsLayoutFirstBodyVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedTabsLayoutFirstBodyBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyFixedTabsLayoutFirstBodyExpertBlockExpertListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"person"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"peopleURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"skills"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyFixedTabsLayoutFirstBodyExpertBlockLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedTabsLayoutFirstBodyExpertBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"expertList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyFixedTabsLayoutFirstBodyExpertBlockExpertListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyFixedTabsLayoutFirstBodyExpertBlockLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockYoutubePlaylistFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videosCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubePlaylist"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockYoutubePlaylistFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedTabsLayoutFirstBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyFixedTabsLayoutFirstBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedTabsLayoutFirstBodyVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedTabsLayoutFirstBodyBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ExpertBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedTabsLayoutFirstBodyExpertBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"YoutubePlaylistBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedTabsLayoutFirstBodyCustomImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedTabsLayoutSecondHeadingVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedTabsLayoutSecondHeadingBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyFixedTabsLayoutSecondHeadingExpertBlockExpertListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"person"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"peopleURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"skills"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyFixedTabsLayoutSecondHeadingExpertBlockLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedTabsLayoutSecondHeadingExpertBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"expertList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyFixedTabsLayoutSecondHeadingExpertBlockExpertListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyFixedTabsLayoutSecondHeadingExpertBlockLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockYoutubePlaylistFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videosCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubePlaylist"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockYoutubePlaylistFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedTabsLayoutSecondHeadingCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyFixedTabsLayoutSecondHeadingFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedTabsLayoutSecondHeadingVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedTabsLayoutSecondHeadingBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ExpertBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedTabsLayoutSecondHeadingExpertBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"YoutubePlaylistBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedTabsLayoutSecondHeadingCustomImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedTabsLayoutSecondBodyVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedTabsLayoutSecondBodyBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyFixedTabsLayoutSecondBodyExpertBlockExpertListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"person"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"peopleURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"skills"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyFixedTabsLayoutSecondBodyExpertBlockLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedTabsLayoutSecondBodyExpertBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"expertList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyFixedTabsLayoutSecondBodyExpertBlockExpertListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyFixedTabsLayoutSecondBodyExpertBlockLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockYoutubePlaylistFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videosCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubePlaylist"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockYoutubePlaylistFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedTabsLayoutSecondBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyFixedTabsLayoutSecondBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedTabsLayoutSecondBodyVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedTabsLayoutSecondBodyBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ExpertBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedTabsLayoutSecondBodyExpertBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"YoutubePlaylistBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedTabsLayoutSecondBodyCustomImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyFixedTabsLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstHeading"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyFixedTabsLayoutFirstHeadingFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyFixedTabsLayoutFirstBodyFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondHeading"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyFixedTabsLayoutSecondHeadingFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyFixedTabsLayoutSecondBodyFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyGoogleMapsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"embedUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"embedWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"embedHeight"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyGridLayoutGridsBlocksLinkContentUtilityButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnIcon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentered"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeTopMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openInNewTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyGridLayoutGridsBlocksLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"UtilityButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyGridLayoutGridsBlocksLinkContentUtilityButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyGridLayoutGridsBlocksFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"image"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relatedImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"linkContent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyGridLayoutGridsBlocksLinkContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyGridLayoutGridsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"gridTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showGridTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centeredGridTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showHeaderDivider"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"offsetGridStart"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"blocks"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyGridLayoutGridsBlocksFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyGridLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"grids"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyGridLayoutGridsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyHeroActionsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"type"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyHeroImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyHeroFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"tagline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"actions"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyHeroActionsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"image"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyHeroImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyHorizontalCardCardListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyHorizontalCardButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyHorizontalCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cardList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyHorizontalCardCardListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"button"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyHorizontalCardButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyInternalCarouselItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyInternalCarouselTechnologiesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyInternalCarouselFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyInternalCarouselItemsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paragraph"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"website"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"technologies"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyInternalCarouselTechnologiesFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caseStudyUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyJoinAsPresenterFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"img"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyJoinGithubFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyJotFormEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"jotFormId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"containerClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyLatestTechBadgesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"userGroupGlobal"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"UserGroupGlobalFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyLatestTechFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"badges"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyLatestTechBadgesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyLocationBlockLocationListLocationFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"locations"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"LocationsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyLocationBlockLocationListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"location"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyLocationBlockLocationListLocationFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyLocationBlockChapelWebsiteFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"URL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyLocationBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"locationList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyLocationBlockLocationListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"chapelWebsite"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyLocationBlockChapelWebsiteFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyNewslettersTableFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headerText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyOrganizerFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImg"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"position"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyPaymentBlockPaymentsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paymentDetails"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PaymentDetailsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyPaymentBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"payments"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyPaymentBlockPaymentsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"footer"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"creditImgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altTxt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyPresenterBlockPresenterListPresenterFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"presenter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PresenterFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyPresenterBlockPresenterListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"presenter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyPresenterBlockPresenterListPresenterFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyPresenterBlockOtherEventFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyPresenterBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"presenterList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyPresenterBlockPresenterListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"otherEvent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyPresenterBlockOtherEventFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyRecurringEventFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"applyLinkRedirect"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"day"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodySectionHeaderFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headerText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyServiceCardsBigCardsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"description"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyServiceCardsSmallCardsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"isExternal"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyServiceCardsLinksFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyServiceCardsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bigCardsLabel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bigCards"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyServiceCardsBigCardsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"smallCardsLabel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"smallCards"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyServiceCardsSmallCardsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"links"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyServiceCardsLinksFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyTableLayoutRowsCellsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cellValue"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyTableLayoutRowsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cells"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyTableLayoutRowsCellsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"isHeader"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyTableLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"tableStyle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColBold"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headers"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"rows"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyTableLayoutRowsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyTestimonialsListExcludedCategoriesCategoryNameFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"testimonialCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"TestimonialCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyTestimonialsListExcludedCategoriesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"categoryName"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyTestimonialsListExcludedCategoriesCategoryNameFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyTestimonialsListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"excludedCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyTestimonialsListExcludedCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyTrainingInformationTrainingInformationItemsBodyVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyTrainingInformationTrainingInformationItemsBodyRecurringEventFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"applyLinkRedirect"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"day"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyTrainingInformationTrainingInformationItemsBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyTrainingInformationTrainingInformationItemsBodyVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"RecurringEvent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyTrainingInformationTrainingInformationItemsBodyRecurringEventFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyTrainingInformationTrainingInformationItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"body"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyTrainingInformationTrainingInformationItemsBodyFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyTrainingInformationFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"trainingInformationItems"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyTrainingInformationTrainingInformationItemsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyTrainingLearningOutcomeListItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyTrainingLearningOutcomeFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"listItems"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyTrainingLearningOutcomeListItemsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyTweetEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyUpcomingEventsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"numberOfEvents"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyUtilityButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnIcon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentered"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeTopMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openInNewTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyVerticalImageLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imageSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imageLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"message"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyInlineJotFormFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"jotFormId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"additionalClasses"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Employment_bodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"AboutUs"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyAboutUsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Agenda"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyAgendaFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"AgreementForm"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyAgreementFormFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"InterestForm"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyInterestFormFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BuiltOnAzure"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyBuiltOnAzureFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Carousel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyCarouselFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Citation"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyCitationFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ClientList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyClientListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ClientLogos"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyClientLogosFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyColorBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorPalette"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyColorPaletteFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyContentCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomDownloadButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyCustomDownloadButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"DomainFromQuery"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyDomainFromQueryFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"DownloadBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyDownloadBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"DynamicColumns"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyDynamicColumnsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventBooking"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyEventBookingFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyEventLinkFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyFlagFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"FixedColumns"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyFixedColumnsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"FixedTabsLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyFixedTabsLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"GoogleMaps"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyGoogleMapsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"GridLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyGridLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Hero"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyHeroFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"HorizontalCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyHorizontalCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"InternalCarousel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyInternalCarouselFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"joinAsPresenter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyJoinAsPresenterFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"joinGithub"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyJoinGithubFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"JotFormEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyJotFormEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"LatestTech"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyLatestTechFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"LocationBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyLocationBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"NewslettersTable"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyNewslettersTableFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"organizer"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyOrganizerFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paymentBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyPaymentBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"PresenterBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyPresenterBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"RecurringEvent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyRecurringEventFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"SectionHeader"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodySectionHeaderFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ServiceCards"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyServiceCardsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TableLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyTableLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TestimonialsList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyTestimonialsListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TrainingInformation"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyTrainingInformationFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TrainingLearningOutcome"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyTrainingLearningOutcomeFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TweetEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyTweetEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"UpcomingEvents"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyUpcomingEventsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"UtilityButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyUtilityButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalImageLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyVerticalImageLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"InlineJotForm"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyInlineJotFormFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBenefitListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"image"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"description"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"linkName"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"linkURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"benefitList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBenefitListFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyAboutUsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showMap"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyAgendaAgendaItemListBodyVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyAgendaAgendaItemListBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyAgendaAgendaItemListBodyVerticalListItemFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyAgendaAgendaItemListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"placeholder"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"body"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyAgendaAgendaItemListBodyFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyAgendaFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"textColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"agendaItemList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyAgendaAgendaItemListFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyAgreementFormFieldsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"id"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"placeholder"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"resizeable"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyAgreementFormFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fields"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyAgreementFormFieldsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyInterestFormFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyBuiltOnAzureFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyCarouselItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openIn"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyCarouselFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyCarouselItemsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"delay"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showOnMobileDevices"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyCitationFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"author"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"article"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyClientListCategoriesCategoryFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"clientCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ClientCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyClientListCategoriesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"category"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyClientListCategoriesCategoryFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyClientListClientsContentUtilityButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnIcon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentered"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeTopMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openInNewTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyClientListClientsContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyClientListClientsContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyClientListClientsContentContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyClientListClientsContentContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyClientListClientsContentContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceClientListClientsContentContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyClientListClientsContentContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceClientListClientsContentContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyClientListClientsContentContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyClientListClientsContentContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyClientListClientsContentContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyClientListClientsContentContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyClientListClientsContentContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyClientListClientsContentContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyClientListClientsContentContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyClientListClientsContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"UtilityButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyClientListClientsContentUtilityButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyClientListClientsContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyClientListClientsContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyClientListClientsContentContentCardFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyClientListClientsCategoriesCategoryFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"clientCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ClientCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyClientListClientsCategoriesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"category"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyClientListClientsCategoriesCategoryFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyClientListClientsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"logo"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"logoUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyClientListClientsContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caseStudyUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"categories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyClientListClientsCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyClientListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"categories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyClientListCategoriesFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"clients"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyClientListClientsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyClientLogosFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyColorPaletteFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyContentContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyContentContentClientLogosFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyContentContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyContentContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyContentContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyContentContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyContentContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyContentContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ClientLogos"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyContentContentClientLogosFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyContentContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyContentContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyContentContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paddingClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"align"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyCustomDownloadButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyDomainFromQueryFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showDomain"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyDownloadBlockDownloadsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"img"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgBackground"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstLinkText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondLinkText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyDownloadBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"downloads"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyDownloadBlockDownloadsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bottomBorder"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyDynamicColumnsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyEventBookingEventListLocationFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"locations"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"LocationsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyEventBookingEventListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"city"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"date"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DatetimeFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bookingURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"location"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyEventBookingEventListLocationFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyEventBookingFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventDurationInDays"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"price"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"discountPrice"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"gstText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"discountNote"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyEventBookingEventListFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyEventLinkContentFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyEventLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyEventLinkContentFlagFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyEventLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyEventLinkContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventThumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnailAlt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedColumnsFirstColBodyContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedColumnsFirstColBodyContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedColumnsFirstColBodyContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyFixedColumnsFirstColBodyContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedColumnsFirstColBodyContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyFixedColumnsFirstColBodyContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedColumnsFirstColBodyContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedColumnsFirstColBodyContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedColumnsFirstColBodyContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedColumnsFirstColBodyContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedColumnsFirstColBodyContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyFixedColumnsFirstColBodyContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedColumnsFirstColBodyContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyFixedColumnsFirstColBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedColumnsFirstColBodyEventLinkContentFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedColumnsFirstColBodyEventLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedColumnsFirstColBodyEventLinkContentFlagFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyFixedColumnsFirstColBodyEventLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedColumnsFirstColBodyEventLinkContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventThumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnailAlt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedColumnsFirstColBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyFixedColumnsFirstColBodyContentCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyFixedColumnsFirstColBodyCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyFixedColumnsFirstColBodyEventLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedColumnsSecondColBodyContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedColumnsSecondColBodyContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedColumnsSecondColBodyContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyFixedColumnsSecondColBodyContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedColumnsSecondColBodyContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyFixedColumnsSecondColBodyContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedColumnsSecondColBodyContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedColumnsSecondColBodyContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedColumnsSecondColBodyContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedColumnsSecondColBodyContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedColumnsSecondColBodyContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyFixedColumnsSecondColBodyContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedColumnsSecondColBodyContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyFixedColumnsSecondColBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedColumnsSecondColBodyEventLinkContentFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedColumnsSecondColBodyEventLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedColumnsSecondColBodyEventLinkContentFlagFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyFixedColumnsSecondColBodyEventLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedColumnsSecondColBodyEventLinkContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventThumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnailAlt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedColumnsSecondColBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyFixedColumnsSecondColBodyContentCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyFixedColumnsSecondColBodyCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyFixedColumnsSecondColBodyEventLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedColumnsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headerSection"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedColumnsFirstColBodyFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedColumnsSecondColBodyFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyFixedTabsLayoutFirstHeadingVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyFixedTabsLayoutFirstHeadingBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedTabsLayoutFirstHeadingExpertBlockExpertListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"person"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"peopleURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"skills"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedTabsLayoutFirstHeadingExpertBlockLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyFixedTabsLayoutFirstHeadingExpertBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"expertList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedTabsLayoutFirstHeadingExpertBlockExpertListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedTabsLayoutFirstHeadingExpertBlockLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockYoutubePlaylistFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videosCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubePlaylist"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockYoutubePlaylistFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyFixedTabsLayoutFirstHeadingCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedTabsLayoutFirstHeadingFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyFixedTabsLayoutFirstHeadingVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyFixedTabsLayoutFirstHeadingBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ExpertBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyFixedTabsLayoutFirstHeadingExpertBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"YoutubePlaylistBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyFixedTabsLayoutFirstHeadingCustomImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyFixedTabsLayoutFirstBodyVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyFixedTabsLayoutFirstBodyBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedTabsLayoutFirstBodyExpertBlockExpertListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"person"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"peopleURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"skills"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedTabsLayoutFirstBodyExpertBlockLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyFixedTabsLayoutFirstBodyExpertBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"expertList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedTabsLayoutFirstBodyExpertBlockExpertListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedTabsLayoutFirstBodyExpertBlockLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockYoutubePlaylistFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videosCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubePlaylist"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockYoutubePlaylistFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyFixedTabsLayoutFirstBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedTabsLayoutFirstBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyFixedTabsLayoutFirstBodyVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyFixedTabsLayoutFirstBodyBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ExpertBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyFixedTabsLayoutFirstBodyExpertBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"YoutubePlaylistBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyFixedTabsLayoutFirstBodyCustomImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyFixedTabsLayoutSecondHeadingVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyFixedTabsLayoutSecondHeadingBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedTabsLayoutSecondHeadingExpertBlockExpertListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"person"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"peopleURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"skills"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedTabsLayoutSecondHeadingExpertBlockLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyFixedTabsLayoutSecondHeadingExpertBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"expertList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedTabsLayoutSecondHeadingExpertBlockExpertListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedTabsLayoutSecondHeadingExpertBlockLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockYoutubePlaylistFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videosCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubePlaylist"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockYoutubePlaylistFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyFixedTabsLayoutSecondHeadingCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedTabsLayoutSecondHeadingFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyFixedTabsLayoutSecondHeadingVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyFixedTabsLayoutSecondHeadingBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ExpertBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyFixedTabsLayoutSecondHeadingExpertBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"YoutubePlaylistBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyFixedTabsLayoutSecondHeadingCustomImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyFixedTabsLayoutSecondBodyVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyFixedTabsLayoutSecondBodyBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedTabsLayoutSecondBodyExpertBlockExpertListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"person"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"peopleURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"skills"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedTabsLayoutSecondBodyExpertBlockLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyFixedTabsLayoutSecondBodyExpertBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"expertList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedTabsLayoutSecondBodyExpertBlockExpertListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedTabsLayoutSecondBodyExpertBlockLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockYoutubePlaylistFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videosCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubePlaylist"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockYoutubePlaylistFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyFixedTabsLayoutSecondBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedTabsLayoutSecondBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyFixedTabsLayoutSecondBodyVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyFixedTabsLayoutSecondBodyBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ExpertBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyFixedTabsLayoutSecondBodyExpertBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"YoutubePlaylistBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyFixedTabsLayoutSecondBodyCustomImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedTabsLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstHeading"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedTabsLayoutFirstHeadingFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedTabsLayoutFirstBodyFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondHeading"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedTabsLayoutSecondHeadingFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedTabsLayoutSecondBodyFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyGoogleMapsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"embedUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"embedWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"embedHeight"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyGridLayoutGridsBlocksLinkContentUtilityButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnIcon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentered"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeTopMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openInNewTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyGridLayoutGridsBlocksLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"UtilityButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyGridLayoutGridsBlocksLinkContentUtilityButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyGridLayoutGridsBlocksFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"image"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relatedImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"linkContent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyGridLayoutGridsBlocksLinkContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyGridLayoutGridsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"gridTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showGridTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centeredGridTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showHeaderDivider"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"offsetGridStart"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"blocks"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyGridLayoutGridsBlocksFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyGridLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"grids"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyGridLayoutGridsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyHeroActionsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"type"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyHeroImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyHeroFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"tagline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"actions"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyHeroActionsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"image"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyHeroImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyHorizontalCardCardListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyHorizontalCardButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyHorizontalCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cardList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyHorizontalCardCardListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"button"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyHorizontalCardButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyInternalCarouselItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyInternalCarouselTechnologiesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyInternalCarouselFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyInternalCarouselItemsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paragraph"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"website"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"technologies"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyInternalCarouselTechnologiesFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caseStudyUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyJoinAsPresenterFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"img"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyJoinGithubFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyJotFormEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"jotFormId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"containerClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyLatestTechBadgesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"userGroupGlobal"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"UserGroupGlobalFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyLatestTechFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"badges"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyLatestTechBadgesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyLocationBlockLocationListLocationFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"locations"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"LocationsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyLocationBlockLocationListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"location"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyLocationBlockLocationListLocationFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyLocationBlockChapelWebsiteFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"URL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyLocationBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"locationList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyLocationBlockLocationListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"chapelWebsite"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyLocationBlockChapelWebsiteFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyNewslettersTableFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headerText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyOrganizerFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImg"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"position"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyPaymentBlockPaymentsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paymentDetails"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PaymentDetailsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyPaymentBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"payments"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyPaymentBlockPaymentsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"footer"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"creditImgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altTxt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyPresenterBlockPresenterListPresenterFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"presenter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PresenterFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyPresenterBlockPresenterListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"presenter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyPresenterBlockPresenterListPresenterFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyPresenterBlockOtherEventFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyPresenterBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"presenterList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyPresenterBlockPresenterListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"otherEvent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyPresenterBlockOtherEventFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyRecurringEventFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"applyLinkRedirect"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"day"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodySectionHeaderFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headerText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyServiceCardsBigCardsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"description"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyServiceCardsSmallCardsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"isExternal"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyServiceCardsLinksFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyServiceCardsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bigCardsLabel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bigCards"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyServiceCardsBigCardsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"smallCardsLabel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"smallCards"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyServiceCardsSmallCardsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"links"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyServiceCardsLinksFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyTableLayoutRowsCellsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cellValue"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyTableLayoutRowsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cells"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyTableLayoutRowsCellsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"isHeader"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyTableLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"tableStyle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColBold"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headers"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"rows"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyTableLayoutRowsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyTestimonialsListExcludedCategoriesCategoryNameFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"testimonialCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"TestimonialCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyTestimonialsListExcludedCategoriesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"categoryName"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyTestimonialsListExcludedCategoriesCategoryNameFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyTestimonialsListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"excludedCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyTestimonialsListExcludedCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyTrainingInformationTrainingInformationItemsBodyVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyTrainingInformationTrainingInformationItemsBodyRecurringEventFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"applyLinkRedirect"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"day"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyTrainingInformationTrainingInformationItemsBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyTrainingInformationTrainingInformationItemsBodyVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"RecurringEvent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyTrainingInformationTrainingInformationItemsBodyRecurringEventFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyTrainingInformationTrainingInformationItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"body"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyTrainingInformationTrainingInformationItemsBodyFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyTrainingInformationFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"trainingInformationItems"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyTrainingInformationTrainingInformationItemsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyTrainingLearningOutcomeListItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyTrainingLearningOutcomeFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"listItems"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyTrainingLearningOutcomeListItemsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyTweetEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyUpcomingEventsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"numberOfEvents"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyUtilityButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnIcon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentered"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeTopMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openInNewTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyVerticalImageLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imageSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imageLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"message"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyInlineJotFormFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"jotFormId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"additionalClasses"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentBenefitsBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"AboutUs"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyAboutUsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Agenda"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyAgendaFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"AgreementForm"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyAgreementFormFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"InterestForm"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyInterestFormFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BuiltOnAzure"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyBuiltOnAzureFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Carousel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyCarouselFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Citation"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyCitationFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ClientList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyClientListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ClientLogos"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyClientLogosFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyColorBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorPalette"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyColorPaletteFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyContentCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomDownloadButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyCustomDownloadButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"DomainFromQuery"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyDomainFromQueryFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"DownloadBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyDownloadBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"DynamicColumns"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyDynamicColumnsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventBooking"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyEventBookingFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyEventLinkFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyFlagFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"FixedColumns"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedColumnsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"FixedTabsLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyFixedTabsLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"GoogleMaps"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyGoogleMapsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"GridLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyGridLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Hero"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyHeroFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"HorizontalCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyHorizontalCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"InternalCarousel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyInternalCarouselFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"joinAsPresenter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyJoinAsPresenterFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"joinGithub"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyJoinGithubFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"JotFormEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyJotFormEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"LatestTech"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyLatestTechFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"LocationBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyLocationBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"NewslettersTable"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyNewslettersTableFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"organizer"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyOrganizerFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paymentBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyPaymentBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"PresenterBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyPresenterBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"RecurringEvent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyRecurringEventFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"SectionHeader"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodySectionHeaderFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ServiceCards"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyServiceCardsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TableLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyTableLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TestimonialsList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyTestimonialsListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TrainingInformation"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyTrainingInformationFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TrainingLearningOutcome"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyTrainingLearningOutcomeFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TweetEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyTweetEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"UpcomingEvents"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyUpcomingEventsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"UtilityButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyUtilityButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalImageLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyVerticalImageLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"InlineJotForm"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyInlineJotFormFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyAboutUsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showMap"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyAgendaAgendaItemListBodyVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyAgendaAgendaItemListBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyAgendaAgendaItemListBodyVerticalListItemFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyAgendaAgendaItemListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"placeholder"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"body"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyAgendaAgendaItemListBodyFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyAgendaFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"textColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"agendaItemList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyAgendaAgendaItemListFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyAgreementFormFieldsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"id"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"placeholder"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"resizeable"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyAgreementFormFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fields"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyAgreementFormFieldsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyInterestFormFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyBuiltOnAzureFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyCarouselItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openIn"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyCarouselFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyCarouselItemsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"delay"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showOnMobileDevices"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyCitationFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"author"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"article"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyClientListCategoriesCategoryFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"clientCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ClientCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyClientListCategoriesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"category"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyClientListCategoriesCategoryFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyClientListClientsContentUtilityButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnIcon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentered"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeTopMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openInNewTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyClientListClientsContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyClientListClientsContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceClientListClientsContentContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceClientListClientsContentContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceClientListClientsContentContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexSidebarBodyClientListClientsContentContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceClientListClientsContentContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexSidebarBodyClientListClientsContentContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyClientListClientsContentContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceClientListClientsContentContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceClientListClientsContentContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceClientListClientsContentContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceClientListClientsContentContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyClientListClientsContentContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyClientListClientsContentContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyClientListClientsContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"UtilityButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyClientListClientsContentUtilityButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyClientListClientsContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyClientListClientsContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyClientListClientsContentContentCardFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyClientListClientsCategoriesCategoryFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"clientCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ClientCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyClientListClientsCategoriesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"category"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyClientListClientsCategoriesCategoryFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyClientListClientsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"logo"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"logoUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyClientListClientsContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caseStudyUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"categories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyClientListClientsCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyClientListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"categories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyClientListCategoriesFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"clients"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyClientListClientsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyClientLogosFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyColorPaletteFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyContentContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyContentContentClientLogosFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyContentContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyContentContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyContentContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyContentContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyContentContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyContentContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ClientLogos"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyContentContentClientLogosFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyContentContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyContentContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyContentContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paddingClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"align"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyCustomDownloadButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyDomainFromQueryFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showDomain"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyDownloadBlockDownloadsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"img"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgBackground"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstLinkText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondLinkText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyDownloadBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"downloads"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyDownloadBlockDownloadsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bottomBorder"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyDynamicColumnsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyEventBookingEventListLocationFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"locations"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"LocationsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyEventBookingEventListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"city"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"date"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DatetimeFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bookingURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"location"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyEventBookingEventListLocationFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyEventBookingFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventDurationInDays"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"price"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"discountPrice"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"gstText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"discountNote"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyEventBookingEventListFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyEventLinkContentFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyEventLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyEventLinkContentFlagFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyEventLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyEventLinkContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventThumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnailAlt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyFixedColumnsFirstColBodyContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyFixedColumnsFirstColBodyContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyFixedColumnsFirstColBodyContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceFixedColumnsFirstColBodyContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyFixedColumnsFirstColBodyContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceFixedColumnsFirstColBodyContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedColumnsFirstColBodyContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyFixedColumnsFirstColBodyContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyFixedColumnsFirstColBodyContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyFixedColumnsFirstColBodyContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyFixedColumnsFirstColBodyContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedColumnsFirstColBodyContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedColumnsFirstColBodyContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedColumnsFirstColBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyFixedColumnsFirstColBodyEventLinkContentFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedColumnsFirstColBodyEventLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyFixedColumnsFirstColBodyEventLinkContentFlagFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedColumnsFirstColBodyEventLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedColumnsFirstColBodyEventLinkContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventThumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnailAlt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyFixedColumnsFirstColBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedColumnsFirstColBodyContentCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedColumnsFirstColBodyCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedColumnsFirstColBodyEventLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyFixedColumnsSecondColBodyContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyFixedColumnsSecondColBodyContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyFixedColumnsSecondColBodyContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceFixedColumnsSecondColBodyContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyFixedColumnsSecondColBodyContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceFixedColumnsSecondColBodyContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedColumnsSecondColBodyContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyFixedColumnsSecondColBodyContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyFixedColumnsSecondColBodyContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyFixedColumnsSecondColBodyContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyFixedColumnsSecondColBodyContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedColumnsSecondColBodyContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedColumnsSecondColBodyContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedColumnsSecondColBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyFixedColumnsSecondColBodyEventLinkContentFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedColumnsSecondColBodyEventLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyFixedColumnsSecondColBodyEventLinkContentFlagFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedColumnsSecondColBodyEventLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedColumnsSecondColBodyEventLinkContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventThumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnailAlt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyFixedColumnsSecondColBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedColumnsSecondColBodyContentCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedColumnsSecondColBodyCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedColumnsSecondColBodyEventLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyFixedColumnsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headerSection"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyFixedColumnsFirstColBodyFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyFixedColumnsSecondColBodyFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedTabsLayoutFirstHeadingVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedTabsLayoutFirstHeadingBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedTabsLayoutFirstHeadingExpertBlockExpertListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"person"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"peopleURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"skills"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedTabsLayoutFirstHeadingExpertBlockLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedTabsLayoutFirstHeadingExpertBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"expertList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedTabsLayoutFirstHeadingExpertBlockExpertListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedTabsLayoutFirstHeadingExpertBlockLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockYoutubePlaylistFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videosCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubePlaylist"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockYoutubePlaylistFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedTabsLayoutFirstHeadingCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyFixedTabsLayoutFirstHeadingFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedTabsLayoutFirstHeadingVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedTabsLayoutFirstHeadingBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ExpertBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedTabsLayoutFirstHeadingExpertBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"YoutubePlaylistBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedTabsLayoutFirstHeadingCustomImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedTabsLayoutFirstBodyVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedTabsLayoutFirstBodyBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedTabsLayoutFirstBodyExpertBlockExpertListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"person"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"peopleURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"skills"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedTabsLayoutFirstBodyExpertBlockLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedTabsLayoutFirstBodyExpertBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"expertList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedTabsLayoutFirstBodyExpertBlockExpertListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedTabsLayoutFirstBodyExpertBlockLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockYoutubePlaylistFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videosCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubePlaylist"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockYoutubePlaylistFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedTabsLayoutFirstBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyFixedTabsLayoutFirstBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedTabsLayoutFirstBodyVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedTabsLayoutFirstBodyBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ExpertBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedTabsLayoutFirstBodyExpertBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"YoutubePlaylistBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedTabsLayoutFirstBodyCustomImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedTabsLayoutSecondHeadingVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedTabsLayoutSecondHeadingBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedTabsLayoutSecondHeadingExpertBlockExpertListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"person"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"peopleURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"skills"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedTabsLayoutSecondHeadingExpertBlockLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedTabsLayoutSecondHeadingExpertBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"expertList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedTabsLayoutSecondHeadingExpertBlockExpertListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedTabsLayoutSecondHeadingExpertBlockLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockYoutubePlaylistFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videosCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubePlaylist"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockYoutubePlaylistFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedTabsLayoutSecondHeadingCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyFixedTabsLayoutSecondHeadingFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedTabsLayoutSecondHeadingVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedTabsLayoutSecondHeadingBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ExpertBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedTabsLayoutSecondHeadingExpertBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"YoutubePlaylistBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedTabsLayoutSecondHeadingCustomImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedTabsLayoutSecondBodyVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedTabsLayoutSecondBodyBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedTabsLayoutSecondBodyExpertBlockExpertListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"person"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"peopleURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"skills"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedTabsLayoutSecondBodyExpertBlockLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedTabsLayoutSecondBodyExpertBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"expertList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedTabsLayoutSecondBodyExpertBlockExpertListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedTabsLayoutSecondBodyExpertBlockLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockYoutubePlaylistFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videosCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubePlaylist"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockYoutubePlaylistFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedTabsLayoutSecondBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyFixedTabsLayoutSecondBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedTabsLayoutSecondBodyVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedTabsLayoutSecondBodyBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ExpertBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedTabsLayoutSecondBodyExpertBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"YoutubePlaylistBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedTabsLayoutSecondBodyCustomImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyFixedTabsLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstHeading"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyFixedTabsLayoutFirstHeadingFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyFixedTabsLayoutFirstBodyFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondHeading"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyFixedTabsLayoutSecondHeadingFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyFixedTabsLayoutSecondBodyFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyGoogleMapsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"embedUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"embedWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"embedHeight"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyGridLayoutGridsBlocksLinkContentUtilityButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnIcon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentered"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeTopMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openInNewTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyGridLayoutGridsBlocksLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"UtilityButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyGridLayoutGridsBlocksLinkContentUtilityButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyGridLayoutGridsBlocksFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"image"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relatedImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"linkContent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyGridLayoutGridsBlocksLinkContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyGridLayoutGridsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"gridTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showGridTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centeredGridTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showHeaderDivider"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"offsetGridStart"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"blocks"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyGridLayoutGridsBlocksFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyGridLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"grids"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyGridLayoutGridsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyHeroActionsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"type"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyHeroImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyHeroFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"tagline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"actions"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyHeroActionsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"image"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyHeroImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyHorizontalCardCardListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyHorizontalCardButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyHorizontalCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cardList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyHorizontalCardCardListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"button"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyHorizontalCardButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyInternalCarouselItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyInternalCarouselTechnologiesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyInternalCarouselFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyInternalCarouselItemsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paragraph"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"website"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"technologies"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyInternalCarouselTechnologiesFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caseStudyUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyJoinAsPresenterFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"img"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyJoinGithubFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyJotFormEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"jotFormId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"containerClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyLatestTechBadgesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"userGroupGlobal"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"UserGroupGlobalFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyLatestTechFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"badges"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyLatestTechBadgesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyLocationBlockLocationListLocationFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"locations"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"LocationsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyLocationBlockLocationListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"location"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyLocationBlockLocationListLocationFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyLocationBlockChapelWebsiteFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"URL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyLocationBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"locationList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyLocationBlockLocationListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"chapelWebsite"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyLocationBlockChapelWebsiteFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyNewslettersTableFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headerText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyOrganizerFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImg"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"position"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyPaymentBlockPaymentsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paymentDetails"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PaymentDetailsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyPaymentBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"payments"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyPaymentBlockPaymentsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"footer"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"creditImgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altTxt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyPresenterBlockPresenterListPresenterFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"presenter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PresenterFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyPresenterBlockPresenterListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"presenter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyPresenterBlockPresenterListPresenterFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyPresenterBlockOtherEventFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyPresenterBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"presenterList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyPresenterBlockPresenterListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"otherEvent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyPresenterBlockOtherEventFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyRecurringEventFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"applyLinkRedirect"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"day"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodySectionHeaderFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headerText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyServiceCardsBigCardsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"description"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyServiceCardsSmallCardsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"isExternal"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyServiceCardsLinksFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyServiceCardsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bigCardsLabel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bigCards"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyServiceCardsBigCardsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"smallCardsLabel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"smallCards"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyServiceCardsSmallCardsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"links"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyServiceCardsLinksFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyTableLayoutRowsCellsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cellValue"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyTableLayoutRowsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cells"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyTableLayoutRowsCellsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"isHeader"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyTableLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"tableStyle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColBold"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headers"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"rows"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyTableLayoutRowsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyTestimonialsListExcludedCategoriesCategoryNameFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"testimonialCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"TestimonialCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyTestimonialsListExcludedCategoriesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"categoryName"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyTestimonialsListExcludedCategoriesCategoryNameFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyTestimonialsListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"excludedCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyTestimonialsListExcludedCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyTrainingInformationTrainingInformationItemsBodyVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyTrainingInformationTrainingInformationItemsBodyRecurringEventFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"applyLinkRedirect"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"day"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyTrainingInformationTrainingInformationItemsBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyTrainingInformationTrainingInformationItemsBodyVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"RecurringEvent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyTrainingInformationTrainingInformationItemsBodyRecurringEventFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyTrainingInformationTrainingInformationItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"body"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyTrainingInformationTrainingInformationItemsBodyFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyTrainingInformationFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"trainingInformationItems"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyTrainingInformationTrainingInformationItemsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyTrainingLearningOutcomeListItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyTrainingLearningOutcomeFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"listItems"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyTrainingLearningOutcomeListItemsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyTweetEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyUpcomingEventsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"numberOfEvents"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyUtilityButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnIcon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentered"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeTopMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openInNewTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyVerticalImageLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imageSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imageLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"message"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyInlineJotFormFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"jotFormId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"additionalClasses"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentAfterBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"AboutUs"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyAboutUsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Agenda"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyAgendaFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"AgreementForm"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyAgreementFormFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"InterestForm"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyInterestFormFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BuiltOnAzure"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyBuiltOnAzureFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Carousel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyCarouselFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Citation"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyCitationFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ClientList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyClientListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ClientLogos"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyClientLogosFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyColorBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorPalette"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyColorPaletteFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyContentCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomDownloadButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyCustomDownloadButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"DomainFromQuery"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyDomainFromQueryFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"DownloadBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyDownloadBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"DynamicColumns"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyDynamicColumnsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventBooking"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyEventBookingFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyEventLinkFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyFlagFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"FixedColumns"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyFixedColumnsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"FixedTabsLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyFixedTabsLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"GoogleMaps"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyGoogleMapsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"GridLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyGridLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Hero"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyHeroFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"HorizontalCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyHorizontalCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"InternalCarousel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyInternalCarouselFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"joinAsPresenter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyJoinAsPresenterFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"joinGithub"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyJoinGithubFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"JotFormEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyJotFormEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"LatestTech"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyLatestTechFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"LocationBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyLocationBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"NewslettersTable"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyNewslettersTableFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"organizer"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyOrganizerFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paymentBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyPaymentBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"PresenterBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyPresenterBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"RecurringEvent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyRecurringEventFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"SectionHeader"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodySectionHeaderFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ServiceCards"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyServiceCardsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TableLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyTableLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TestimonialsList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyTestimonialsListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TrainingInformation"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyTrainingInformationFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TrainingLearningOutcome"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyTrainingLearningOutcomeFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TweetEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyTweetEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"UpcomingEvents"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyUpcomingEventsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"UtilityButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyUtilityButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalImageLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyVerticalImageLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"InlineJotForm"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyInlineJotFormFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyAboutUsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showMap"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyAgendaAgendaItemListBodyVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyAgendaAgendaItemListBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyAgendaAgendaItemListBodyVerticalListItemFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyAgendaAgendaItemListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"placeholder"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"body"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyAgendaAgendaItemListBodyFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyAgendaFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"textColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"agendaItemList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyAgendaAgendaItemListFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyAgreementFormFieldsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"id"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"placeholder"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"resizeable"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyAgreementFormFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fields"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyAgreementFormFieldsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyInterestFormFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyBuiltOnAzureFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyCarouselItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openIn"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyCarouselFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyCarouselItemsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"delay"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showOnMobileDevices"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyCitationFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"author"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"article"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyClientListCategoriesCategoryFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"clientCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ClientCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyClientListCategoriesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"category"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyClientListCategoriesCategoryFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyClientListClientsContentUtilityButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnIcon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentered"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeTopMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openInNewTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyClientListClientsContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyClientListClientsContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexSidebarBodyClientListClientsContentContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexSidebarBodyClientListClientsContentContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexSidebarBodyClientListClientsContentContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexAfterEventsClientListClientsContentContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexSidebarBodyClientListClientsContentContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexAfterEventsClientListClientsContentContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceClientListClientsContentContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexSidebarBodyClientListClientsContentContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexSidebarBodyClientListClientsContentContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexSidebarBodyClientListClientsContentContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexSidebarBodyClientListClientsContentContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyClientListClientsContentContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceClientListClientsContentContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyClientListClientsContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"UtilityButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyClientListClientsContentUtilityButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyClientListClientsContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyClientListClientsContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyClientListClientsContentContentCardFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyClientListClientsCategoriesCategoryFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"clientCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ClientCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyClientListClientsCategoriesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"category"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyClientListClientsCategoriesCategoryFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyClientListClientsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"logo"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"logoUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyClientListClientsContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caseStudyUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"categories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyClientListClientsCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyClientListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"categories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyClientListCategoriesFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"clients"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyClientListClientsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyClientLogosFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyColorPaletteFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyContentContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyContentContentClientLogosFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyContentContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyContentContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyContentContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyContentContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyContentContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyContentContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ClientLogos"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyContentContentClientLogosFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyContentContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyContentContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyContentContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paddingClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"align"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyCustomDownloadButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyDomainFromQueryFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showDomain"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyDownloadBlockDownloadsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"img"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgBackground"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstLinkText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondLinkText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyDownloadBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"downloads"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyDownloadBlockDownloadsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bottomBorder"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyDynamicColumnsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyEventBookingEventListLocationFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"locations"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"LocationsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyEventBookingEventListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"city"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"date"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DatetimeFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bookingURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"location"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyEventBookingEventListLocationFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyEventBookingFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventDurationInDays"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"price"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"discountPrice"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"gstText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"discountNote"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyEventBookingEventListFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyEventLinkContentFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyEventLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyEventLinkContentFlagFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyEventLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyEventLinkContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventThumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnailAlt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceFixedColumnsFirstColBodyContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceFixedColumnsFirstColBodyContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceFixedColumnsFirstColBodyContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexSidebarBodyFixedColumnsFirstColBodyContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceFixedColumnsFirstColBodyContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexSidebarBodyFixedColumnsFirstColBodyContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyFixedColumnsFirstColBodyContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceFixedColumnsFirstColBodyContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceFixedColumnsFirstColBodyContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceFixedColumnsFirstColBodyContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceFixedColumnsFirstColBodyContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedColumnsFirstColBodyContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyFixedColumnsFirstColBodyContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedColumnsFirstColBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceFixedColumnsFirstColBodyEventLinkContentFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyFixedColumnsFirstColBodyEventLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceFixedColumnsFirstColBodyEventLinkContentFlagFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedColumnsFirstColBodyEventLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyFixedColumnsFirstColBodyEventLinkContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventThumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnailAlt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedColumnsFirstColBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedColumnsFirstColBodyContentCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedColumnsFirstColBodyCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedColumnsFirstColBodyEventLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceFixedColumnsSecondColBodyContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceFixedColumnsSecondColBodyContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceFixedColumnsSecondColBodyContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexSidebarBodyFixedColumnsSecondColBodyContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceFixedColumnsSecondColBodyContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexSidebarBodyFixedColumnsSecondColBodyContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyFixedColumnsSecondColBodyContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceFixedColumnsSecondColBodyContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceFixedColumnsSecondColBodyContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceFixedColumnsSecondColBodyContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceFixedColumnsSecondColBodyContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedColumnsSecondColBodyContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyFixedColumnsSecondColBodyContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedColumnsSecondColBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceFixedColumnsSecondColBodyEventLinkContentFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyFixedColumnsSecondColBodyEventLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceFixedColumnsSecondColBodyEventLinkContentFlagFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedColumnsSecondColBodyEventLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyFixedColumnsSecondColBodyEventLinkContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventThumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnailAlt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedColumnsSecondColBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedColumnsSecondColBodyContentCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedColumnsSecondColBodyCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedColumnsSecondColBodyEventLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedColumnsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headerSection"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedColumnsFirstColBodyFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedColumnsSecondColBodyFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedTabsLayoutFirstHeadingVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedTabsLayoutFirstHeadingBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyFixedTabsLayoutFirstHeadingExpertBlockExpertListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"person"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"peopleURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"skills"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyFixedTabsLayoutFirstHeadingExpertBlockLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedTabsLayoutFirstHeadingExpertBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"expertList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyFixedTabsLayoutFirstHeadingExpertBlockExpertListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyFixedTabsLayoutFirstHeadingExpertBlockLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceFixedTabsLayoutFirstHeadingYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockYoutubePlaylistFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videosCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceFixedTabsLayoutFirstHeadingYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubePlaylist"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockYoutubePlaylistFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedTabsLayoutFirstHeadingCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedTabsLayoutFirstHeadingFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedTabsLayoutFirstHeadingVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedTabsLayoutFirstHeadingBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ExpertBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedTabsLayoutFirstHeadingExpertBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"YoutubePlaylistBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedTabsLayoutFirstHeadingCustomImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedTabsLayoutFirstBodyVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedTabsLayoutFirstBodyBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyFixedTabsLayoutFirstBodyExpertBlockExpertListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"person"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"peopleURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"skills"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyFixedTabsLayoutFirstBodyExpertBlockLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedTabsLayoutFirstBodyExpertBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"expertList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyFixedTabsLayoutFirstBodyExpertBlockExpertListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyFixedTabsLayoutFirstBodyExpertBlockLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceFixedTabsLayoutFirstBodyYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockYoutubePlaylistFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videosCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceFixedTabsLayoutFirstBodyYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubePlaylist"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockYoutubePlaylistFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedTabsLayoutFirstBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedTabsLayoutFirstBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedTabsLayoutFirstBodyVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedTabsLayoutFirstBodyBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ExpertBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedTabsLayoutFirstBodyExpertBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"YoutubePlaylistBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedTabsLayoutFirstBodyCustomImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedTabsLayoutSecondHeadingVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedTabsLayoutSecondHeadingBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyFixedTabsLayoutSecondHeadingExpertBlockExpertListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"person"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"peopleURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"skills"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyFixedTabsLayoutSecondHeadingExpertBlockLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedTabsLayoutSecondHeadingExpertBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"expertList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyFixedTabsLayoutSecondHeadingExpertBlockExpertListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyFixedTabsLayoutSecondHeadingExpertBlockLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceFixedTabsLayoutSecondHeadingYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockYoutubePlaylistFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videosCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceFixedTabsLayoutSecondHeadingYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubePlaylist"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockYoutubePlaylistFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedTabsLayoutSecondHeadingCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedTabsLayoutSecondHeadingFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedTabsLayoutSecondHeadingVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedTabsLayoutSecondHeadingBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ExpertBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedTabsLayoutSecondHeadingExpertBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"YoutubePlaylistBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedTabsLayoutSecondHeadingCustomImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedTabsLayoutSecondBodyVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedTabsLayoutSecondBodyBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyFixedTabsLayoutSecondBodyExpertBlockExpertListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"person"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"peopleURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"skills"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyFixedTabsLayoutSecondBodyExpertBlockLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedTabsLayoutSecondBodyExpertBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"expertList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyFixedTabsLayoutSecondBodyExpertBlockExpertListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyFixedTabsLayoutSecondBodyExpertBlockLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceFixedTabsLayoutSecondBodyYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockYoutubePlaylistFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videosCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceFixedTabsLayoutSecondBodyYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubePlaylist"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockYoutubePlaylistFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedTabsLayoutSecondBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedTabsLayoutSecondBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedTabsLayoutSecondBodyVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedTabsLayoutSecondBodyBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ExpertBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedTabsLayoutSecondBodyExpertBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"YoutubePlaylistBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedTabsLayoutSecondBodyCustomImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedTabsLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstHeading"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedTabsLayoutFirstHeadingFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedTabsLayoutFirstBodyFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondHeading"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedTabsLayoutSecondHeadingFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedTabsLayoutSecondBodyFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyGoogleMapsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"embedUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"embedWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"embedHeight"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceGridLayoutGridsBlocksLinkContentUtilityButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnIcon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentered"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeTopMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openInNewTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyGridLayoutGridsBlocksLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"UtilityButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceGridLayoutGridsBlocksLinkContentUtilityButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyGridLayoutGridsBlocksFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"image"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relatedImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"linkContent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyGridLayoutGridsBlocksLinkContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyGridLayoutGridsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"gridTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showGridTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centeredGridTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showHeaderDivider"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"offsetGridStart"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"blocks"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyGridLayoutGridsBlocksFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyGridLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"grids"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyGridLayoutGridsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyHeroActionsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"type"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyHeroImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyHeroFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"tagline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"actions"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyHeroActionsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"image"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyHeroImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyHorizontalCardCardListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyHorizontalCardButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyHorizontalCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cardList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyHorizontalCardCardListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"button"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyHorizontalCardButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyInternalCarouselItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyInternalCarouselTechnologiesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyInternalCarouselFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyInternalCarouselItemsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paragraph"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"website"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"technologies"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyInternalCarouselTechnologiesFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caseStudyUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyJoinAsPresenterFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"img"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyJoinGithubFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyJotFormEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"jotFormId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"containerClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyLatestTechBadgesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"userGroupGlobal"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"UserGroupGlobalFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyLatestTechFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"badges"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyLatestTechBadgesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyLocationBlockLocationListLocationFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"locations"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"LocationsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyLocationBlockLocationListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"location"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyLocationBlockLocationListLocationFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyLocationBlockChapelWebsiteFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"URL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyLocationBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"locationList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyLocationBlockLocationListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"chapelWebsite"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyLocationBlockChapelWebsiteFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyNewslettersTableFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headerText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyOrganizerFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImg"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"position"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyPaymentBlockPaymentsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paymentDetails"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PaymentDetailsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyPaymentBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"payments"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyPaymentBlockPaymentsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"footer"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"creditImgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altTxt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyPresenterBlockPresenterListPresenterFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"presenter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PresenterFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyPresenterBlockPresenterListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"presenter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyPresenterBlockPresenterListPresenterFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyPresenterBlockOtherEventFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyPresenterBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"presenterList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyPresenterBlockPresenterListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"otherEvent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyPresenterBlockOtherEventFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyRecurringEventFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"applyLinkRedirect"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"day"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodySectionHeaderFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headerText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyServiceCardsBigCardsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"description"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyServiceCardsSmallCardsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"isExternal"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyServiceCardsLinksFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyServiceCardsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bigCardsLabel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bigCards"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyServiceCardsBigCardsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"smallCardsLabel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"smallCards"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyServiceCardsSmallCardsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"links"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyServiceCardsLinksFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyTableLayoutRowsCellsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cellValue"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyTableLayoutRowsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cells"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyTableLayoutRowsCellsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"isHeader"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyTableLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"tableStyle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColBold"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headers"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"rows"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyTableLayoutRowsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyTestimonialsListExcludedCategoriesCategoryNameFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"testimonialCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"TestimonialCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyTestimonialsListExcludedCategoriesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"categoryName"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyTestimonialsListExcludedCategoriesCategoryNameFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyTestimonialsListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"excludedCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyTestimonialsListExcludedCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyTrainingInformationTrainingInformationItemsBodyVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyTrainingInformationTrainingInformationItemsBodyRecurringEventFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"applyLinkRedirect"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"day"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyTrainingInformationTrainingInformationItemsBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyTrainingInformationTrainingInformationItemsBodyVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"RecurringEvent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyTrainingInformationTrainingInformationItemsBodyRecurringEventFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyTrainingInformationTrainingInformationItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"body"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyTrainingInformationTrainingInformationItemsBodyFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyTrainingInformationFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"trainingInformationItems"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyTrainingInformationTrainingInformationItemsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyTrainingLearningOutcomeListItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyTrainingLearningOutcomeFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"listItems"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyTrainingLearningOutcomeListItemsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyTweetEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyUpcomingEventsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"numberOfEvents"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyUtilityButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnIcon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentered"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeTopMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openInNewTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyVerticalImageLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imageSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imageLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"message"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyInlineJotFormFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"jotFormId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"additionalClasses"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"AboutUs"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyAboutUsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Agenda"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyAgendaFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"AgreementForm"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyAgreementFormFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"InterestForm"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyInterestFormFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BuiltOnAzure"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyBuiltOnAzureFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Carousel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyCarouselFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Citation"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyCitationFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ClientList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyClientListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ClientLogos"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyClientLogosFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyColorBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorPalette"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyColorPaletteFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyContentCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomDownloadButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyCustomDownloadButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"DomainFromQuery"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyDomainFromQueryFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"DownloadBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyDownloadBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"DynamicColumns"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyDynamicColumnsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventBooking"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyEventBookingFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyEventLinkFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFlagFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"FixedColumns"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedColumnsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"FixedTabsLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFixedTabsLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"GoogleMaps"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyGoogleMapsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"GridLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyGridLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Hero"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyHeroFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"HorizontalCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyHorizontalCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"InternalCarousel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyInternalCarouselFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"joinAsPresenter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyJoinAsPresenterFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"joinGithub"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyJoinGithubFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"JotFormEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyJotFormEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"LatestTech"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyLatestTechFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"LocationBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyLocationBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"NewslettersTable"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyNewslettersTableFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"organizer"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyOrganizerFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paymentBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyPaymentBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"PresenterBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyPresenterBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"RecurringEvent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyRecurringEventFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"SectionHeader"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodySectionHeaderFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ServiceCards"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyServiceCardsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TableLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyTableLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TestimonialsList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyTestimonialsListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TrainingInformation"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyTrainingInformationFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TrainingLearningOutcome"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyTrainingLearningOutcomeFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TweetEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyTweetEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"UpcomingEvents"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyUpcomingEventsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"UtilityButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyUtilityButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalImageLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyVerticalImageLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"InlineJotForm"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyInlineJotFormFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesOpportunityRefFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"opportunities"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"OpportunitiesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentOpportunitiesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"opportunityRef"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesOpportunityRefFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyAboutUsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showMap"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceAgendaAgendaItemListBodyVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyAgendaAgendaItemListBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceAgendaAgendaItemListBodyVerticalListItemFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyAgendaAgendaItemListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"placeholder"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"body"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyAgendaAgendaItemListBodyFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyAgendaFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"textColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"agendaItemList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyAgendaAgendaItemListFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyAgreementFormFieldsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"id"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"placeholder"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"resizeable"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyAgreementFormFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fields"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyAgreementFormFieldsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyInterestFormFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyBuiltOnAzureFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyCarouselItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openIn"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyCarouselFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyCarouselItemsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"delay"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showOnMobileDevices"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyCitationFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"author"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"article"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyClientListCategoriesCategoryFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"clientCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ClientCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyClientListCategoriesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"category"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyClientListCategoriesCategoryFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceClientListClientsContentUtilityButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnIcon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentered"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeTopMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openInNewTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceClientListClientsContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceClientListClientsContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexAfterEventsClientListClientsContentContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexAfterEventsClientListClientsContentContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexAfterEventsClientListClientsContentContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Events_bodyClientListClientsContentContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexAfterEventsClientListClientsContentContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Events_bodyClientListClientsContentContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexSidebarBodyClientListClientsContentContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexAfterEventsClientListClientsContentContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexAfterEventsClientListClientsContentContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexAfterEventsClientListClientsContentContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexAfterEventsClientListClientsContentContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceClientListClientsContentContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexSidebarBodyClientListClientsContentContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyClientListClientsContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"UtilityButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceClientListClientsContentUtilityButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceClientListClientsContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceClientListClientsContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceClientListClientsContentContentCardFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceClientListClientsCategoriesCategoryFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"clientCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ClientCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyClientListClientsCategoriesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"category"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceClientListClientsCategoriesCategoryFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyClientListClientsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"logo"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"logoUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyClientListClientsContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caseStudyUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"categories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyClientListClientsCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyClientListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"categories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyClientListCategoriesFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"clients"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyClientListClientsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyClientLogosFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyColorPaletteFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyContentContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyContentContentClientLogosFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyContentContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceContentContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyContentContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceContentContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyContentContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyContentContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ClientLogos"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyContentContentClientLogosFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyContentContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyContentContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyContentContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paddingClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"align"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyCustomDownloadButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyDomainFromQueryFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showDomain"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyDownloadBlockDownloadsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"img"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgBackground"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstLinkText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondLinkText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyDownloadBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"downloads"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyDownloadBlockDownloadsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bottomBorder"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyDynamicColumnsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyEventBookingEventListLocationFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"locations"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"LocationsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyEventBookingEventListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"city"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"date"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DatetimeFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bookingURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"location"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyEventBookingEventListLocationFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyEventBookingFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventDurationInDays"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"price"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"discountPrice"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"gstText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"discountNote"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyEventBookingEventListFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyEventLinkContentFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyEventLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyEventLinkContentFlagFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyEventLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyEventLinkContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventThumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnailAlt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexSidebarBodyFixedColumnsFirstColBodyContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexSidebarBodyFixedColumnsFirstColBodyContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexSidebarBodyFixedColumnsFirstColBodyContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexAfterEventsFixedColumnsFirstColBodyContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexSidebarBodyFixedColumnsFirstColBodyContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexAfterEventsFixedColumnsFirstColBodyContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceFixedColumnsFirstColBodyContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexSidebarBodyFixedColumnsFirstColBodyContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexSidebarBodyFixedColumnsFirstColBodyContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexSidebarBodyFixedColumnsFirstColBodyContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexSidebarBodyFixedColumnsFirstColBodyContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyFixedColumnsFirstColBodyContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceFixedColumnsFirstColBodyContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyFixedColumnsFirstColBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexSidebarBodyFixedColumnsFirstColBodyEventLinkContentFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceFixedColumnsFirstColBodyEventLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexSidebarBodyFixedColumnsFirstColBodyEventLinkContentFlagFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyFixedColumnsFirstColBodyEventLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceFixedColumnsFirstColBodyEventLinkContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventThumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnailAlt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedColumnsFirstColBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyFixedColumnsFirstColBodyContentCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyFixedColumnsFirstColBodyCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyFixedColumnsFirstColBodyEventLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexSidebarBodyFixedColumnsSecondColBodyContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexSidebarBodyFixedColumnsSecondColBodyContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexSidebarBodyFixedColumnsSecondColBodyContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexAfterEventsFixedColumnsSecondColBodyContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexSidebarBodyFixedColumnsSecondColBodyContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexAfterEventsFixedColumnsSecondColBodyContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceFixedColumnsSecondColBodyContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexSidebarBodyFixedColumnsSecondColBodyContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexSidebarBodyFixedColumnsSecondColBodyContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexSidebarBodyFixedColumnsSecondColBodyContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexSidebarBodyFixedColumnsSecondColBodyContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyFixedColumnsSecondColBodyContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceFixedColumnsSecondColBodyContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyFixedColumnsSecondColBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexSidebarBodyFixedColumnsSecondColBodyEventLinkContentFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceFixedColumnsSecondColBodyEventLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexSidebarBodyFixedColumnsSecondColBodyEventLinkContentFlagFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyFixedColumnsSecondColBodyEventLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceFixedColumnsSecondColBodyEventLinkContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventThumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnailAlt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedColumnsSecondColBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyFixedColumnsSecondColBodyContentCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyFixedColumnsSecondColBodyCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyFixedColumnsSecondColBodyEventLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedColumnsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headerSection"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedColumnsFirstColBodyFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedColumnsSecondColBodyFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyFixedTabsLayoutFirstHeadingVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyFixedTabsLayoutFirstHeadingBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceFixedTabsLayoutFirstHeadingExpertBlockExpertListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"person"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"peopleURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"skills"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceFixedTabsLayoutFirstHeadingExpertBlockLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyFixedTabsLayoutFirstHeadingExpertBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"expertList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceFixedTabsLayoutFirstHeadingExpertBlockExpertListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceFixedTabsLayoutFirstHeadingExpertBlockLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexSidebarBodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceFixedTabsLayoutFirstHeadingYoutubePlaylistBlockYoutubePlaylistFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videosCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexSidebarBodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubePlaylist"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceFixedTabsLayoutFirstHeadingYoutubePlaylistBlockYoutubePlaylistFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyFixedTabsLayoutFirstHeadingCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedTabsLayoutFirstHeadingFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyFixedTabsLayoutFirstHeadingVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyFixedTabsLayoutFirstHeadingBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ExpertBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyFixedTabsLayoutFirstHeadingExpertBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"YoutubePlaylistBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyFixedTabsLayoutFirstHeadingCustomImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyFixedTabsLayoutFirstBodyVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyFixedTabsLayoutFirstBodyBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceFixedTabsLayoutFirstBodyExpertBlockExpertListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"person"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"peopleURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"skills"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceFixedTabsLayoutFirstBodyExpertBlockLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyFixedTabsLayoutFirstBodyExpertBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"expertList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceFixedTabsLayoutFirstBodyExpertBlockExpertListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceFixedTabsLayoutFirstBodyExpertBlockLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexSidebarBodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceFixedTabsLayoutFirstBodyYoutubePlaylistBlockYoutubePlaylistFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videosCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexSidebarBodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubePlaylist"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceFixedTabsLayoutFirstBodyYoutubePlaylistBlockYoutubePlaylistFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyFixedTabsLayoutFirstBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedTabsLayoutFirstBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyFixedTabsLayoutFirstBodyVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyFixedTabsLayoutFirstBodyBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ExpertBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyFixedTabsLayoutFirstBodyExpertBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"YoutubePlaylistBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyFixedTabsLayoutFirstBodyCustomImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyFixedTabsLayoutSecondHeadingVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyFixedTabsLayoutSecondHeadingBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceFixedTabsLayoutSecondHeadingExpertBlockExpertListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"person"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"peopleURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"skills"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceFixedTabsLayoutSecondHeadingExpertBlockLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyFixedTabsLayoutSecondHeadingExpertBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"expertList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceFixedTabsLayoutSecondHeadingExpertBlockExpertListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceFixedTabsLayoutSecondHeadingExpertBlockLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexSidebarBodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceFixedTabsLayoutSecondHeadingYoutubePlaylistBlockYoutubePlaylistFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videosCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexSidebarBodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubePlaylist"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceFixedTabsLayoutSecondHeadingYoutubePlaylistBlockYoutubePlaylistFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyFixedTabsLayoutSecondHeadingCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedTabsLayoutSecondHeadingFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyFixedTabsLayoutSecondHeadingVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyFixedTabsLayoutSecondHeadingBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ExpertBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyFixedTabsLayoutSecondHeadingExpertBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"YoutubePlaylistBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyFixedTabsLayoutSecondHeadingCustomImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyFixedTabsLayoutSecondBodyVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyFixedTabsLayoutSecondBodyBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceFixedTabsLayoutSecondBodyExpertBlockExpertListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"person"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"peopleURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"skills"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceFixedTabsLayoutSecondBodyExpertBlockLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyFixedTabsLayoutSecondBodyExpertBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"expertList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceFixedTabsLayoutSecondBodyExpertBlockExpertListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceFixedTabsLayoutSecondBodyExpertBlockLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexSidebarBodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceFixedTabsLayoutSecondBodyYoutubePlaylistBlockYoutubePlaylistFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videosCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexSidebarBodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubePlaylist"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceFixedTabsLayoutSecondBodyYoutubePlaylistBlockYoutubePlaylistFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyFixedTabsLayoutSecondBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedTabsLayoutSecondBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyFixedTabsLayoutSecondBodyVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyFixedTabsLayoutSecondBodyBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ExpertBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyFixedTabsLayoutSecondBodyExpertBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"YoutubePlaylistBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyFixedTabsLayoutSecondBodyCustomImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedTabsLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstHeading"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedTabsLayoutFirstHeadingFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedTabsLayoutFirstBodyFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondHeading"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedTabsLayoutSecondHeadingFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedTabsLayoutSecondBodyFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyGoogleMapsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"embedUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"embedWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"embedHeight"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexSidebarBodyGridLayoutGridsBlocksLinkContentUtilityButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnIcon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentered"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeTopMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openInNewTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceGridLayoutGridsBlocksLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"UtilityButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexSidebarBodyGridLayoutGridsBlocksLinkContentUtilityButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyGridLayoutGridsBlocksFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"image"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relatedImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"linkContent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceGridLayoutGridsBlocksLinkContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyGridLayoutGridsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"gridTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showGridTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centeredGridTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showHeaderDivider"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"offsetGridStart"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"blocks"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyGridLayoutGridsBlocksFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyGridLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"grids"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyGridLayoutGridsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyHeroActionsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"type"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyHeroImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyHeroFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"tagline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"actions"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyHeroActionsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"image"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyHeroImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyHorizontalCardCardListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyHorizontalCardButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyHorizontalCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cardList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyHorizontalCardCardListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"button"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyHorizontalCardButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyInternalCarouselItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyInternalCarouselTechnologiesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyInternalCarouselFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyInternalCarouselItemsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paragraph"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"website"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"technologies"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyInternalCarouselTechnologiesFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caseStudyUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyJoinAsPresenterFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"img"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyJoinGithubFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyJotFormEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"jotFormId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"containerClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyLatestTechBadgesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"userGroupGlobal"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"UserGroupGlobalFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyLatestTechFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"badges"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyLatestTechBadgesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyLocationBlockLocationListLocationFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"locations"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"LocationsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyLocationBlockLocationListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"location"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyLocationBlockLocationListLocationFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyLocationBlockChapelWebsiteFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"URL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyLocationBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"locationList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyLocationBlockLocationListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"chapelWebsite"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyLocationBlockChapelWebsiteFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyNewslettersTableFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headerText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyOrganizerFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImg"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"position"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyPaymentBlockPaymentsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paymentDetails"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PaymentDetailsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyPaymentBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"payments"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyPaymentBlockPaymentsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"footer"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"creditImgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altTxt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyPresenterBlockPresenterListPresenterFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"presenter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PresenterFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyPresenterBlockPresenterListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"presenter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyPresenterBlockPresenterListPresenterFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyPresenterBlockOtherEventFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyPresenterBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"presenterList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyPresenterBlockPresenterListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"otherEvent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyPresenterBlockOtherEventFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyRecurringEventFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"applyLinkRedirect"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"day"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodySectionHeaderFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headerText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyServiceCardsBigCardsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"description"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyServiceCardsSmallCardsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"isExternal"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyServiceCardsLinksFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyServiceCardsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bigCardsLabel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bigCards"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyServiceCardsBigCardsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"smallCardsLabel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"smallCards"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyServiceCardsSmallCardsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"links"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyServiceCardsLinksFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyTableLayoutRowsCellsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cellValue"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyTableLayoutRowsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cells"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyTableLayoutRowsCellsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"isHeader"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyTableLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"tableStyle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColBold"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headers"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"rows"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyTableLayoutRowsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyTestimonialsListExcludedCategoriesCategoryNameFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"testimonialCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"TestimonialCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyTestimonialsListExcludedCategoriesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"categoryName"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyTestimonialsListExcludedCategoriesCategoryNameFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyTestimonialsListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"excludedCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyTestimonialsListExcludedCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceTrainingInformationTrainingInformationItemsBodyVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceTrainingInformationTrainingInformationItemsBodyRecurringEventFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"applyLinkRedirect"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"day"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyTrainingInformationTrainingInformationItemsBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceTrainingInformationTrainingInformationItemsBodyVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"RecurringEvent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceTrainingInformationTrainingInformationItemsBodyRecurringEventFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyTrainingInformationTrainingInformationItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"body"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyTrainingInformationTrainingInformationItemsBodyFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyTrainingInformationFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"trainingInformationItems"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyTrainingInformationTrainingInformationItemsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyTrainingLearningOutcomeListItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyTrainingLearningOutcomeFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"listItems"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyTrainingLearningOutcomeListItemsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyTweetEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyUpcomingEventsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"numberOfEvents"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyUtilityButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnIcon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentered"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeTopMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openInNewTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyVerticalImageLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imageSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imageLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"message"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyInlineJotFormFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"jotFormId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"additionalClasses"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentCallToActionBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"AboutUs"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyAboutUsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Agenda"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyAgendaFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"AgreementForm"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyAgreementFormFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"InterestForm"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyInterestFormFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BuiltOnAzure"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyBuiltOnAzureFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Carousel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyCarouselFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Citation"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyCitationFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ClientList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyClientListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ClientLogos"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyClientLogosFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyColorBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorPalette"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyColorPaletteFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyContentCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomDownloadButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyCustomDownloadButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"DomainFromQuery"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyDomainFromQueryFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"DownloadBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyDownloadBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"DynamicColumns"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyDynamicColumnsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventBooking"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyEventBookingFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyEventLinkFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyFlagFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"FixedColumns"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedColumnsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"FixedTabsLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyFixedTabsLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"GoogleMaps"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyGoogleMapsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"GridLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyGridLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Hero"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyHeroFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"HorizontalCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyHorizontalCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"InternalCarousel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyInternalCarouselFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"joinAsPresenter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyJoinAsPresenterFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"joinGithub"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyJoinGithubFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"JotFormEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyJotFormEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"LatestTech"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyLatestTechFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"LocationBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyLocationBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"NewslettersTable"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyNewslettersTableFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"organizer"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyOrganizerFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paymentBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyPaymentBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"PresenterBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyPresenterBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"RecurringEvent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyRecurringEventFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"SectionHeader"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodySectionHeaderFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ServiceCards"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyServiceCardsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TableLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyTableLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TestimonialsList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyTestimonialsListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TrainingInformation"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyTrainingInformationFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TrainingLearningOutcome"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyTrainingLearningOutcomeFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TweetEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyTweetEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"UpcomingEvents"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyUpcomingEventsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"UtilityButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyUtilityButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalImageLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyVerticalImageLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"InlineJotForm"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyInlineJotFormFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EmploymentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"tip"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"seo"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentSeoFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"booking"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBookingFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"_body"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment_bodyFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"benefits"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"benefitsBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentBenefitsBodyFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentAfterBodyFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"opportunitiesBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesBodyFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"opportunities"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentOpportunitiesFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"callToActionBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentCallToActionBodyFilter"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"EmploymentConnectionEdges"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"cursor"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"node"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Employment"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[{"kind":"NamedType","name":{"kind":"Name","value":"Connection"}}],"directives":[],"name":{"kind":"Name","value":"EmploymentConnection"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"pageInfo"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageInfo"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"totalCount"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"edges"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"EmploymentConnectionEdges"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[{"kind":"NamedType","name":{"kind":"Name","value":"Node"}},{"kind":"NamedType","name":{"kind":"Name","value":"Document"}}],"directives":[],"name":{"kind":"Name","value":"Opportunities"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"tip"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"employmentType"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"locations"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"hideApply"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_body"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"id"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ID"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_sys"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"SystemInfo"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"_values"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyAboutUsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showMap"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexSidebarBodyAgendaAgendaItemListBodyVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceAgendaAgendaItemListBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexSidebarBodyAgendaAgendaItemListBodyVerticalListItemFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyAgendaAgendaItemListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"placeholder"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"body"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceAgendaAgendaItemListBodyFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyAgendaFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"textColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"agendaItemList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyAgendaAgendaItemListFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyAgreementFormFieldsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"id"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"placeholder"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"resizeable"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyAgreementFormFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fields"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyAgreementFormFieldsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyInterestFormFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyBuiltOnAzureFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyCarouselItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openIn"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyCarouselFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyCarouselItemsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"delay"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showOnMobileDevices"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyCitationFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"author"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"article"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceClientListCategoriesCategoryFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"clientCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ClientCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyClientListCategoriesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"category"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceClientListCategoriesCategoryFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexSidebarBodyClientListClientsContentUtilityButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnIcon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentered"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeTopMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openInNewTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexSidebarBodyClientListClientsContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexSidebarBodyClientListClientsContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Events_bodyClientListClientsContentContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Events_bodyClientListClientsContentContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Events_bodyClientListClientsContentContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsFooterClientListClientsContentContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Events_bodyClientListClientsContentContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsFooterClientListClientsContentContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexAfterEventsClientListClientsContentContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Events_bodyClientListClientsContentContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Events_bodyClientListClientsContentContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Events_bodyClientListClientsContentContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Events_bodyClientListClientsContentContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexSidebarBodyClientListClientsContentContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexAfterEventsClientListClientsContentContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceClientListClientsContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"UtilityButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexSidebarBodyClientListClientsContentUtilityButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexSidebarBodyClientListClientsContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexSidebarBodyClientListClientsContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexSidebarBodyClientListClientsContentContentCardFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexSidebarBodyClientListClientsCategoriesCategoryFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"clientCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ClientCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceClientListClientsCategoriesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"category"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexSidebarBodyClientListClientsCategoriesCategoryFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyClientListClientsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"logo"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"logoUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceClientListClientsContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caseStudyUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"categories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceClientListClientsCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyClientListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"categories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyClientListCategoriesFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"clients"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyClientListClientsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyClientLogosFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyColorPaletteFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceContentContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceContentContentClientLogosFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceContentContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexSidebarBodyContentContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceContentContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexSidebarBodyContentContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyContentContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceContentContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ClientLogos"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceContentContentClientLogosFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceContentContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceContentContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyContentContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paddingClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"align"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexSidebarBodyContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexSidebarBodyContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyCustomDownloadButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyDomainFromQueryFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showDomain"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyDownloadBlockDownloadsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"img"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgBackground"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstLinkText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondLinkText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyDownloadBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"downloads"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyDownloadBlockDownloadsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bottomBorder"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyDynamicColumnsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceEventBookingEventListLocationFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"locations"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"LocationsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyEventBookingEventListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"city"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"date"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DatetimeFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bookingURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"location"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceEventBookingEventListLocationFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyEventBookingFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventDurationInDays"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"price"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"discountPrice"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"gstText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"discountNote"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyEventBookingEventListFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceEventLinkContentFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyEventLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceEventLinkContentFlagFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyEventLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyEventLinkContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventThumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnailAlt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexAfterEventsFixedColumnsFirstColBodyContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexAfterEventsFixedColumnsFirstColBodyContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexAfterEventsFixedColumnsFirstColBodyContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Events_bodyFixedColumnsFirstColBodyContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexAfterEventsFixedColumnsFirstColBodyContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Events_bodyFixedColumnsFirstColBodyContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexSidebarBodyFixedColumnsFirstColBodyContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexAfterEventsFixedColumnsFirstColBodyContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexAfterEventsFixedColumnsFirstColBodyContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexAfterEventsFixedColumnsFirstColBodyContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexAfterEventsFixedColumnsFirstColBodyContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceFixedColumnsFirstColBodyContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexSidebarBodyFixedColumnsFirstColBodyContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceFixedColumnsFirstColBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexAfterEventsFixedColumnsFirstColBodyEventLinkContentFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexSidebarBodyFixedColumnsFirstColBodyEventLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexAfterEventsFixedColumnsFirstColBodyEventLinkContentFlagFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceFixedColumnsFirstColBodyEventLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexSidebarBodyFixedColumnsFirstColBodyEventLinkContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventThumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnailAlt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyFixedColumnsFirstColBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceFixedColumnsFirstColBodyContentCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceFixedColumnsFirstColBodyCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceFixedColumnsFirstColBodyEventLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexAfterEventsFixedColumnsSecondColBodyContentCardContentCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexAfterEventsFixedColumnsSecondColBodyContentCardContentVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexAfterEventsFixedColumnsSecondColBodyContentCardContentVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Events_bodyFixedColumnsSecondColBodyContentCardContentColorBlockColorRowFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"fText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexAfterEventsFixedColumnsSecondColBodyContentCardContentColorBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"colorRow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Events_bodyFixedColumnsSecondColBodyContentCardContentColorBlockColorRowFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexSidebarBodyFixedColumnsSecondColBodyContentCardContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexAfterEventsFixedColumnsSecondColBodyContentCardContentCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexAfterEventsFixedColumnsSecondColBodyContentCardContentVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexAfterEventsFixedColumnsSecondColBodyContentCardContentVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexAfterEventsFixedColumnsSecondColBodyContentCardContentColorBlockFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceFixedColumnsSecondColBodyContentCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"prose"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centerAlignedText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexSidebarBodyFixedColumnsSecondColBodyContentCardContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceFixedColumnsSecondColBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexAfterEventsFixedColumnsSecondColBodyEventLinkContentFlagFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"country"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexSidebarBodyFixedColumnsSecondColBodyEventLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexAfterEventsFixedColumnsSecondColBodyEventLinkContentFlagFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceFixedColumnsSecondColBodyEventLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexSidebarBodyFixedColumnsSecondColBodyEventLinkContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventThumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnailAlt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyFixedColumnsSecondColBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceFixedColumnsSecondColBodyContentCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceFixedColumnsSecondColBodyCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceFixedColumnsSecondColBodyEventLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyFixedColumnsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headerSection"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyFixedColumnsFirstColBodyFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondColBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyFixedColumnsSecondColBodyFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceFixedTabsLayoutFirstHeadingVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceFixedTabsLayoutFirstHeadingBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexSidebarBodyFixedTabsLayoutFirstHeadingExpertBlockExpertListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"person"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"peopleURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"skills"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexSidebarBodyFixedTabsLayoutFirstHeadingExpertBlockLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceFixedTabsLayoutFirstHeadingExpertBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"expertList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexSidebarBodyFixedTabsLayoutFirstHeadingExpertBlockExpertListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexSidebarBodyFixedTabsLayoutFirstHeadingExpertBlockLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexAfterEventsFixedTabsLayoutFirstHeadingYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexSidebarBodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockYoutubePlaylistFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videosCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexAfterEventsFixedTabsLayoutFirstHeadingYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceFixedTabsLayoutFirstHeadingYoutubePlaylistBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubePlaylist"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexSidebarBodyFixedTabsLayoutFirstHeadingYoutubePlaylistBlockYoutubePlaylistFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceFixedTabsLayoutFirstHeadingCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyFixedTabsLayoutFirstHeadingFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceFixedTabsLayoutFirstHeadingVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceFixedTabsLayoutFirstHeadingBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ExpertBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceFixedTabsLayoutFirstHeadingExpertBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"YoutubePlaylistBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceFixedTabsLayoutFirstHeadingYoutubePlaylistBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceFixedTabsLayoutFirstHeadingCustomImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceFixedTabsLayoutFirstBodyVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceFixedTabsLayoutFirstBodyBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexSidebarBodyFixedTabsLayoutFirstBodyExpertBlockExpertListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"person"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"peopleURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"skills"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexSidebarBodyFixedTabsLayoutFirstBodyExpertBlockLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceFixedTabsLayoutFirstBodyExpertBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"expertList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexSidebarBodyFixedTabsLayoutFirstBodyExpertBlockExpertListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexSidebarBodyFixedTabsLayoutFirstBodyExpertBlockLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexAfterEventsFixedTabsLayoutFirstBodyYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexSidebarBodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockYoutubePlaylistFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videosCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexAfterEventsFixedTabsLayoutFirstBodyYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceFixedTabsLayoutFirstBodyYoutubePlaylistBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubePlaylist"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexSidebarBodyFixedTabsLayoutFirstBodyYoutubePlaylistBlockYoutubePlaylistFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceFixedTabsLayoutFirstBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyFixedTabsLayoutFirstBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceFixedTabsLayoutFirstBodyVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceFixedTabsLayoutFirstBodyBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ExpertBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceFixedTabsLayoutFirstBodyExpertBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"YoutubePlaylistBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceFixedTabsLayoutFirstBodyYoutubePlaylistBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceFixedTabsLayoutFirstBodyCustomImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceFixedTabsLayoutSecondHeadingVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceFixedTabsLayoutSecondHeadingBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexSidebarBodyFixedTabsLayoutSecondHeadingExpertBlockExpertListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"person"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"peopleURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"skills"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexSidebarBodyFixedTabsLayoutSecondHeadingExpertBlockLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceFixedTabsLayoutSecondHeadingExpertBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"expertList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexSidebarBodyFixedTabsLayoutSecondHeadingExpertBlockExpertListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexSidebarBodyFixedTabsLayoutSecondHeadingExpertBlockLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexAfterEventsFixedTabsLayoutSecondHeadingYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexSidebarBodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockYoutubePlaylistFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videosCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexAfterEventsFixedTabsLayoutSecondHeadingYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceFixedTabsLayoutSecondHeadingYoutubePlaylistBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubePlaylist"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexSidebarBodyFixedTabsLayoutSecondHeadingYoutubePlaylistBlockYoutubePlaylistFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceFixedTabsLayoutSecondHeadingCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyFixedTabsLayoutSecondHeadingFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceFixedTabsLayoutSecondHeadingVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceFixedTabsLayoutSecondHeadingBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ExpertBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceFixedTabsLayoutSecondHeadingExpertBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"YoutubePlaylistBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceFixedTabsLayoutSecondHeadingYoutubePlaylistBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceFixedTabsLayoutSecondHeadingCustomImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceFixedTabsLayoutSecondBodyVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceFixedTabsLayoutSecondBodyBookingButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexSidebarBodyFixedTabsLayoutSecondBodyExpertBlockExpertListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"person"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"peopleURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"skills"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexSidebarBodyFixedTabsLayoutSecondBodyExpertBlockLinkFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceFixedTabsLayoutSecondBodyExpertBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"expertList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexSidebarBodyFixedTabsLayoutSecondBodyExpertBlockExpertListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexSidebarBodyFixedTabsLayoutSecondBodyExpertBlockLinkFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexAfterEventsFixedTabsLayoutSecondBodyYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexSidebarBodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockYoutubePlaylistFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videosCount"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"playlistButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexAfterEventsFixedTabsLayoutSecondBodyYoutubePlaylistBlockYoutubePlaylistPlaylistButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceFixedTabsLayoutSecondBodyYoutubePlaylistBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"youtubePlaylist"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexSidebarBodyFixedTabsLayoutSecondBodyYoutubePlaylistBlockYoutubePlaylistFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceFixedTabsLayoutSecondBodyCustomImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alignment"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"customClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"captionColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyFixedTabsLayoutSecondBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceFixedTabsLayoutSecondBodyVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceFixedTabsLayoutSecondBodyBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ExpertBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceFixedTabsLayoutSecondBodyExpertBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"YoutubePlaylistBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceFixedTabsLayoutSecondBodyYoutubePlaylistBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceFixedTabsLayoutSecondBodyCustomImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyFixedTabsLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstHeading"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyFixedTabsLayoutFirstHeadingFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyFixedTabsLayoutFirstBodyFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondHeading"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyFixedTabsLayoutSecondHeadingFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"secondBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyFixedTabsLayoutSecondBodyFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyGoogleMapsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"embedUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"embedWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"embedHeight"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexAfterEventsGridLayoutGridsBlocksLinkContentUtilityButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnIcon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentered"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeTopMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openInNewTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexSidebarBodyGridLayoutGridsBlocksLinkContentFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"UtilityButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexAfterEventsGridLayoutGridsBlocksLinkContentUtilityButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceGridLayoutGridsBlocksFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"image"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"relatedImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"linkContent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexSidebarBodyGridLayoutGridsBlocksLinkContentFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyGridLayoutGridsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"gridTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showGridTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"centeredGridTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"showHeaderDivider"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"offsetGridStart"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"blocks"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceGridLayoutGridsBlocksFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyGridLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"grids"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyGridLayoutGridsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyHeroActionsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"type"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyHeroImageFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"src"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"alt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyHeroFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"tagline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headline"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"actions"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyHeroActionsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"image"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyHeroImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyHorizontalCardCardListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"thumbnail"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyHorizontalCardButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"text"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyHorizontalCardFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cardList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyHorizontalCardCardListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"button"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyHorizontalCardButtonFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyInternalCarouselItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyInternalCarouselTechnologiesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyInternalCarouselFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"items"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyInternalCarouselItemsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paragraph"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"website"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"technologies"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyInternalCarouselTechnologiesFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caseStudyUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoUrl"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyJoinAsPresenterFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"img"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyJoinGithubFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyJotFormEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"jotFormId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"containerClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonClass"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyLatestTechBadgesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"userGroupGlobal"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"UserGroupGlobalFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyLatestTechFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"badges"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyLatestTechBadgesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceLocationBlockLocationListLocationFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"locations"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"LocationsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyLocationBlockLocationListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"location"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceLocationBlockLocationListLocationFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyLocationBlockChapelWebsiteFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"URL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyLocationBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"locationList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyLocationBlockLocationListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"chapelWebsite"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyLocationBlockChapelWebsiteFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyNewslettersTableFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headerText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyOrganizerFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileImg"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"profileLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"name"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"position"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyPaymentBlockPaymentsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paymentDetails"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PaymentDetailsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyPaymentBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"subTitle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"payments"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyPaymentBlockPaymentsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"footer"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"creditImgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altTxt"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefacePresenterBlockPresenterListPresenterFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"presenter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PresenterFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyPresenterBlockPresenterListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"presenter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefacePresenterBlockPresenterListPresenterFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyPresenterBlockOtherEventFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"eventURL"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyPresenterBlockFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"presenterList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyPresenterBlockPresenterListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"otherEvent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyPresenterBlockOtherEventFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyRecurringEventFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"applyLinkRedirect"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"day"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodySectionHeaderFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headerText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyServiceCardsBigCardsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"description"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyServiceCardsSmallCardsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"color"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imgSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"isExternal"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyServiceCardsLinksFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"label"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyServiceCardsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bigCardsLabel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"bigCards"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyServiceCardsBigCardsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"smallCardsLabel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"smallCards"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyServiceCardsSmallCardsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"links"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyServiceCardsLinksFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"backgroundColor"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceTableLayoutRowsCellsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cellValue"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyTableLayoutRowsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"cells"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceTableLayoutRowsCellsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"isHeader"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyTableLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"tableStyle"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"firstColBold"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"headers"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"rows"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyTableLayoutRowsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceTestimonialsListExcludedCategoriesCategoryNameFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"testimonialCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"TestimonialCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyTestimonialsListExcludedCategoriesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"categoryName"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceTestimonialsListExcludedCategoriesCategoryNameFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyTestimonialsListFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"excludedCategories"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyTestimonialsListExcludedCategoriesFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexSidebarBodyTrainingInformationTrainingInformationItemsBodyVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexSidebarBodyTrainingInformationTrainingInformationItemsBodyRecurringEventFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"applyLinkRedirect"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"day"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"EventsIndexPrefaceTrainingInformationTrainingInformationItemsBodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexSidebarBodyTrainingInformationTrainingInformationItemsBodyVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"RecurringEvent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexSidebarBodyTrainingInformationTrainingInformationItemsBodyRecurringEventFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyTrainingInformationTrainingInformationItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"body"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexPrefaceTrainingInformationTrainingInformationItemsBodyFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyTrainingInformationFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"trainingInformationItems"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyTrainingInformationTrainingInformationItemsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyTrainingLearningOutcomeListItemsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyTrainingLearningOutcomeFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"header"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"listItems"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyTrainingLearningOutcomeListItemsFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyTweetEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyUpcomingEventsFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"numberOfEvents"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyUtilityButtonFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"buttonText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"link"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"size"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"btnIcon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"animated"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentered"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeTopMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"openInNewTab"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyVerticalImageLayoutFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imageSrc"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"altText"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"imageLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"height"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"width"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"message"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"sizes"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyVerticalListItemFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"index"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"icon"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"iconScale"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NumberFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"afterBody"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RichTextFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyVideoEmbedFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"url"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"videoWidth"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"removeMargin"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"uncentre"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"overflow"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"caption"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"duration"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyInlineJotFormFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"jotFormId"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"additionalClasses"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"Opportunities_bodyFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"AboutUs"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyAboutUsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Agenda"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyAgendaFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"AgreementForm"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyAgreementFormFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"InterestForm"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyInterestFormFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BookingButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyBookingButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"BuiltOnAzure"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyBuiltOnAzureFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Carousel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyCarouselFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Citation"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyCitationFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ClientList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyClientListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ClientLogos"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyClientLogosFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyColorBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ColorPalette"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyColorPaletteFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Content"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyContentFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ContentCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyContentCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomDownloadButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyCustomDownloadButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"CustomImage"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyCustomImageFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"DomainFromQuery"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyDomainFromQueryFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"DownloadBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyDownloadBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"DynamicColumns"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyDynamicColumnsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventBooking"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyEventBookingFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"EventLink"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyEventLinkFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Flag"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyFlagFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"FixedColumns"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyFixedColumnsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"FixedTabsLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyFixedTabsLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"GoogleMaps"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyGoogleMapsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"GridLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyGridLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"Hero"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyHeroFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"HorizontalCard"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyHorizontalCardFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"InternalCarousel"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyInternalCarouselFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"joinAsPresenter"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyJoinAsPresenterFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"joinGithub"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyJoinGithubFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"JotFormEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyJotFormEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"LatestTech"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyLatestTechFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"LocationBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyLocationBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"NewslettersTable"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyNewslettersTableFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"organizer"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyOrganizerFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"paymentBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyPaymentBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"PresenterBlock"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyPresenterBlockFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"RecurringEvent"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyRecurringEventFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"SectionHeader"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodySectionHeaderFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"ServiceCards"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyServiceCardsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TableLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyTableLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TestimonialsList"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyTestimonialsListFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TrainingInformation"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyTrainingInformationFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TrainingLearningOutcome"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyTrainingLearningOutcomeFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"TweetEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyTweetEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"UpcomingEvents"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyUpcomingEventsFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"UtilityButton"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyUtilityButtonFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalImageLayout"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyVerticalImageLayoutFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VerticalListItem"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyVerticalListItemFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"VideoEmbed"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyVideoEmbedFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"InlineJotForm"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyInlineJotFormFilter"}}}]},{"kind":"InputObjectTypeDefinition","name":{"kind":"Name","value":"OpportunitiesFilter"},"fields":[{"kind":"InputValueDefinition","name":{"kind":"Name","value":"tip"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"title"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"employmentType"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"locations"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"StringFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"hideApply"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"BooleanFilter"}}},{"kind":"InputValueDefinition","name":{"kind":"Name","value":"_body"},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities_bodyFilter"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"OpportunitiesConnectionEdges"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"cursor"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"node"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Opportunities"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[{"kind":"NamedType","name":{"kind":"Name","value":"Connection"}}],"directives":[],"name":{"kind":"Name","value":"OpportunitiesConnection"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"pageInfo"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PageInfo"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"totalCount"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"edges"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"OpportunitiesConnectionEdges"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"EventsIndexSeoImages"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"url"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"width"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"height"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"alt"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"EventsIndexSeo"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"description"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"canonical"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"showBreadcrumb"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"images"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexSeoImages"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"EventsIndexAfterEventsAboutUs"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"backgroundColor"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"showMap"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"EventsIndexAfterEventsAgendaAgendaItemList"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"placeholder"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"body"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"EventsIndexAfterEventsAgenda"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"header"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"textColor"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"agendaItemList"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexAfterEventsAgendaAgendaItemList"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"EventsIndexAfterEventsAgreementFormFields"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"id"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"placeholder"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"resizeable"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"EventsIndexAfterEventsAgreementForm"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"backgroundColor"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"fields"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexAfterEventsAgreementFormFields"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"EventsIndexAfterEventsInterestForm"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"buttonText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"EventsIndexAfterEventsBookingButton"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"buttonText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"animated"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"buttonSubtitle"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"EventsIndexAfterEventsBuiltOnAzure"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"backgroundColor"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"EventsIndexAfterEventsCarouselItems"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"openIn"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"imgSrc"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"EventsIndexAfterEventsCarousel"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"items"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexAfterEventsCarouselItems"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"backgroundColor"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"delay"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"showOnMobileDevices"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"EventsIndexAfterEventsCitation"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"author"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"article"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"Events_bodyClientListCategoriesCategory"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"ClientCategories"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"EventsIndexAfterEventsClientListCategories"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"category"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Events_bodyClientListCategoriesCategory"}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"EventsFooterClientListClientsCategoriesCategory"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"ClientCategories"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Events_bodyClientListClientsCategories"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"category"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsFooterClientListClientsCategoriesCategory"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"EventsIndexAfterEventsClientListClients"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"name"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"logo"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"logoUrl"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"content"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"caseStudyUrl"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"categories"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Events_bodyClientListClientsCategories"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"EventsIndexAfterEventsClientList"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"categories"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexAfterEventsClientListCategories"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"clients"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexAfterEventsClientListClients"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"EventsIndexAfterEventsClientLogos"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"altText"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"EventsIndexAfterEventsColorBlockColorRow"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"firstColor"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"fText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"secondColor"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"sText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"caption"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"EventsIndexAfterEventsColorBlock"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"subTitle"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"colorRow"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexAfterEventsColorBlockColorRow"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"EventsIndexAfterEventsColorPalette"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"name"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"EventsIndexAfterEventsContent"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"content"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"paddingClass"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"size"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"align"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"backgroundColor"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"EventsIndexAfterEventsContentCard"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"prose"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"centerAlignedText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"content"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"EventsIndexAfterEventsCustomDownloadButton"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"btnText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"btnLink"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"EventsIndexAfterEventsCustomImage"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"src"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"altText"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"alignment"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"height"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"width"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"customClass"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"caption"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"captionColor"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"sizes"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"EventsIndexAfterEventsDomainFromQuery"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"showDomain"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"EventsIndexAfterEventsDownloadBlockDownloads"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"header"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"img"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"imgBackground"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"firstLinkText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"firstLink"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"secondLinkText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"secondLink"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"EventsIndexAfterEventsDownloadBlock"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"downloads"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexAfterEventsDownloadBlockDownloads"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"bottomBorder"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"EventsIndexAfterEventsDynamicColumns"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"colBody"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"colCount"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"Events_bodyEventBookingEventListLocation"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"Locations"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"EventsIndexAfterEventsEventBookingEventList"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"city"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"date"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"bookingURL"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"location"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Events_bodyEventBookingEventListLocation"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"EventsIndexAfterEventsEventBooking"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"eventDurationInDays"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"price"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"discountPrice"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Float"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"gstText"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"discountNote"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"eventList"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexAfterEventsEventBookingEventList"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"EventsIndexAfterEventsEventLink"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"content"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"eventThumbnail"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"thumbnailAlt"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"EventsIndexAfterEventsFlag"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"country"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"EventsIndexAfterEventsFixedColumns"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"headerSection"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"firstColBody"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"secondColBody"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"EventsIndexAfterEventsFixedTabsLayout"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"firstTab"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"firstHeading"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"firstBody"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"secondTab"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"secondHeading"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"secondBody"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"EventsIndexAfterEventsGoogleMaps"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"embedUrl"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"embedWidth"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"embedHeight"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"Events_bodyGridLayoutGridsBlocks"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"showTitle"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"image"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"relatedImage"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"linkContent"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"EventsIndexAfterEventsGridLayoutGrids"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"gridTitle"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"showGridTitle"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"centeredGridTitle"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"showHeaderDivider"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"offsetGridStart"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"blocks"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Events_bodyGridLayoutGridsBlocks"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"EventsIndexAfterEventsGridLayout"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"grids"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexAfterEventsGridLayoutGrids"}}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"EventsIndexAfterEventsHeroActions"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"type"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"icon"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"EventsIndexAfterEventsHeroImage"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"src"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"alt"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"EventsIndexAfterEventsHero"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"tagline"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"headline"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"text"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"actions"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexAfterEventsHeroActions"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"image"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexAfterEventsHeroImage"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"color"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"EventsIndexAfterEventsHorizontalCardCardList"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"content"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"thumbnail"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"EventsIndexAfterEventsHorizontalCardButton"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"text"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"EventsIndexAfterEventsHorizontalCard"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"cardList"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexAfterEventsHorizontalCardCardList"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"button"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexAfterEventsHorizontalCardButton"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"EventsIndexAfterEventsInternalCarouselItems"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"label"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"imgSrc"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"EventsIndexAfterEventsInternalCarouselTechnologies"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"name"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"EventsIndexAfterEventsInternalCarousel"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"items"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexAfterEventsInternalCarouselItems"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"header"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"paragraph"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"website"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"technologies"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexAfterEventsInternalCarouselTechnologies"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"caseStudyUrl"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"videoUrl"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"EventsIndexAfterEventsJoinAsPresenter"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"img"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"EventsIndexAfterEventsJoinGithub"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"link"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"EventsIndexAfterEventsJotFormEmbed"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"jotFormId"},"arguments":[],"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"buttonText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"containerClass"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"buttonClass"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"animated"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"EventsIndexAfterEventsLatestTechBadges"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"UserGroupGlobal"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"EventsIndexAfterEventsLatestTech"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"badges"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexAfterEventsLatestTechBadges"}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"Events_bodyLocationBlockLocationListLocation"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"Locations"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"EventsIndexAfterEventsLocationBlockLocationList"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"location"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"Events_bodyLocationBlockLocationListLocation"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"EventsIndexAfterEventsLocationBlockChapelWebsite"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"URL"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"EventsIndexAfterEventsLocationBlock"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"locationList"},"arguments":[],"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexAfterEventsLocationBlockLocationList"}}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"chapelWebsite"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexAfterEventsLocationBlockChapelWebsite"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"EventsIndexAfterEventsNewslettersTable"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"headerText"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"EventsIndexAfterEventsOrganizer"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"profileImg"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"profileLink"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"name"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"position"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"content"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}}]},{"kind":"UnionTypeDefinition","name":{"kind":"Name","value":"EventsIndexAfterEventsPaymentBlockPayments"},"directives":[],"types":[{"kind":"NamedType","name":{"kind":"Name","value":"PaymentDetails"}}]},{"kind":"ObjectTypeDefinition","interfaces":[],"directives":[],"name":{"kind":"Name","value":"EventsIndexAfterEventsPaymentBlock"},"fields":[{"kind":"FieldDefinition","name":{"kind":"Name","value":"title"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"subTitle"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"payments"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsIndexAfterEventsPaymentBlockPayments"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"footer"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"JSON"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"creditImgSrc"},"arguments":[],"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"FieldDefinition","name":{"kind":"Name","value":"altTxt"},"arguments":[],"type":{"kind":"NamedType","name"